body.tg-about-page {
    --tg-about-blue: #123a8c;
    --tg-about-blue-dark: #0a285f;
    --tg-about-red: #cf2532;
    --tg-about-purple: #7137a8;
    --tg-about-ink: #18324b;
    --tg-about-muted: #52677b;
    --tg-about-line: #dbe8f5;
    --tg-about-pale: #f4f9ff;
    --tg-about-white: #ffffff;
}

.tg-about-page #content .tg-about-section {
    position: relative;
    clear: both;
    margin: 34px 0;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--tg-about-line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(61, 141, 219, 0.11), transparent 260px),
        linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 16px 42px rgba(24, 50, 75, 0.08);
}

.tg-about-page #content .tg-about-section::before {
    position: absolute;
    top: 0;
    left: 30px;
    width: 72px;
    height: 5px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, var(--tg-about-red), var(--tg-about-purple));
    content: "";
}

.tg-about-page #content .tg-about-section > h2,
.tg-about-page #content .tg-about-section > h3 {
    margin: 0 0 12px;
    color: var(--tg-about-blue-dark);
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.25;
}

.tg-about-page #content .tg-about-section > h2 + p,
.tg-about-page #content .tg-about-section > h3 + p {
    max-width: 980px;
    margin-bottom: 24px;
    color: var(--tg-about-muted);
    font-size: 16px;
    line-height: 1.75;
}

.tg-about-page #content .tg-about-section p:last-child {
    margin-bottom: 0;
}

/* Development timeline */
.tg-about-page .tg-about-timeline {
    background:
        radial-gradient(circle at 95% 8%, rgba(207, 37, 50, 0.08), transparent 240px),
        linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
}

.tg-about-page .tg-about-timeline-list {
    position: relative;
    display: grid;
    gap: 0;
    margin-top: 8px;
}

.tg-about-page .tg-about-timeline-list::before {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 61px;
    width: 2px;
    background: linear-gradient(var(--tg-about-red), var(--tg-about-blue), var(--tg-about-purple));
    content: "";
}

.tg-about-page .tg-about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 20px;
    padding: 0 0 22px;
}

.tg-about-page .tg-about-timeline-item:last-child {
    padding-bottom: 0;
}

.tg-about-page .tg-about-timeline-item h4 {
    position: relative;
    z-index: 1;
    align-self: start;
    margin: 0;
    padding: 10px 8px;
    border: 5px solid #f8fbff;
    border-radius: 14px;
    background: var(--tg-about-blue);
    box-shadow: 0 8px 18px rgba(18, 58, 140, 0.2);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.25;
    text-align: center;
}

.tg-about-page .tg-about-timeline-item:nth-child(3n + 2) h4 {
    background: var(--tg-about-red);
}

.tg-about-page .tg-about-timeline-item:nth-child(3n) h4 {
    background: var(--tg-about-purple);
}

.tg-about-page .tg-about-timeline-item > p {
    grid-column: 2;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid #e3edf7;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 7px 18px rgba(24, 50, 75, 0.055);
    color: var(--tg-about-ink);
    line-height: 1.72;
}

.tg-about-page .tg-about-timeline-item > p + p {
    margin-top: 10px;
}

/* Compact milestone overview */
.tg-about-page .tg-about-milestone-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
}

.tg-about-page .tg-about-milestone {
    position: relative;
    min-width: 0;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #e1ebf5;
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(61, 141, 219, 0.09), transparent 145px),
        #ffffff;
    box-shadow: 0 10px 24px rgba(24, 50, 75, 0.07);
}

.tg-about-page .tg-about-milestone::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--tg-about-blue), #3d8ddb);
    content: "";
}

.tg-about-page .tg-about-milestone:nth-child(3n + 2)::before {
    background: linear-gradient(90deg, var(--tg-about-red), #ef6b73);
}

.tg-about-page .tg-about-milestone:nth-child(3n)::before {
    background: linear-gradient(90deg, var(--tg-about-purple), #ac72d7);
}

.tg-about-page .tg-about-milestone h4 {
    position: relative;
    display: inline-flex;
    width: auto;
    max-width: 100%;
    margin: 0 0 14px;
    padding: 8px 15px;
    align-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tg-about-blue), #2e6fc2);
    box-shadow: 0 7px 16px rgba(18, 58, 140, 0.19);
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    white-space: nowrap;
}

.tg-about-page .tg-about-milestone:nth-child(3n + 2) h4 {
    background: linear-gradient(135deg, var(--tg-about-red), #e96169);
    box-shadow: 0 7px 16px rgba(207, 37, 50, 0.18);
}

.tg-about-page .tg-about-milestone:nth-child(3n) h4 {
    background: linear-gradient(135deg, var(--tg-about-purple), #9a5ac9);
    box-shadow: 0 7px 16px rgba(113, 55, 168, 0.18);
}

.tg-about-page .tg-about-milestone p {
    margin: 0;
    color: var(--tg-about-ink);
    font-size: 16px;
    line-height: 1.72;
}

/* Service areas */
.tg-about-page .tg-about-service-panels {
    display: grid;
    gap: 22px;
}

.tg-about-page .tg-about-service-panel {
    min-width: 0;
    padding: 24px;
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 9px 24px rgba(24, 50, 75, 0.06);
}

.tg-about-page .tg-about-service-panel > h3 {
    margin: 0 0 12px;
    padding-left: 16px;
    border-left: 5px solid var(--tg-about-red);
    color: var(--tg-about-blue-dark);
    font-size: 24px;
    line-height: 1.35;
}

.tg-about-page .tg-about-service-panel:nth-child(even) > h3 {
    border-left-color: var(--tg-about-purple);
}

.tg-about-page .tg-about-service-panel > p {
    color: var(--tg-about-muted);
    line-height: 1.72;
}

.tg-about-page .tg-about-service-panel > figure {
    max-width: 100%;
    margin: 20px auto 24px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(24, 50, 75, 0.12);
}

.tg-about-page .tg-about-service-panel > figure img {
    width: 100%;
}

.tg-about-page .tg-about-service-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.tg-about-page .tg-about-service-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid #e0eaf4;
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(18, 58, 140, 0.04), transparent 60%),
        #ffffff;
}

.tg-about-page .tg-about-service-card h4 {
    margin: 0 0 9px;
    color: var(--tg-about-blue);
    font-size: 18px;
    line-height: 1.35;
}

.tg-about-page .tg-about-service-card p {
    margin-bottom: 10px;
    color: var(--tg-about-ink);
    line-height: 1.68;
}

/* Reusable information cards */
.tg-about-page .tg-about-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.tg-about-page .tg-about-info-card {
    position: relative;
    min-width: 0;
    padding: 21px 19px 19px;
    overflow: hidden;
    border: 1px solid #dfeaf4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(24, 50, 75, 0.06);
}

.tg-about-page .tg-about-info-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tg-about-blue), #3d8ddb);
    content: "";
}

.tg-about-page .tg-about-info-card:nth-child(3n + 2)::before {
    background: linear-gradient(90deg, var(--tg-about-red), #f06a70);
}

.tg-about-page .tg-about-info-card:nth-child(3n)::before {
    background: linear-gradient(90deg, var(--tg-about-purple), #a86bd8);
}

.tg-about-page .tg-about-info-card h3 {
    margin: 0 0 10px;
    color: var(--tg-about-blue-dark);
    font-size: 19px;
    line-height: 1.38;
}

.tg-about-page .tg-about-info-card p {
    margin: 0;
    color: var(--tg-about-muted);
    line-height: 1.67;
}

.tg-about-page .tg-about-expertise-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tg-about-page .tg-about-legal-grid,
.tg-about-page .tg-about-ecosystem-grid,
.tg-about-page .tg-about-feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tg-about-page .tg-about-stats {
    background:
        radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.13), transparent 260px),
        linear-gradient(135deg, #0d347b 0%, #163f91 58%, #6535a0 100%);
}

.tg-about-page #content .tg-about-stats::before {
    background: linear-gradient(90deg, #ffffff, #ffb3b8);
}

.tg-about-page #content .tg-about-stats > h2,
.tg-about-page #content .tg-about-stats > h2 + p {
    color: #ffffff;
}

.tg-about-page #content .tg-about-stats > h2 + p {
    opacity: 0.88;
}

.tg-about-page .tg-about-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tg-about-page .tg-about-stat-card {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.96);
}

.tg-about-page .tg-about-stat-card h3 {
    min-height: 52px;
    padding-bottom: 11px;
    border-bottom: 1px solid #e1e9f2;
    color: var(--tg-about-red);
}

/* Two working processes */
.tg-about-page .tg-about-process-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tg-about-page .tg-about-process-lane {
    min-width: 0;
    padding: 22px;
    border: 1px solid #dce7f2;
    border-radius: 18px;
    background: #ffffff;
}

.tg-about-page .tg-about-process-lane > h3 {
    margin: 0 0 18px;
    padding: 13px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--tg-about-blue), #2c68bb);
    color: #ffffff;
    font-size: 21px;
    line-height: 1.35;
    text-align: center;
}

.tg-about-page .tg-about-process-lane:nth-child(2) > h3 {
    background: linear-gradient(135deg, var(--tg-about-red), #e85962);
}

.tg-about-page .tg-about-process-steps {
    position: relative;
    display: grid;
    gap: 12px;
}

.tg-about-page .tg-about-process-steps::before {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 13px;
    width: 2px;
    background: #d9e6f3;
    content: "";
}

.tg-about-page .tg-about-process-step {
    position: relative;
    padding: 0 0 0 38px;
}

.tg-about-page .tg-about-process-step::before {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 7px;
    width: 14px;
    height: 14px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: var(--tg-about-blue);
    box-shadow: 0 0 0 2px var(--tg-about-blue);
    content: "";
}

.tg-about-page .tg-about-process-lane:nth-child(2) .tg-about-process-step::before {
    background: var(--tg-about-red);
    box-shadow: 0 0 0 2px var(--tg-about-red);
}

.tg-about-page .tg-about-process-step h4 {
    margin: 0 0 5px;
    color: var(--tg-about-blue-dark);
    font-size: 17px;
    line-height: 1.4;
}

.tg-about-page .tg-about-process-step p {
    margin: 0;
    color: var(--tg-about-muted);
    line-height: 1.64;
}

/* FAQ */
.tg-about-page .tg-about-faq-list {
    display: grid;
    gap: 11px;
}

.tg-about-page .tg-about-faq-item {
    overflow: hidden;
    border: 1px solid #dce7f2;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(24, 50, 75, 0.05);
}

.tg-about-page .tg-about-faq-item > h3 {
    position: relative;
    margin: 0;
    padding: 17px 58px 17px 18px;
    color: var(--tg-about-blue-dark);
    font-size: 18px;
    line-height: 1.45;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.tg-about-page .tg-about-faq-item > h3::after {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #edf4fc;
    color: var(--tg-about-blue);
    content: "+";
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    text-align: center;
    transform: translateY(-50%);
}

.tg-about-page .tg-about-faq-item > h3[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--tg-about-blue), #2d68b8);
    color: #ffffff;
}

.tg-about-page .tg-about-faq-item > h3[aria-expanded="true"]::after {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    content: "−";
}

.tg-about-page .tg-about-faq-item > h3:focus-visible {
    outline: 3px solid rgba(61, 141, 219, 0.4);
    outline-offset: -3px;
}

.tg-about-page .tg-about-faq-answer {
    padding: 18px;
    color: var(--tg-about-muted);
}

.tg-about-page .tg-about-faq-answer[hidden] {
    display: none !important;
}

.tg-about-page .tg-about-faq-answer p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.tg-about-page .tg-about-faq-answer p:first-child {
    margin-bottom: 4px;
    color: var(--tg-about-red);
    font-weight: 700;
}

/* Contact information cards */
.tg-about-page #content .tg-about-contact-heading {
    margin-bottom: 18px;
}

.tg-about-page #content .tg-about-contact-intro {
    position: relative;
    max-width: 1100px;
    margin: 0 0 22px;
    padding: 15px 18px 15px 21px;
    border: 1px solid #dce9f6;
    border-left: 4px solid var(--tg-about-blue);
    border-radius: 0 14px 14px 0;
    background: linear-gradient(90deg, #f4f9ff, rgba(255, 255, 255, 0.72));
    color: var(--tg-about-muted);
    font-size: 16px;
    line-height: 1.75;
}

.tg-about-page .tg-about-contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 32px;
    padding: 24px;
    border: 1px solid #d9e7f5;
    border-radius: 22px;
    background:
        radial-gradient(circle at 0 0, rgba(61, 141, 219, 0.12), transparent 260px),
        radial-gradient(circle at 100% 100%, rgba(113, 55, 168, 0.09), transparent 260px),
        linear-gradient(145deg, #f8fbff, #f1f7fd);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    list-style: none;
}

.tg-about-page .tg-about-contact-list .tg-about-contact-item {
    --tg-contact-accent: linear-gradient(135deg, #123a8c, #3d8ddb);
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 104px;
    margin: 0;
    padding: 19px;
    overflow: hidden;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    border: 1px solid #dfe9f3;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 9px 22px rgba(24, 50, 75, 0.07);
    color: var(--tg-about-ink);
    transition:
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.tg-about-page .tg-about-contact-list .tg-about-contact-item::after {
    position: absolute;
    right: -34px;
    bottom: -46px;
    width: 108px;
    height: 108px;
    border: 18px solid rgba(61, 141, 219, 0.045);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.tg-about-page .tg-about-contact-list .tg-contact-company,
.tg-about-page .tg-about-contact-list .tg-contact-network {
    grid-column: 1 / -1;
}

.tg-about-page .tg-about-contact-list .tg-contact-company {
    min-height: auto;
    border-color: transparent;
    background:
        radial-gradient(circle at 94% 12%, rgba(255, 255, 255, 0.15), transparent 190px),
        linear-gradient(125deg, #0a2b69 0%, #164b9b 65%, #7137a8 100%);
    box-shadow: 0 14px 30px rgba(10, 43, 105, 0.19);
    color: #ffffff;
}

.tg-about-page .tg-about-contact-list .tg-contact-company::after {
    border-color: rgba(255, 255, 255, 0.08);
}

.tg-about-page .tg-about-contact-list .tg-contact-network {
    min-height: auto;
    border-color: #cfe1f2;
    background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.tg-about-page .tg-about-contact-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--tg-contact-accent);
    box-shadow: 0 8px 18px rgba(18, 58, 140, 0.2);
    color: #ffffff;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.tg-about-page .tg-about-contact-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tg-about-page .tg-contact-facebook .tg-about-contact-icon svg,
.tg-about-page .tg-contact-tiktok .tg-about-contact-icon svg {
    fill: currentColor;
    stroke: none;
}

.tg-about-page .tg-contact-youtube .tg-about-contact-icon svg path {
    fill: currentColor;
    stroke: none;
}

.tg-about-page .tg-about-contact-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding-top: 1px;
    color: inherit;
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.tg-about-page .tg-about-contact-copy span,
.tg-about-page .tg-about-contact-copy strong {
    color: inherit;
}

.tg-about-page .tg-about-contact-copy a {
    color: #164e9c;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(22, 78, 156, 0.28);
    text-underline-offset: 3px;
}

.tg-about-page .tg-about-contact-copy a:hover {
    color: var(--tg-about-red);
    text-decoration-color: currentColor;
}

.tg-about-page .tg-contact-company .tg-about-contact-icon {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.tg-about-page .tg-contact-brand {
    --tg-contact-accent: linear-gradient(135deg, #7137a8, #a461d5);
}

.tg-about-page .tg-contact-founded {
    --tg-contact-accent: linear-gradient(135deg, #cf2532, #ef6670);
}

.tg-about-page .tg-contact-location,
.tg-about-page .tg-contact-map {
    --tg-contact-accent: linear-gradient(135deg, #d13c45, #f07a65);
}

.tg-about-page .tg-contact-network {
    --tg-contact-accent: linear-gradient(135deg, #126c9b, #36a4ca);
}

.tg-about-page .tg-contact-phone,
.tg-about-page .tg-contact-hotline {
    --tg-contact-accent: linear-gradient(135deg, #087b6c, #26ae92);
}

.tg-about-page .tg-contact-facebook {
    --tg-contact-accent: linear-gradient(135deg, #1455a2, #1877f2);
}

.tg-about-page .tg-contact-tiktok {
    --tg-contact-accent: linear-gradient(135deg, #181b2e, #474d72);
}

.tg-about-page .tg-contact-youtube {
    --tg-contact-accent: linear-gradient(135deg, #cf1721, #ff4952);
}

@media (hover: hover) and (pointer: fine) {
    .tg-about-page .tg-about-contact-list .tg-about-contact-item:hover {
        z-index: 2;
        border-color: rgba(61, 141, 219, 0.42);
        box-shadow: 0 17px 34px rgba(24, 50, 75, 0.13);
        transform: translateY(-5px);
    }

    .tg-about-page .tg-about-contact-list .tg-contact-company:hover {
        border-color: transparent;
        box-shadow: 0 20px 38px rgba(10, 43, 105, 0.27);
    }

    .tg-about-page .tg-about-contact-item:hover .tg-about-contact-icon {
        box-shadow: 0 12px 22px rgba(18, 58, 140, 0.25);
        transform: rotate(-5deg) scale(1.08);
    }

    .tg-about-page .tg-contact-company:hover .tg-about-contact-icon {
        box-shadow: none;
    }
}

/* Stronger visual accents and subtle motion */
.tg-about-page #content .tg-about-section {
    isolation: isolate;
}

.tg-about-page #content .tg-about-section > * {
    position: relative;
    z-index: 1;
}

.tg-about-page #content .tg-about-section::after {
    position: absolute;
    z-index: 0;
    top: -82px;
    right: -72px;
    width: 190px;
    height: 190px;
    border: 28px solid rgba(18, 58, 140, 0.035);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.tg-about-page #content .tg-about-section > h2,
.tg-about-page #content .tg-about-section > h3,
.tg-about-page #content .tg-about-standalone-heading {
    position: relative;
    display: table;
    padding-bottom: 12px;
    background: linear-gradient(95deg, var(--tg-about-blue-dark), var(--tg-about-blue) 62%, var(--tg-about-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tg-about-page #content .tg-about-section > h2::after,
.tg-about-page #content .tg-about-section > h3::after,
.tg-about-page #content .tg-about-standalone-heading::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 88px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--tg-about-red) 0 36%, var(--tg-about-purple) 36% 63%, #3d8ddb 63%);
    box-shadow: 0 3px 10px rgba(113, 55, 168, 0.18);
    content: "";
}

.tg-about-page #content h2.tg-about-standalone-heading {
    margin-top: 34px;
    margin-bottom: 20px;
    color: var(--tg-about-blue-dark);
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.28;
}

.tg-about-page #content h3.tg-about-standalone-heading {
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--tg-about-blue-dark);
    font-size: clamp(21px, 2.1vw, 27px);
    line-height: 1.35;
}

.tg-about-page #content .tg-about-stats > h2 {
    background: none;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.tg-about-page #content .tg-about-stats {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at 8% 0, rgba(255, 255, 255, 0.16), transparent 280px),
        radial-gradient(circle at 96% 100%, rgba(207, 37, 50, 0.2), transparent 300px),
        linear-gradient(135deg, #0b2e70 0%, #16489b 58%, #6635a0 100%) !important;
    box-shadow: 0 20px 48px rgba(10, 40, 95, 0.22);
}

.tg-about-page #content .tg-about-stats > h2::after {
    background: linear-gradient(90deg, #ffffff, #ffb3b8, #cdb5ff);
}

.tg-about-page .tg-about-expertise,
.tg-about-page .tg-about-feedback {
    background:
        radial-gradient(circle at 96% 6%, rgba(113, 55, 168, 0.13), transparent 270px),
        linear-gradient(145deg, #ffffff 0%, #fbf7ff 100%) !important;
}

.tg-about-page .tg-about-legal,
.tg-about-page .tg-about-ecosystem {
    background:
        radial-gradient(circle at 96% 6%, rgba(61, 141, 219, 0.13), transparent 270px),
        linear-gradient(145deg, #ffffff 0%, #f3f9ff 100%) !important;
}

.tg-about-page .tg-about-faq {
    background:
        radial-gradient(circle at 96% 6%, rgba(207, 37, 50, 0.09), transparent 250px),
        linear-gradient(145deg, #ffffff 0%, #fff8f8 100%) !important;
}

.tg-about-page .tg-about-timeline-item h4,
.tg-about-page .tg-about-timeline-item > p,
.tg-about-page .tg-about-milestone,
.tg-about-page .tg-about-service-panel,
.tg-about-page .tg-about-service-card,
.tg-about-page .tg-about-info-card,
.tg-about-page .tg-about-process-lane,
.tg-about-page .tg-about-process-step,
.tg-about-page .tg-about-faq-item {
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.tg-about-page .tg-about-service-panel:nth-child(4n + 1) {
    background: linear-gradient(145deg, #ffffff, #f2f8ff);
}

.tg-about-page .tg-about-service-panel:nth-child(4n + 2) {
    background: linear-gradient(145deg, #ffffff, #fff5f6);
}

.tg-about-page .tg-about-service-panel:nth-child(4n + 3) {
    background: linear-gradient(145deg, #ffffff, #faf5ff);
}

.tg-about-page .tg-about-service-panel:nth-child(4n) {
    background: linear-gradient(145deg, #ffffff, #f3fbf8);
}

.tg-about-page .tg-about-service-card,
.tg-about-page .tg-about-info-card {
    isolation: isolate;
}

.tg-about-page .tg-about-service-card::after,
.tg-about-page .tg-about-info-card::after {
    position: absolute;
    z-index: -1;
    top: -45%;
    left: -82%;
    width: 52%;
    height: 190%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: rotate(18deg);
    transition: left 0.55s ease, opacity 0.25s ease;
}

.tg-about-page .tg-about-service-card {
    position: relative;
    overflow: hidden;
}

.tg-about-page .tg-about-service-card h4 {
    position: relative;
    padding-left: 17px;
}

.tg-about-page .tg-about-service-card h4::before {
    position: absolute;
    top: 0.52em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--tg-about-red), var(--tg-about-purple));
    box-shadow: 0 0 0 4px rgba(113, 55, 168, 0.08);
    content: "";
    transform: rotate(45deg);
}

.tg-about-page .tg-about-service-panel > figure img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.tg-about-page .tg-about-process-step {
    border-radius: 12px;
}

.tg-about-page .tg-about-process-step h4 {
    transition: color 0.25s ease, transform 0.25s ease;
}

.tg-about-page .tg-about-stat-card {
    box-shadow: 0 10px 24px rgba(5, 25, 66, 0.13);
}

.tg-about-page .tg-about-stat-card::after {
    background: linear-gradient(90deg, transparent, rgba(224, 238, 255, 0.8), transparent);
}

.tg-about-page .tg-about-faq-item > h3 {
    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding-left 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    .tg-about-page .tg-about-timeline-item:hover h4 {
        transform: translateX(5px) scale(1.035);
        box-shadow: 0 12px 26px rgba(18, 58, 140, 0.28);
    }

    .tg-about-page .tg-about-timeline-item:hover > p {
        border-color: rgba(61, 141, 219, 0.42);
        box-shadow: 0 14px 30px rgba(24, 50, 75, 0.1);
        transform: translateX(4px);
    }

    .tg-about-page .tg-about-milestone:hover {
        border-color: rgba(207, 37, 50, 0.38);
        box-shadow: 0 16px 32px rgba(24, 50, 75, 0.12);
        transform: translateY(-6px);
    }

    .tg-about-page .tg-about-milestone:hover h4 {
        color: #ffffff;
        transform: translateY(-2px);
    }

    .tg-about-page .tg-about-service-panel:hover {
        border-color: rgba(61, 141, 219, 0.4);
        box-shadow: 0 18px 38px rgba(24, 50, 75, 0.12);
        transform: translateY(-4px);
    }

    .tg-about-page .tg-about-service-panel:hover > figure img {
        filter: saturate(1.08) contrast(1.03);
        transform: scale(1.025);
    }

    .tg-about-page .tg-about-service-card:hover,
    .tg-about-page .tg-about-info-card:hover {
        border-color: rgba(61, 141, 219, 0.45);
        box-shadow: 0 18px 36px rgba(24, 50, 75, 0.14);
        transform: translateY(-7px);
    }

    .tg-about-page .tg-about-service-card:hover::after,
    .tg-about-page .tg-about-info-card:hover::after {
        left: 128%;
        opacity: 1;
    }

    .tg-about-page .tg-about-process-lane:hover {
        border-color: rgba(61, 141, 219, 0.36);
        box-shadow: 0 16px 34px rgba(24, 50, 75, 0.11);
    }

    .tg-about-page .tg-about-process-step:hover {
        background: #f4f8fd;
        transform: translateX(5px);
    }

    .tg-about-page .tg-about-process-step:hover h4 {
        color: var(--tg-about-red);
        transform: translateX(2px);
    }

    .tg-about-page .tg-about-faq-item:hover {
        border-color: rgba(61, 141, 219, 0.42);
        box-shadow: 0 14px 28px rgba(24, 50, 75, 0.11);
        transform: translateY(-2px);
    }

    .tg-about-page .tg-about-faq-item > h3[aria-expanded="false"]:hover {
        padding-left: 24px;
        background: #f3f8fe;
        color: var(--tg-about-red);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .tg-about-page #content.tg-about-motion .tg-about-section {
        opacity: 0;
        transform: translateY(24px);
        transition:
            opacity 0.58s ease var(--tg-about-reveal-delay, 0ms),
            transform 0.58s cubic-bezier(0.22, 1, 0.36, 1) var(--tg-about-reveal-delay, 0ms);
    }

    .tg-about-page #content.tg-about-motion .tg-about-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .tg-about-page .tg-about-card-grid,
    .tg-about-page .tg-about-expertise-grid,
    .tg-about-page .tg-about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tg-about-page .tg-about-milestone-grid {
        grid-template-columns: 1fr;
    }

    .tg-about-page .tg-about-process-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .tg-about-page #content .tg-about-section {
        margin: 24px 0;
        padding: 22px 16px;
        border-radius: 17px;
    }

    .tg-about-page #content .tg-about-section::before {
        left: 16px;
        width: 58px;
    }

    .tg-about-page #content .tg-about-section > h2,
    .tg-about-page #content .tg-about-section > h3 {
        font-size: 24px;
    }

    .tg-about-page #content h2.tg-about-standalone-heading {
        margin-top: 28px;
        font-size: 25px;
    }

    .tg-about-page #content h3.tg-about-standalone-heading {
        margin-top: 24px;
        font-size: 21px;
    }

    .tg-about-page .tg-about-timeline-list::before {
        left: 13px;
    }

    .tg-about-page .tg-about-timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 0 18px 34px;
    }

    .tg-about-page .tg-about-timeline-item h4 {
        width: max-content;
        max-width: 100%;
        border-width: 3px;
        text-align: left;
    }

    .tg-about-page .tg-about-timeline-item > p {
        grid-column: 1;
    }

    .tg-about-page .tg-about-milestone-grid,
    .tg-about-page .tg-about-service-cards,
    .tg-about-page .tg-about-card-grid,
    .tg-about-page .tg-about-expertise-grid,
    .tg-about-page .tg-about-legal-grid,
    .tg-about-page .tg-about-ecosystem-grid,
    .tg-about-page .tg-about-stats-grid,
    .tg-about-page .tg-about-feedback-grid,
    .tg-about-page .tg-about-contact-list {
        grid-template-columns: 1fr;
    }

    .tg-about-page .tg-about-contact-list {
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
    }

    .tg-about-page .tg-about-contact-list .tg-contact-company,
    .tg-about-page .tg-about-contact-list .tg-contact-network {
        grid-column: auto;
    }

    .tg-about-page .tg-about-contact-list .tg-about-contact-item {
        min-height: auto;
        padding: 16px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
        border-radius: 15px;
    }

    .tg-about-page .tg-about-contact-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .tg-about-page .tg-about-contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .tg-about-page .tg-about-service-panel,
    .tg-about-page .tg-about-process-lane {
        padding: 17px;
    }

    .tg-about-page .tg-about-service-panel > h3 {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tg-about-page .tg-about-timeline-item h4,
    .tg-about-page .tg-about-timeline-item > p,
    .tg-about-page .tg-about-milestone,
    .tg-about-page .tg-about-service-panel,
    .tg-about-page .tg-about-service-card,
    .tg-about-page .tg-about-info-card,
    .tg-about-page .tg-about-process-lane,
    .tg-about-page .tg-about-process-step,
    .tg-about-page .tg-about-faq-item,
    .tg-about-page .tg-about-faq-item > h3,
    .tg-about-page .tg-about-service-panel > figure img {
        transition: none;
    }
}

@media print {
    .tg-about-page .tg-about-faq-answer[hidden] {
        display: block !important;
    }

    .tg-about-page .tg-about-faq-item > h3::after {
        content: none;
    }

    .tg-about-page #content .tg-about-section {
        break-inside: avoid;
        opacity: 1 !important;
        box-shadow: none;
        transform: none !important;
    }
}
