@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
    --red: #D2242F;
    --red-dark: #9f1620;
    --ink: #15161a;
    --muted: #70727a;
    --line: #e9e9ed;
    --pale: #fff5f5;
    --blue: #075de2;
    --navy: #071f68;
    --radius: 18px;
    --shadow: 0 18px 45px rgba(18, 26, 61, .08)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: 'DM Sans', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto
}

.page-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .08;
    pointer-events: none;
    z-index: -1
}

.page-glow--one {
    background: var(--red);
    top: 34%;
    left: -280px
}

.page-glow--two {
    background: #3979ff;
    top: 70%;
    right: -280px
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    z-index: 20;
    border-bottom: 1px solid rgba(20, 20, 30, .06);
    transition: box-shadow .3s
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(20, 20, 30, .08)
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    width: 148px;
    transition: transform .3s
}

.brand:hover {
    transform: translateY(-2px)
}

.brand img {
    width: 100%
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    font-size: 13px;
    font-weight: 600
}

.main-nav a {
    position: relative;
    color: #4d4e54;
    transition: color .25s
}

.main-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--red);
    transition: right .3s
}

.main-nav a:hover, .main-nav a.active {
    color: var(--red)
}

.main-nav a:hover:after, .main-nav a.active:after {
    right: 0
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 5px;
    border-radius: 2px
}

.hero {
    height: min(560px, calc(100vh - 10px));
    min-height: 440px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #101318;
    color: #fff;
    padding-top: 65px
}

.hero-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 12, 25, .82) 0%, rgba(7, 14, 28, .58) 43%, rgba(8, 12, 20, .15) 100%)
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image: linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(90deg, #000, transparent 75%)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 800;
    margin: 0 0 17px;
    display: flex;
    align-items: center;
    gap: 10px
}

.eyebrow span {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: currentColor
}

.eyebrow--light {
    color: #fff
}

.eyebrow--red {
    color: var(--red)
}

h1, h2, h3, h4, p {
    margin-top: 0
}

h1, h2 {
    font-family: 'Manrope', Arial, sans-serif;
    letter-spacing: -.055em;
    line-height: 1.07
}

h1 {
    font-size: clamp(44px, 6vw, 78px);
    margin-bottom: 24px
}

h1 em, h2 em {
    font-style: normal;
    color: #ff5960
}

h2 {
    font-size: clamp(38px, 5vw, 62px);
    margin-bottom: 24px
}

h3, h4 {
    font-family: 'Manrope', Arial, sans-serif;
    line-height: 1.25
}

.hero-content h2 {
    font-size: clamp(26px, 3.6vw, 44px);
    margin-bottom: 20px
}

.hero-copy {
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    max-width: 980px;
    margin: 0 auto 36px
}

.hero-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 38px;
    border-radius: 12px;
    background: rgba(210, 36, 47, 1);
    color: #fff;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 12px 35px rgba(210, 36, 47, .45), 0 4px 12px rgba(210, 36, 47, .25);
    animation: btnFloat 3.5s ease-in-out infinite, btnPulse 2s ease-in-out infinite;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s;
    background-size: 200% 100%
}

.hero-cta-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, .25) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
    z-index: -1
}

.hero-cta-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(210, 36, 47, .55), 0 8px 20px rgba(210, 36, 47, .35), 0 0 40px rgba(210, 36, 47, .3)
}

.hero-cta-btn:hover:before {
    transform: translate(-50%, -50%) scale(1)
}

.hero-cta-btn:active {
    transform: translateY(-2px) scale(1.01)
}

.hero-cta-text {
    position: relative;
    z-index: 2
}

.hero-cta-arrow {
    position: relative;
    z-index: 2;
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    animation: arrowBounce 1.8s ease-in-out infinite
}

.hero-cta-btn:hover .hero-cta-arrow {
    transform: translateX(8px) scale(1.15)
}

.hero-cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transform: skewX(-25deg);
    animation: shineSweep 3.5s ease-in-out infinite;
    z-index: 1
}

.hero-cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%);
    animation: rippleExpand 2.5s ease-out infinite;
    z-index: 0
}

@keyframes btnFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-6px)
    }
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 12px 35px rgba(210, 36, 47, .45), 0 4px 12px rgba(210, 36, 47, .25)
    }
    50% {
        box-shadow: 0 15px 45px rgba(210, 36, 47, .6), 0 6px 18px rgba(210, 36, 47, .35), 0 0 30px rgba(210, 36, 47, .2)
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0)
    }
    50% {
        transform: translateX(5px)
    }
}

@keyframes shineSweep {
    0% {
        left: -100%
    }
    60%, 100% {
        left: 150%
    }
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: .6
    }
    100% {
        width: 220%;
        height: 220%;
        opacity: 0
    }
}

.hero-cta-btn:hover .hero-cta-text {
    animation: textGlow 1.2s ease-in-out infinite
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 0 transparent
    }
    50% {
        text-shadow: 0 0 12px rgba(255, 255, 255, .6)
    }
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 15px 22px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
    transition: transform .25s, box-shadow .25s, background .25s
}

.button span {
    font-size: 17px;
    line-height: 1
}

.button:hover {
    transform: translateY(-4px)
}

.button--primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 24px rgba(210, 36, 47, .3)
}

.button--primary:hover {
    background: #ee3743;
    box-shadow: 0 15px 30px rgba(210, 36, 47, .4)
}

.button--ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4)
}

.button--ghost:hover {
    background: #fff;
    color: var(--ink)
}

.button--dark {
    background: var(--ink);
    color: #fff
}

.hero-meta {
    display: flex;
    gap: 34px;
    margin-top: 72px
}

.hero-meta div {
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-left: 1px solid rgba(255, 255, 255, .35);
    padding-left: 13px
}

.hero-meta strong {
    font-family: 'Manrope';
    font-size: 24px
}

.hero-meta span {
    font-size: 12px;
    color: rgba(255, 255, 255, .58);
    text-transform: uppercase;
    letter-spacing: .12em
}

.scroll-cue {
    position: absolute;
    right: 38px;
    bottom: 34px;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .67);
    display: flex;
    gap: 12px;
    align-items: center
}

.scroll-cue span {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, .6);
    animation: scrollLine 1.8s infinite
}

.section {
    padding: 120px 0
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 53px
}

.section-heading h2 {
    margin-bottom: 0
}

.heading-note {
    max-width: 355px;
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 6px
}

.section-heading--compact {
    margin-bottom: 48px
}

.solutions {
    background: #fff
}

.card-grid {
    display: grid;
    gap: 20px
}

.card-grid--three {
    grid-template-columns:repeat(3, 1fr)
}

.image-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: transform .35s, box-shadow .35s, border-color .35s
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.image-card-media {
    height: 223px;
    position: relative;
    overflow: hidden;
    background: #eee
}

.image-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.image-card:hover .image-card-media img {
    transform: scale(1.08)
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: var(--red);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .12)
}

.image-card-body {
    padding: 23px 24px 24px
}

.image-card-body h3 {
    font-size: 19px;
    margin-bottom: 9px
}

.image-card-body p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 19px
}

.text-link {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.text-link span, .app-links span {
    font-size: 16px;
    transition: transform .25s
}

.text-link:hover span, .app-links a:hover span {
    transform: translate(3px, -3px)
}

.text-link--large {
    font-size: 13px;
    margin-bottom: 6px
}

.why-us {
    background: linear-gradient(110deg, #fff8f8 0%, #fff 100%);
    overflow: hidden
}

.why-layout {
    display: grid;
    grid-template-columns:1fr 1fr;
    align-items: center;
    gap: 70px
}

.portrait-stage {
    min-height: 490px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.portrait {
    position: relative;
    z-index: 2;
    width: min(60%, 355px);
    margin-top: 37px;
    filter: drop-shadow(0 22px 18px rgba(74, 28, 35, .12));
    animation: portraitFloat 5s ease-in-out infinite
}

.portrait-orbit {
    position: absolute;
    border: 1px solid rgba(210, 36, 47, .14);
    border-radius: 50%;
    transform: rotate(-18deg)
}

.portrait-orbit--one {
    width: 430px;
    height: 330px;
    background: rgba(255, 210, 210, .2)
}

.portrait-orbit--two {
    width: 380px;
    height: 265px;
    border-style: dashed;
    animation: orbitSpin 18s linear infinite
}

.portrait-dots {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-image: radial-gradient(var(--red) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: .13;
    mask-image: radial-gradient(circle, black 0 40%, transparent 70%)
}

.floating-badge {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(210, 36, 47, .11);
    padding: 9px 13px;
    border-radius: 9px;
    box-shadow: 0 11px 25px rgba(123, 44, 56, .08);
    font-size: 10px;
    line-height: 1.2;
    animation: badgeFloat 4s ease-in-out infinite
}

.floating-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain
}

.floating-badge b {
    font-weight: 800
}

.floating-badge--1 {
    top: 72px;
    left: 8%
}

.floating-badge--2 {
    top: 18px;
    right: 12%;
    animation-delay: .5s
}

.floating-badge--3 {
    top: 205px;
    left: 0;
    animation-delay: 1s
}

.floating-badge--4 {
    bottom: 61px;
    left: 10%;
    animation-delay: 1.5s
}

.floating-badge--5 {
    bottom: 17px;
    right: 10%;
    animation-delay: 2s
}

.floating-badge--6 {
    top: 205px;
    right: 0;
    animation-delay: 2.5s
}

.why-copy .lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 510px;
    margin-bottom: 26px
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px
}

.check-list li {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center
}

.check-list li span {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #ffe4e5;
    color: var(--red);
    display: grid;
    place-items: center;
    font-size: 11px
}

.facts {
    padding-top: 108px
}

.stat-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 62px
}

.stat-card {
    padding: 28px;
    border: 1px solid #f0e5e5;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #fffafa, #fff);
    min-height: 215px;
    transition: transform .3s, box-shadow .3s
}

.stat-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.stat-card--violet {
    background: linear-gradient(135deg, #fbfaff, #fff);
    border-color: #e9e7fa
}

.stat-card--blue {
    background: linear-gradient(135deg, #f8fbff, #fff);
    border-color: #e5edf9
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ffe5e5;
    margin-bottom: 19px
}

.stat-card--violet .stat-icon {
    background: #ebebff
}

.stat-card--blue .stat-icon {
    background: #e3efff
}

.stat-icon img {
    width: 41px;
    height: 41px;
    object-fit: contain
}

.stat-card strong {
    font-family: 'Manrope';
    font-size: 38px;
    letter-spacing: -.06em;
    color: var(--red);
    display: block;
    line-height: 1
}

.stat-card--violet strong {
    color: #5950d8
}

.stat-card--blue strong {
    color: #1c7be6
}

.stat-card sup {
    font-size: 20px;
    vertical-align: top;
    margin-left: 2px
}

.stat-card h3 {
    font-size: 14px;
    margin: 9px 0 5px
}

.stat-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0
}

.latest-heading {
    margin-bottom: 17px
}

.latest-heading .eyebrow {
    margin-bottom: 7px
}

.latest-heading h3 {
    font-size: 20px;
    margin: 0
}

.update-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 11px
}

.update-card {
    position: relative;
    background: #f5f5f6;
    border-radius: 9px;
    padding: 23px 25px;
    min-height: 156px;
    transition: background .3s, transform .3s
}

.update-card:hover {
    background: #fff0f0;
    transform: translateY(-5px)
}

.update-card > span, .date {
    font-size: 10px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: .08em
}

.update-card h4 {
    font-size: 15px;
    margin: 13px 0 7px;
    max-width: 280px
}

.update-card p {
    font-size: 12px;
    color: #8a8b90;
    margin: 0
}

.update-card > b {
    position: absolute;
    right: 20px;
    bottom: 17px;
    color: var(--red);
    font-size: 17px
}

.process {
    position: relative;
    overflow: hidden;
    background: #fff8f8;
    padding-bottom: 127px
}

.process-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .28;
    mix-blend-mode: multiply
}

.process .container {
    position: relative
}

.process-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 13px
}

.process-card {
    position: relative;
    background: rgba(255, 255, 255, .86);
    border: 1px solid #f6dddd;
    border-radius: 15px;
    padding: 30px 24px 27px;
    min-height: 248px;
    transition: transform .3s, background .3s, box-shadow .3s
}

.process-card:hover {
    transform: translateY(-9px);
    background: #fff;
    box-shadow: 0 17px 30px rgba(167, 38, 52, .1)
}

.process-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin: 21px 0 17px
}

.process-card h3 {
    font-size: 17px;
    margin-bottom: 8px
}

.process-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0
}

.process-index {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #e4b0b3;
    font-size: 11px;
    font-weight: 800
}

.insights {
    padding-bottom: 125px
}

.insight-card .image-card-media {
    height: 225px
}

.insight-tag {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: #fff;
    color: var(--red);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em
}

.date {
    display: block;
    margin-bottom: 10px
}

.insight-card .image-card-body h3 {
    min-height: 49px
}

.app-section {
    background: linear-gradient(110deg, #fff7f7, #fff);
    overflow: hidden
}

.app-layout {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    min-height: 475px;
    align-items: center
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-family: 'Manrope';
    font-size: 18px
}

.app-brand img {
    width: 27px;
    height: 27px;
    object-fit: contain
}

.app-copy h2 {
    font-size: clamp(35px, 4.2vw, 55px);
    margin-bottom: 17px
}

.app-copy > p:not(.eyebrow) {
    max-width: 520px;
    color: var(--muted);
    font-size: 14px
}

.app-links {
    display: flex;
    gap: 28px;
    margin-top: 25px
}

.app-links a {
    color: var(--red);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 10px
}

.phone-stage {
    position: relative;
    height: 475px;
    display: flex;
    align-items: end;
    justify-content: center
}

.phone-stage:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #ffe1e3;
    filter: blur(3px);
    bottom: -170px;
    right: 0
}

.phone-stage:after {
    position: absolute;
    right: 17%;
    top: 25%;
    font-size: 11px;
    letter-spacing: .35em;
    color: var(--red);
    transform: rotate(90deg);
    opacity: .5
}

.phone-stage img {
    height: 94%;
    max-height: 550px;
    width: auto;
    position: relative;
    z-index: 1;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(68, 37, 44, .16));
    transition: transform .5s
}

.phone-stage:hover img {
    transform: translateY(-12px) rotate(1deg)
}

.phone-ring {
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(210, 36, 47, .2);
    border-radius: 50%;
    right: 8%;
    bottom: -95px
}

.site-footer {
    background: linear-gradient(110deg, #096aeb 0%, #064ed0 55%, #082477 100%);
    color: #fff;
    padding: 53px 0 23px
}

.footer-top {
    display: grid;
    grid-template-columns:1.5fr repeat(3, 1fr);
    gap: 35px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.footer-brand img {
    width: 150px;
    margin-bottom: 15px;
/*    filter: brightness(0) invert(1)*/
}

.footer-brand p, .contact-item p {
    font-size: 11px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    margin: 0
}

.contact-item {
    display: flex;
    gap: 13px
}

.contact-item > img {
    width: 26px;
    height: 26px;
    object-fit: contain;
   /* filter: brightness(0) invert(1);*/
    opacity: .94
}

.contact-item span {
    font-family: 'Manrope';
    font-size: 13px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px
}

.contact-item p {
    font-size: 10px
}

.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    color: rgba(255, 255, 255, .58)
}

.footer-bottom div {
    display: flex;
    gap: 27px
}

.footer-bottom a:hover {
    color: #fff
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal-delay-1 {
    transition-delay: .12s
}

.reveal-delay-2 {
    transition-delay: .24s
}

.reveal-delay-3 {
    transition-delay: .36s
}

@keyframes portraitFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-12px)
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-6px)
    }
}

@keyframes orbitSpin {
    to {
        transform: rotate(342deg)
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(.45);
        transform-origin: top;
        opacity: .4
    }
    50% {
        transform: scaleY(1);
        opacity: 1
    }
    100% {
        transform: scaleY(.45);
        transform-origin: bottom;
        opacity: .4
    }
}

@media (max-width: 900px) {
    .container {
        width: min(100% - 36px, 680px)
    }

    .site-header {
        height: 68px
    }

    .brand {
        width: 130px
    }

    .menu-toggle {
        display: block;
        z-index: 2
    }

    .main-nav {
        position: absolute;
        top: 68px;
        left: 18px;
        right: 18px;
        display: grid;
        gap: 0;
        padding: 12px 20px;
        background: #fff;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 14px 25px rgba(0, 0, 0, .1);
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        transition: .3s
    }

    .main-nav.open {
        transform: none;
        opacity: 1;
        pointer-events: auto
    }

    .main-nav a {
        padding: 11px 0
    }

    .main-nav a:after {
        bottom: 5px
    }

    .hero {
        height: 760px;
        min-height: 0
    }

    .hero-content {
        margin: 0 auto;
        padding: 0;
        text-align: center;
        align-items: center
    }

    .hero-copy {
        font-size: 14px
    }

    .hero-meta {
        margin-top: 47px
    }

    .scroll-cue {
        display: none
    }

    .section {
        padding: 84px 0
    }

    .section-heading {
        display: block;
        margin-bottom: 34px
    }

    .heading-note {
        margin-top: 20px
    }

    .why-layout, .app-layout {
        grid-template-columns:1fr;
        gap: 40px
    }

    .portrait-stage {
        min-height: 440px;
        order: 2
    }

    .why-copy {
        order: 1
    }

    .portrait {
        width: min(58%, 310px)
    }

    .floating-badge--1 {
        left: 3%
    }

    .floating-badge--6 {
        right: 3%
    }

    .process-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .phone-stage {
        min-height: 430px
    }

    .footer-top {
        grid-template-columns:repeat(2, 1fr)
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom div {
        margin-top: 13px
    }
}

@media (max-width: 620px) {
    .container {
        width: calc(100% - 32px)
    }

    .hero {
        height: 720px
    }

    .hero-image {
        object-position: 60% center
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(5, 12, 25, .9), rgba(7, 14, 28, .42))
    }

    .hero-content h1 {
        font-size: 45px
    }

    .hero-meta {
        gap: 17px
    }

    .hero-meta div {
        display: block
    }

    .hero-meta strong {
        display: block
    }

    .hero-meta span {
        font-size: 9px
    }

    .card-grid--three, .stat-grid, .update-grid {
        grid-template-columns:1fr
    }

    .image-card-media, .insight-card .image-card-media {
        height: 220px
    }

    .portrait-stage {
        min-height: 385px;
        transform: scale(.86);
        margin: -20px -30px
    }

    .floating-badge {
        font-size: 9px;
        padding: 7px 9px
    }

    .floating-badge--1 {
        top: 42px
    }

    .floating-badge--2 {
        top: 0
    }

    .floating-badge--3 {
        top: 165px;
        left: 0
    }

    .floating-badge--4 {
        bottom: 39px
    }

    .floating-badge--5 {
        bottom: 0
    }

    .floating-badge--6 {
        top: 165px
    }

    .why-copy h2 {
        font-size: 39px
    }

    .process-grid {
        grid-template-columns:1fr 1fr;
        gap: 10px
    }

    .process-card {
        padding: 23px 17px;
        min-height: 225px
    }

    .process-card img {
        width: 35px;
        height: 35px
    }

    .footer-top {
        grid-template-columns:1fr;
        gap: 24px
    }

    .footer-brand {
        grid-column: auto
    }

    .footer-bottom div {
        gap: 14px;
        flex-wrap: wrap
    }

    .app-links {
        display: grid;
        gap: 14px
    }

    .phone-stage {
        height: 390px
    }

    .phone-stage img {
        height: 90%
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }
}

.inner-page {
    padding-top: 78px
}

.inner-hero {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 110px 0 100px;
    color: #fff;
    background: linear-gradient(110deg, rgba(7, 20, 54, .98), rgba(7, 56, 137, .88)), url('../img/main-banner.png') center/cover
}

.inner-hero:after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image: linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, #000, transparent)
}

.inner-hero .container {
    position: relative;
    z-index: 1
}

.inner-hero h1 {
    max-width: 730px;
    margin-bottom: 22px
}

.inner-hero p:not(.eyebrow) {
    max-width: 520px;
    color: rgba(255, 255, 255, .74);
    font-size: 16px
}

.page-content {
    min-height: 470px
}

.page-content-grid, .contact-layout {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    align-items: start
}

.page-content-grid .lead, .contact-layout .lead {
    color: var(--muted);
    font-size: 16px;
    max-width: 490px
}

.service-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.service-panel {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 27px;
    background: #fff;
    transition: transform .35s, box-shadow .35s
}

.service-panel:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.service-panel > span {
    position: absolute;
    right: 25px;
    top: 22px;
    color: #dcaeb1;
    font: 800 12px 'Manrope'
}

.service-panel img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin: 28px 0 22px
}

.service-panel h3 {
    font-size: 20px;
    margin-bottom: 10px
}

.service-panel p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.contact-layout {
    align-items: center
}

.contact-box {
    border-radius: 22px;
    background: #fff8f8;
    border: 1px solid #f6dfdf;
    padding: 35px;
    display: grid;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(120, 31, 45, .06)
}

.contact-box-row {
    display: flex;
    gap: 15px;
    align-items: flex-start
}

.contact-box-row img {
    width: 28px;
    height: 28px;
    object-fit: contain
}

.contact-box-row span {
    display: block;
    font: 800 14px 'Manrope';
    margin-bottom: 4px
}

.contact-box-row p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.contact-box .button {
    justify-self: start;
    margin-top: 6px
}

@media (max-width: 900px) {
    .inner-page {
        padding-top: 68px
    }

    .inner-hero {
        min-height: 390px;
        padding: 90px 0 80px
    }

    .page-content-grid, .contact-layout {
        grid-template-columns:1fr;
        gap: 35px
    }

    .service-grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 620px) {
    .inner-hero {
        min-height: 360px;
        padding: 80px 0 65px
    }

    .inner-hero h1 {
        font-size: 46px
    }

    .inner-hero p:not(.eyebrow) {
        font-size: 14px
    }

    .service-grid {
        grid-template-columns:1fr
    }

    .contact-box {
        padding: 25px
    }
}

.service-page {
    padding-top: 78px
}

.service-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #f8f9ff
}

.service-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.service-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .86) 36%, rgba(255, 255, 255, .06) 77%)
}

.service-hero-lines {
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image: linear-gradient(115deg, transparent 35%, rgba(210, 36, 47, .18) 35.1%, transparent 35.3%), linear-gradient(115deg, transparent 42%, rgba(4, 93, 226, .13) 42.1%, transparent 42.3%);
    background-size: 100% 100%
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px
}

.service-hero .eyebrow {
    color: var(--red)
}

.service-hero h1 {
    font-size: clamp(43px, 5.5vw, 70px);
    margin-bottom: 20px
}

.service-hero h1 em {
    color: var(--red)
}

.service-hero-content > p:not(.eyebrow) {
    max-width: 490px;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 28px
}

.service-hero-scroll {
    position: absolute;
    right: 34px;
    bottom: 25px;
    z-index: 2;
    display: flex;
    gap: 11px;
    align-items: center;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: .16em;
    color: var(--red)
}

.service-hero-scroll span {
    height: 42px;
    width: 1px;
    background: var(--red);
    animation: scrollLine 1.8s infinite
}

.service-overview {
    padding-top: 122px;
    padding-bottom: 128px
}

.service-overview-grid {
    display: grid;
    grid-template-columns:1.04fr .96fr;
    align-items: center;
    gap: 85px
}

.service-image-wrap {
    position: relative;
    padding: 12px
}

.image-text-block {
    margin-bottom: 24px
}

.image-eyebrow {
    font-size: 11px;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 800;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.image-eyebrow span {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: currentColor
}

.image-heading {
    font-family: 'Manrope', Arial, sans-serif;
    letter-spacing: -.045em;
    line-height: 1.28;
    font-size: clamp(22px, 3vw, 36px);
    color: var(--ink);
    margin: 0;
    font-weight: 700
}

.service-image-wrap > img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 22px 45px rgba(29, 36, 66, .12)
}

.image-corner {
    position: absolute;
    width: 90px;
    height: 90px;
    border-color: var(--red);
    border-style: solid;
    opacity: .5
}

.image-corner--tl {
    left: -4px;
    top: -4px;
    border-width: 2px 0 0 2px;
    border-radius: 14px 0 0 0
}

.image-corner--br {
    right: -4px;
    bottom: -4px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 14px 0
}

.service-overview-copy h2 {
    margin-bottom: 21px
}

.service-overview-copy .lead {
    max-width: 500px;
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 25px
}

.six-callout {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 420px;
    padding: 17px 19px;
    margin-bottom: 23px;
    border-radius: 13px;
    background: #fff1f1;
    border: 1px solid #fbe1e1
}

.six-callout > img {
    width: 42px;
    height: 42px;
    object-fit: contain
}

.six-callout strong {
    display: block;
    font: 800 17px 'Manrope';
    color: var(--red)
}

.six-callout p {
    font-size: 12px;
    color: #8c7779;
    margin: 2px 0 0
}

.callout-arrow {
    margin-left: auto;
    color: var(--red);
    font-size: 22px
}

.service-overview-copy .text-link {
    margin-top: 2px
}

.service-pillars {
    background: linear-gradient(120deg, #fff5f5, #fffafa);
    position: relative;
    overflow: hidden
}

.service-pillars:before {
    position: absolute;
    right: -20px;
    top: 145px;
    font: 800 88px 'Manrope';
    letter-spacing: .18em;
    color: rgba(210, 36, 47, .035);
    transform: rotate(90deg)
}

.service-heading {
    position: relative;
    z-index: 1
}

.service-pillar-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 15px
}

.service-pillar-card {
    position: relative;
    min-height: 225px;
    padding: 25px;
    border: 1px solid rgba(242, 214, 215, .9);
    border-radius: 15px;
    background: rgba(255, 255, 255, .83);
    transition: transform .35s, box-shadow .35s, background .35s
}

.service-pillar-card:hover {
    transform: translateY(-9px);
    background: #fff;
    box-shadow: 0 17px 35px rgba(177, 48, 59, .1)
}

.pillar-icon {
    width: 43px;
    height: 43px;
    border-radius: 11px;
    background: #ffe3e4;
    display: grid;
    place-items: center;
    margin-bottom: 18px
}

.pillar-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain
}

.pillar-index {
    position: absolute;
    right: 24px;
    top: 25px;
    font: 800 11px 'Manrope';
    color: #dea8ac
}

.service-pillar-card h3 {
    font-size: 16px;
    margin-bottom: 7px
}

.service-pillar-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 265px;
    margin-bottom: 16px
}

.service-pillar-card .text-link {
    font-size: 10px
}

.service-feature {
    padding-top: 120px;
    padding-bottom: 135px;
    background: #fff
}

.feature-heading {
    margin-bottom: 35px
}

.feature-heading h2 {
    margin-bottom: 0
}

.feature-visual {
    position: relative;
    min-height: 440px;
    border-radius: 23px;
    overflow: hidden;
    background: #f3f5fa;
    box-shadow: 0 22px 50px rgba(24, 33, 63, .1)
}

.feature-main-image {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    object-position: center
}

.feature-visual:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 43%, rgba(6, 20, 54, .72) 100%);
    pointer-events: none
}

.feature-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 28px rgba(28, 36, 70, .13);
    font-size: 10px;
    line-height: 1.16;
    animation: badgeFloat 4.2s ease-in-out infinite
}

.feature-badge img {
    width: 22px;
    height: 22px;
    object-fit: contain
}

.feature-badge b {
    font-weight: 800
}

.feature-badge--1 {
    left: 8%;
    top: 21%;
    animation-delay: .2s
}

.feature-badge--2 {
    right: 9%;
    top: 17%;
    animation-delay: .8s
}

.feature-badge--3 {
    left: 19%;
    bottom: 28%;
    animation-delay: 1.3s
}

.feature-badge--4 {
    right: 17%;
    bottom: 24%;
    animation-delay: 1.9s
}

.feature-caption {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center
}

.feature-caption span {
    grid-column: 1/-1;
    color: #ffd5d6;
    font-size: 10px;
    letter-spacing: .18em;
    font-weight: 800
}

.feature-caption strong {
    font: 700 clamp(20px, 3vw, 31px) 'Manrope';
    letter-spacing: -.04em;
    text-align: center
}

.feature-caption a {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px
}

.feature-caption a b {
    font-size: 18px
}

.service-sectors {
    background: #fff7f7;
    padding-bottom: 125px
}

.sector-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.sector-card {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f1e1e1;
    transition: transform .35s, box-shadow .35s
}

.sector-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow)
}

.sector-image {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #eee
}

.sector-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.sector-card:hover .sector-image > img {
    transform: scale(1.07)
}

.sector-image > span {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--red);
    font: 800 10px 'Manrope';
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.sector-copy {
    padding: 21px 23px 23px
}

.sector-copy h3 {
    font-size: 18px;
    margin-bottom: 8px
}

.sector-copy p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.sector-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    background: #fff1f1;
    border: 1px solid #fbe1e1;
    line-height: 1.4;
    transition: background .25s, transform .25s, color .25s
}

.sector-tag:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px)
}

.sector-tag1 {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(41, 112, 255, 1);
    background: rgba(228, 237, 255, 1);
    border: 1px solid rgba(228, 237, 255, 1);
    line-height: 1.4;
    transition: background .25s, transform .25s, color .25s
}

.sector-tag1:hover {
    background: rgba(41, 112, 255, 1);
    color: #fff;
    transform: translateY(-2px)
}

.sector-tag2 {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(75, 68, 195, 1);
    background: rgba(228, 236, 255, 1);
    border: 1px solid rgba(228, 236, 255, 1);
    line-height: 1.4;
    transition: background .25s, transform .25s, color .25s
}

.sector-tag2:hover {
    background: rgba(75, 68, 195, 1);
    color: #fff;
    transform: translateY(-2px)
}

.sector-copy .text-link {
    font-size: 10px
}

.service-cta {
    padding: 83px 0;
    background: linear-gradient(110deg, #071f68, #075de2);
    color: #fff;
    overflow: hidden;
    position: relative
}

.service-cta:after {
    content: 'GO';
    position: absolute;
    right: 8%;
    top: -55px;
    font: 800 230px 'Manrope';
    color: rgba(255, 255, 255, .06);
    letter-spacing: -.12em
}

.service-cta-inner {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: space-between;
    gap: 35px
}

.service-cta .eyebrow {
    margin-bottom: 13px
}

.service-cta h2 {
    font-size: clamp(34px, 4vw, 52px);
    margin: 0
}

.service-cta h2 em {
    color: #ff7880
}

.service-cta .button {
    flex: none
}

@media (max-width: 900px) {
    .service-page {
        padding-top: 68px
    }

    .service-hero {
        min-height: 550px
    }

    .service-hero-shade {
        background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .88) 58%, rgba(255, 255, 255, .26) 100%)
    }

    .service-overview-grid {
        grid-template-columns:1fr;
        gap: 48px
    }

    .service-overview-copy {
        order: -1
    }

    .service-image-wrap {
        max-width: 650px;
        margin: 0 auto;
        width: 100%
    }

    .service-pillar-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .feature-visual {
        min-height: 390px
    }

    .feature-main-image {
        min-height: 390px
    }

    .service-cta-inner {
        align-items: flex-start;
        flex-direction: column
    }
}

@media (max-width: 620px) {
    .service-hero {
        min-height: 560px
    }

    .service-hero > img {
        object-position: 58% center
    }

    .service-hero-content {
        padding-top: 20px
    }

    .service-hero h1 {
        font-size: 45px
    }

    .service-hero-content > p:not(.eyebrow) {
        font-size: 14px
    }

    .service-hero-scroll {
        display: none
    }

    .service-overview {
        padding-top: 82px;
        padding-bottom: 88px
    }

    .service-overview-copy h2 {
        font-size: 40px
    }

    .service-pillar-grid {
        grid-template-columns:1fr
    }

    .service-pillar-card {
        min-height: 205px
    }

    .service-feature {
        padding-top: 83px;
        padding-bottom: 90px
    }

    .feature-visual, .feature-main-image {
        min-height: 470px
    }

    .feature-badge {
        padding: 8px 10px;
        font-size: 9px
    }

    .feature-badge--1 {
        left: 4%;
        top: 15%
    }

    .feature-badge--2 {
        right: 4%;
        top: 13%
    }

    .feature-badge--3 {
        left: 5%;
        bottom: 29%
    }

    .feature-badge--4 {
        right: 4%;
        bottom: 26%
    }

    .feature-caption {
        left: 19px;
        right: 19px;
        bottom: 20px;
        display: block
    }

    .feature-caption strong {
        display: block;
        margin: 6px 0 15px
    }

    .sector-grid {
        grid-template-columns:1fr
    }

    .sector-image {
        height: 215px
    }

    .service-cta {
        padding: 70px 0
    }

    .service-cta h2 {
        font-size: 40px
    }
}

/* =========================================================
   About page — editorial market story with motion details
   ========================================================= */
.about-page {
    padding-top: 78px;
    background: #fff;
    color: var(--ink)
}

.about-page .site-header {
    height: 78px
}

.about-hero {
    height: min(365px, calc(100vh - 78px));
    min-height: 365px;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #dceafa
}

.about-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.about-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .86) 34%, rgba(255, 255, 255, .27) 69%, rgba(255, 255, 255, .02) 100%);
    z-index: 0
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 630px;
    margin-left: max(28px, calc((100% - 1180px) / 2));
    padding: 0 28px
}

.about-hero-content h1 {
    font-size: clamp(46px, 6.1vw, 82px);
    max-width: 650px;
    margin-bottom: 22px;
    color: #151b2b
}

.about-hero-content h1 em {
    color: var(--red);
    position: relative
}

.about-hero-content h1 em:after {
    content: '';
    position: absolute;
    left: 2px;
    right: 3px;
    bottom: -8px;
    height: 7px;
    background: rgba(210, 36, 47, .12);
    transform: skewX(-21deg);
    z-index: -1
}

.about-hero-content > p:not(.eyebrow) {
    max-width: 510px;
    color: #525c71;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 31px
}

.about-hero-mark {
    position: absolute;
    right: 5.2%;
    bottom: 7%;
    z-index: 2;
    color: rgba(7, 31, 104, .35);
    font: 800 11px 'Manrope';
    letter-spacing: .35em;
    writing-mode: vertical-rl;
    transform: rotate(180deg)
}

.about-hero-art {
    position: absolute;
    right: 8%;
    top: 17%;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(7, 31, 104, .16);
    border-radius: 50%;
    z-index: 1;
    animation: aboutOrbit 18s linear infinite
}

.about-hero-art:before, .about-hero-art:after {
    content: '';
    position: absolute;
    inset: 21px;
    border: 1px dashed rgba(210, 36, 47, .32);
    border-radius: 50%
}

.about-hero-art:after {
    inset: 56px;
    border-style: solid;
    border-color: rgba(7, 31, 104, .12);
    animation: aboutPulse 4s ease-in-out infinite
}

.about-hero-art span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 7px rgba(210, 36, 47, .12);
    animation: aboutDot 3s ease-in-out infinite
}

.about-hero-art span:nth-child(1) {
    left: 18%;
    top: 42%
}

.about-hero-art span:nth-child(2) {
    right: 17%;
    top: 16%;
    background: #075de2;
    animation-delay: .9s
}

.about-hero-art span:nth-child(3) {
    right: 26%;
    bottom: 12%;
    background: #f7b1b6;
    animation-delay: 1.7s
}

.about-intro {
    padding-top: 128px;
    padding-bottom: 135px;
    position: relative;
    overflow: hidden
}

.about-intro:before {
    content: 'ABOUT';
    position: absolute;
    right: -20px;
    top: 40px;
    font: 800 clamp(100px, 17vw, 240px)/1 'Manrope';
    letter-spacing: -.1em;
    color: #f7f8fb;
    pointer-events: none;
    z-index: -1
}

.about-intro-heading {
    max-width: 790px;
    margin-bottom: 56px
}

.about-intro-heading h2 {
    margin-bottom: 16px
}

.about-intro-heading > p:last-child {
    font-size: 15px;
    color: var(--muted);
    max-width: 570px
}

.about-intro-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.02fr) minmax(0, .98fr);
    align-items: center;
    gap: 86px
}

.about-left-image {
    position: relative;
    min-height: 485px;
    padding: 15px 15px 0 0
}

.about-left-image > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 28px 60px rgba(33, 45, 85, .16);
    filter: saturate(.94)
}

.image-frame-accent {
    position: absolute;
    border-radius: 10px;
    pointer-events: none
}

.image-frame-accent--one {
    left: -16px;
    top: 42px;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(210, 36, 47, .42);
    z-index: 0
}

.image-frame-accent--two {
    right: -13px;
    bottom: 4px;
    width: 190px;
    height: 190px;
    background: #eaf0fb;
    z-index: 0
}

.image-stamp {
    position: absolute;
    z-index: 2;
    right: -31px;
    top: 76px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    background: var(--red);
    color: #fff;
    font: 700 10px/1.35 'Manrope';
    letter-spacing: .12em;
    transform: rotate(12deg);
    box-shadow: 0 16px 30px rgba(210, 36, 47, .28);
    animation: aboutFloat 4.4s ease-in-out infinite
}

.image-stamp b {
    font-size: 11px
}

.about-intro-copy {
    padding-bottom: 8px;
}

.copy-label {
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 18px;
    border-radius: 3px;
    background: #fff1f1;
    color: var(--red);
    font: 800 10px 'Manrope';
    letter-spacing: .17em;
    text-transform: uppercase
}

.about-intro-copy h3 {
    font-size: clamp(33px, 4vw, 53px);
    letter-spacing: -.055em;
    margin-bottom: 22px
}

.about-intro-copy h3 em {
    font-style: normal;
    color: var(--red)
}

.about-intro-copy > p {
    max-width: 495px;
    color: #666b76;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 17px
}

.about-metrics {
    display: flex;
    gap: 0;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    max-width: 510px
}

.about-metrics > div {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    border-right: 1px solid var(--line);
    padding-right: 20px;
    margin-right: 20px
}

.about-metrics > div:last-child {
    border-right: 0;
    padding-right: 0;
    margin-right: 0
}

.about-metrics strong {
    font: 800 32px/1 'Manrope';
    letter-spacing: -.08em;
    color: var(--red)
}

.about-metrics strong span {
    font-size: 18px
}

.about-metrics small {
    font-size: 10px;
    line-height: 1.4;
    color: #7b7e87;
    text-transform: uppercase;
    letter-spacing: .07em
}

/* About intro block (vision + mission) */
.about-intro-block {
    padding-top: 90px;
    padding-bottom: 50px;
    background: #fff
}

.about-intro-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 0;
    min-height: 440px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(20, 34, 71, .08);
    border: 1px solid #eef0f5
}

.about-intro-image {
    overflow: hidden;
    background: #eee
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1)
}

.about-intro-image:hover img {
    transform: scale(1.06)
}

.about-intro-copy {
    position: relative;
    padding: 52px 46px;
    background: linear-gradient(135deg, rgba(0, 50, 112, 1) 0%, rgba(177, 43, 87, 1) 100%);
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-intro-copy:before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    filter: blur(2px);
    pointer-events: none
}

.about-intro-copy:after {
    content: '';
    position: absolute;
    left: -50px;
    bottom: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    pointer-events: none
}

.intro-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    align-self: flex-start;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    font: 800 11px 'Manrope';
    letter-spacing: .16em;
    text-transform: uppercase;
    backdrop-filter: blur(4px)
}

.about-intro-copy h3 {
    position: relative;
    z-index: 2;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.3;
    margin: 0
}

.about-intro-copy > p {
    position: relative;
    z-index: 2;
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .85);
    margin: 0
}

.intro-mission {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    padding: 18px 22px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.intro-mission-dot {
    flex: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .25);
    margin-top: 6px;
    animation: txErrorBeat 2.5s ease-in-out infinite
}

.intro-mission strong {
    display: block;
    font: 800 11px 'Manrope';
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px
}

.intro-mission p {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .88);
    margin: 0 0 8px
}

.intro-mission p:last-child {
    margin-bottom: 0
}

.values {
    padding-top: 112px;
    padding-bottom: 123px;
    background: linear-gradient(125deg, #fff8f8 0%, #fff 67%);
    position: relative;
    overflow: hidden
}

.values:after {
    content: '';
    position: absolute;
    left: -110px;
    bottom: -180px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(210, 36, 47, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(210, 36, 47, .03), 0 0 0 62px rgba(210, 36, 47, .025);
    pointer-events: none
}

.about-heading {
    position: relative;
    z-index: 1
}

.heading-note {
    max-width: 330px;
    color: #777c87;
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 6px
}

.value-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1
}

.value-card {
    min-height: 270px;
    padding: 28px 28px 25px;
    border: 1px solid rgba(235, 220, 220, .9);
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 28px rgba(57, 35, 55, .035);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s, border-color .3s;
    position: relative;
    overflow: hidden
}

.value-card:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    right: -35px;
    top: -35px;
    border: 1px solid rgba(210, 36, 47, .13);
    border-radius: 50%;
    transition: transform .5s
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(210, 36, 47, .35);
    box-shadow: 0 22px 45px rgba(89, 33, 43, .12)
}

.value-card:hover:before {
    transform: scale(1.7)
}

.value-card > span {
    position: absolute;
    right: 24px;
    top: 24px;
    color: #e3c5c7;
    font: 800 12px 'Manrope'
}

.value-icon {
    width: 67px;
    height: 67px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    background: #fff3f3;
    transition: transform .4s, background .4s
}

.value-card:hover .value-icon {
    transform: rotate(-8deg) scale(1.08);
    background: #ffe4e5
}

.value-icon img {
    width: 43px;
    height: 43px;
    object-fit: contain
}

.value-card h3 {
    font-size: 19px;
    margin-bottom: 9px;
    position: relative
}

.value-card p {
    font-size: 12px;
    line-height: 1.7;
    color: #7a7e88;
    max-width: 250px;
    margin: 0;
    position: relative
}

.about-message {
    padding-top: 135px;
    padding-bottom: 145px;
    background: #fff;
    overflow: hidden
}

.about-message-grid {
    display: grid;
    grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 98px
}

.people-portrait {
    position: relative;
    min-height: 530px;
    padding: 20px 33px 0 0
}

.people-portrait > img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 11px;
    box-shadow: 0 24px 55px rgba(18, 33, 77, .18);
    animation: aboutFloat 6s ease-in-out infinite
}

.portrait-shape {
    position: absolute;
    width: 330px;
    height: 330px;
    left: -108px;
    top: 58px;
    border-radius: 50%;
    border: 1px solid rgba(210, 36, 47, .25);
    box-shadow: 0 0 0 18px rgba(210, 36, 47, .04), 0 0 0 47px rgba(210, 36, 47, .025);
    animation: aboutPulse 5s ease-in-out infinite
}

.portrait-note {
    position: absolute;
    right: -1px;
    bottom: 35px;
    z-index: 2;
    min-width: 156px;
    padding: 18px 20px;
    background: #071f68;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(7, 31, 104, .25);
    font: 700 11px/1.45 'Manrope';
    text-transform: uppercase;
    letter-spacing: .08em;
    animation: aboutFloat 4.7s ease-in-out infinite reverse
}

.portrait-note b {
    color: #ff8086
}

.about-message-copy h2 {
    font-size: clamp(38px, 4.8vw, 63px);
    margin-bottom: 21px
}

.about-message-copy > p:not(.eyebrow) {
    max-width: 490px;
    color: #686d78;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 17px
}

.about-message-copy .button {
    margin-top: 15px
}

.partner-section {
    padding-top: 116px;
    padding-bottom: 125px;
    background: #fff6f6;
    position: relative;
    overflow: hidden
}

.partner-section:before {
    content: 'PARTNERS';
    position: absolute;
    right: -50px;
    bottom: -30px;
    font: 800 130px/1 'Manrope';
    letter-spacing: -.1em;
    color: rgba(210, 36, 47, .04);
    pointer-events: none
}

.partner-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 19px;
    position: relative;
    z-index: 1
}

.partner-card {
    background: #fff;
    border: 1px solid #f0dfdf;
    border-radius: 11px;
    overflow: hidden;
    transition: transform .4s, box-shadow .4s
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 23px 45px rgba(89, 33, 43, .13)
}

.partner-image {
    height: 215px;
    position: relative;
    overflow: hidden;
    background: #f5eeee
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1)
}

.partner-card:hover .partner-image img {
    transform: scale(1.08)
}

.partner-image span {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--red);
    font: 800 11px 'Manrope';
    box-shadow: 0 6px 16px rgba(0, 0, 0, .1)
}

.partner-card > div:last-child {
    padding: 22px 23px 25px
}

.partner-card h3 {
    font-size: 19px;
    margin-bottom: 8px
}

.partner-card p {
    font-size: 12px;
    line-height: 1.7;
    color: #7a7e88;
    margin: 0
}

.about-journey {
    padding-top: 80px;
    padding-bottom: 100px;
    background: transparent;
    position: relative;
    overflow: hidden
}

.journey-heading {
    margin-bottom: 50px
}

.journey-heading h2 {
    font-size: clamp(24px, 3.2vw, 38px);
    margin-top: 10px;
    margin-bottom: 0
}

.about-journey .journey-track {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 24px;
    position: relative
}

.about-journey .journey-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    padding: 22px 20px 28px;
    background: #fff;
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.about-journey .journey-step:hover {
    border-color: rgba(210, 36, 47, .35);
    box-shadow: 0 10px 26px rgba(210, 36, 47, .1);
    transform: translateY(-3px)
}

.about-journey .journey-icon {
    flex: none;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 2;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
    transition: transform .35s
}

.about-journey .journey-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain
}

.about-journey .journey-icon--c1 {
    background: rgba(210, 36, 47, .12)
}

.about-journey .journey-icon--c2 {
    background: rgba(7, 93, 226, .12)
}

.about-journey .journey-icon--c3 {
    background: rgba(139, 92, 246, .12)
}

.about-journey .journey-icon--c4 {
    background: rgba(210, 36, 47, .12)
}

.about-journey .journey-step:hover .journey-icon {
    transform: translateY(-4px) scale(1.06)
}

.about-journey .journey-text {
    padding-top: 4px
}

.about-journey .journey-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 8px;
    letter-spacing: -.01em;
    line-height: 1.3
}

.about-journey .journey-text p {
    font-size: 12px;
    line-height: 1.7;
    color: #6a707c;
    margin: 0;
    max-width: 200px
}

/* Vertical dashed line from icon center down */
.about-journey .journey-step::after {
    content: '';
    position: absolute;
    left: 51px;
    top: 84px;
    bottom: 26px;
    width: 0;
    border-left: 1.5px dashed rgba(0, 0, 0, .15);
    pointer-events: none
}

/* Small red donut at bottom */
.about-journey .journey-dot {
    position: absolute;
    left: 42px;
    bottom: -10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(210, 36, 47, 1);
    z-index: 3;
    transition: transform .3s
}

.about-journey .journey-step:hover .journey-dot {
    transform: scale(1.15)
}

.about-journey .journey-line {
    display: none
}

/* old journey (kept for legacy sections) */
.journey {
    padding-top: 120px;
    padding-bottom: 135px;
    background: #fff
}

.journey-track {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 22px;
    position: relative
}

.journey-line {
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(210, 36, 47, .15), var(--red), rgba(7, 93, 226, .22));
    transform-origin: left;
    animation: journeyLine 1.6s .35s both
}

.journey-step {
    position: relative;
    z-index: 1;
    text-align: center
}

.journey-icon {
    margin: 0 auto 23px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #f0d8d9;
    box-shadow: 0 9px 24px rgba(73, 37, 46, .09);
    transition: transform .4s, box-shadow .4s
}

.journey-step:hover .journey-icon {
    transform: translateY(-8px) rotate(7deg);
    box-shadow: 0 18px 32px rgba(210, 36, 47, .18)
}

.journey-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain
}

.journey-step > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--red);
    font: 800 10px 'Manrope';
    letter-spacing: .1em
}

.journey-step h3 {
    font-size: 17px;
    margin-bottom: 8px
}

.journey-step p {
    max-width: 190px;
    margin: 0 auto;
    color: #7a7e88;
    font-size: 12px;
    line-height: 1.7
}

.about-cta {
    padding: 94px 0;
    background: linear-gradient(112deg, #071f68 0%, #075de2 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.about-cta:before {
    content: '';
    position: absolute;
    right: -80px;
    top: -190px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 255, 255, .04), 0 0 0 74px rgba(255, 255, 255, .035)
}

.about-cta:after {
    content: 'NEXT';
    position: absolute;
    right: 10%;
    bottom: -82px;
    color: rgba(255, 255, 255, .06);
    font: 800 190px/1 'Manrope';
    letter-spacing: -.12em
}

.about-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px
}

.about-cta h2 {
    font-size: clamp(38px, 4.5vw, 58px);
    margin: 0
}

.about-cta h2 em {
    color: #ff7f84
}

.about-cta .button {
    flex: none
}

@keyframes aboutOrbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes aboutPulse {
    0%, 100% {
        transform: scale(.94);
        opacity: .55
    }
    50% {
        transform: scale(1.04);
        opacity: 1
    }
}

@keyframes aboutDot {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.55)
    }
}

@keyframes aboutFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-11px)
    }
}

@keyframes journeyLine {
    from {
        transform: scaleX(0);
        opacity: 0
    }
    to {
        transform: scaleX(1);
        opacity: 1
    }
}

@media (max-width: 900px) {
    .about-page {
        padding-top: 68px
    }

    .about-page .site-header {
        height: 68px
    }

    .about-hero {
        height: 390px;
        min-height: 390px
    }

    .about-hero-shade {
        background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .88) 57%, rgba(255, 255, 255, .35) 100%)
    }

    .about-hero-art {
        right: -50px;
        top: 21%;
        opacity: .72
    }

    .about-intro-grid, .about-message-grid {
        grid-template-columns:1fr;
        gap: 54px
    }

    .about-intro-block {
        padding-top: 60px;
        padding-bottom: 30px
    }

    .about-intro-grid {
        gap: 0;
        min-height: auto
    }

    .about-intro-image img {
        height: 320px
    }

    .about-intro-copy {
        padding: 38px 30px
    }

    .about-intro-copy h3 {
        font-size: 24px
    }

    .intro-mission {
        padding: 15px 18px
    }

    .about-journey {
        padding-top: 60px;
        padding-bottom: 80px
    }

    .journey-heading {
        margin-bottom: 40px
    }

    .about-journey .journey-track {
        grid-template-columns:repeat(2, 1fr);
        gap: 32px 20px
    }

    .about-journey .journey-step::after {
        display: none
    }

    .about-journey .journey-dot {
        display: none
    }

    .about-left-image {
        max-width: 650px;
        width: 100%;
        margin: 0 auto
    }

    .people-portrait {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
        min-height: 500px
    }

    .people-portrait > img {
        height: 480px
    }

    .about-message-copy {
        max-width: 670px
    }

    .value-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .partner-grid {
        grid-template-columns:repeat(3, 1fr);
        gap: 13px
    }

    .partner-image {
        height: 180px
    }

    .partner-card > div:last-child {
        padding: 18px
    }

    .journey-track {
        gap: 12px
    }

    .journey-line {
        left: 10%;
        right: 10%
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 38px, 1180px)
    }

    .about-hero {
        min-height: 500px;
        height: 500px
    }

    .about-hero-image {
        object-position: 63% center
    }

    .about-hero-content {
        padding: 0
    }

    .about-hero-content h1 {
        font-size: 47px
    }

    .about-hero-content > p:not(.eyebrow) {
        font-size: 14px;
        line-height: 1.7;
        max-width: 330px
    }

    .about-hero-art {
        width: 180px;
        height: 180px;
        right: -48px;
        top: 14%;
        opacity: .55
    }

    .about-hero-mark {
        right: 18px;
        bottom: 25px;
        font-size: 8px
    }

    .about-intro-block {
        padding-top: 40px
    }

    .values, .about-message, .partner-section, .journey {
        padding-top: 84px;
        padding-bottom: 90px
    }

    .about-intro-heading {
        margin-bottom: 40px
    }

    .about-intro-heading h2, .about-message-copy h2 {
        font-size: 41px
    }

    .about-left-image {
        min-height: 330px;
        padding: 10px 10px 0 0
    }

    .about-left-image > img {
        height: 320px
    }

    .image-stamp {
        width: 88px;
        height: 88px;
        right: -12px;
        top: 35px;
        font-size: 8px
    }

    .image-stamp b {
        font-size: 9px
    }

    .image-frame-accent--one {
        left: -8px;
        top: 23px;
        width: 90px;
        height: 90px
    }

    .image-frame-accent--two {
        right: -5px;
        bottom: 0;
        width: 125px;
        height: 125px
    }

    .about-metrics {
        gap: 8px;
        margin-top: 26px;
        padding-top: 19px
    }

    .about-metrics > div {
        gap: 6px;
        padding-right: 8px;
        margin-right: 8px
    }

    .about-metrics strong {
        font-size: 24px
    }

    .about-metrics small {
        font-size: 8px
    }

    .values .section-heading, .partner-section .section-heading, .journey .section-heading {
        display: block
    }

    .heading-note {
        margin-top: 22px;
        max-width: 450px
    }

    .value-grid, .partner-grid {
        grid-template-columns:1fr
    }

    .value-card {
        min-height: 220px;
        padding: 24px
    }

    .partner-image {
        height: 220px
    }

    .journey-track {
        grid-template-columns:1fr 1fr;
        gap: 38px 13px
    }

    .journey-line {
        top: 37px;
        left: 25%;
        right: 25%;
        height: calc(100% - 74px);
        width: 2px;
        transform: scaleY(0);
        transform-origin: top;
        animation: journeyLineVertical 1.6s .35s both;
        background: linear-gradient(180deg, rgba(210, 36, 47, .17), var(--red), rgba(7, 93, 226, .2))
    }

    .journey-icon {
        width: 73px;
        height: 73px;
        margin-bottom: 17px
    }

    .journey-icon img {
        width: 43px;
        height: 43px
    }

    .journey-step h3 {
        font-size: 15px
    }

    .journey-step p {
        font-size: 11px
    }

    .about-cta {
        padding: 75px 0
    }

    .about-cta-inner {
        display: block
    }

    .about-cta .button {
        margin-top: 28px
    }

    .about-cta:after {
        font-size: 105px;
        right: 4%;
        bottom: -30px
    }
}

@keyframes journeyLineVertical {
    from {
        transform: scaleY(0);
        opacity: 0
    }
    to {
        transform: scaleY(1);
        opacity: 1
    }
}

/* =========================================================
   About company block + drivers (Thai sections)
   ========================================================= */
.about-company-block {
    padding-top: 120px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, rgba(253, 232, 234, 1) 0%, rgba(255, 255, 255, 1) 100%)
}

.company-top {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 48px
}

.company-stats h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin-bottom: 28px;
    line-height: 1.3
}

.company-stat-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.company-stat {
    flex: 1;
    min-width: 130px;
    padding: 22px 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(251, 250, 255, 1);
    text-align: center;
    transition: transform .3s, box-shadow .3s
}

.company-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(177, 48, 59, .1)
}

.company-stat-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin: 0 auto 10px
}

.company-stat strong {
    display: block;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    margin-bottom: 6px
}

.company-stat span {
    font-size: 14px;
    color: var(--red);
    font-weight: 800
}

.company-desc {
    padding: 28px;
    border-radius: 16px;
    background: #fff8f8;
    border: 1px solid #f6dfdf
}

.company-desc h3 {
    font-size: 16px;
    color: var(--red);
    margin-bottom: 14px;
    font-weight: 800
}

.company-desc p {
    font-size: 13px;
    color: #5a5f6a;
    line-height: 1.8;
    margin-bottom: 10px
}

.company-desc p:last-child {
    margin-bottom: 0
}

.company-partner-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.partner-media {
    border-radius: 14px;
    overflow: hidden;
    background: #f4f4f4
}

.partner-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s
}

.partner-media:hover img {
    transform: scale(1.06)
}

.about-drivers {
    padding-top: 70px;
    padding-bottom: 130px;
    background: linear-gradient(135deg, #fff6f6 0%, #fff 70%)
}

.drivers-heading {
    margin-bottom: 50px
}

.drivers-heading h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    margin-bottom: 0
}

.drivers-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 22px
}

.driver-item {
    padding: 28px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f2e2e3;
    text-align: center;
    transition: transform .35s, box-shadow .35s, border-color .35s
}

.driver-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(177, 48, 59, .1);
    border-color: #ecc0c2
}

.driver-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: #fff1f1;
    display: grid;
    place-items: center
}

.driver-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain
}

.driver-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--ink);
    font-weight: 700
}

.driver-item p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0
}

@media (max-width: 900px) {
    .about-company-block {
        padding-top: 80px
    }

    .company-top {
        grid-template-columns:1fr;
        gap: 36px
    }

    .company-stats h2 {
        margin-bottom: 20px
    }

    .company-stat-row {
        gap: 12px
    }

    .company-stat {
        min-width: 110px;
        padding: 18px 14px
    }

    .company-partner-grid {
        grid-template-columns:repeat(3, 1fr);
        gap: 12px
    }

    .partner-media img {
        height: 160px
    }

    .about-drivers {
        padding-top: 50px;
        padding-bottom: 90px
    }

    .drivers-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 16px
    }
}

@media (max-width: 620px) {
    .about-company-block {
        padding-top: 60px;
        padding-bottom: 20px
    }

    .company-stats h2 {
        font-size: 24px
    }

    .company-stat-row {
        flex-wrap: nowrap;
        gap: 8px
    }

    .company-stat {
        min-width: 0;
        padding: 14px 10px
    }

    .company-stat strong {
        font-size: 20px
    }

    .company-stat span {
        font-size: 10px
    }

    .company-desc {
        padding: 20px
    }

    .company-partner-grid {
        grid-template-columns:1fr
    }

    .partner-media img {
        height: 180px
    }

    .about-drivers {
        padding-bottom: 70px
    }

    .drivers-heading h2 {
        font-size: 22px
    }

    .drivers-grid {
        grid-template-columns:1fr;
        gap: 14px
    }

    .driver-item {
        padding: 22px 18px
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-art, .about-hero-art:after, .about-hero-art span, .image-stamp, .people-portrait > img, .portrait-note, .portrait-shape {
        animation: none
    }

    .journey-line {
        animation: none
    }

    .value-card, .partner-card, .journey-icon {
        transition: none
    }
}

/* =========================================================
   Contact page — focused enquiry experience
   ========================================================= */
.contact-page {
    padding-top: 78px;
    background: #fff
}

.contact-page .site-header {
    height: 78px
}

.contact-hero {
    height: min(365px, calc(100vh - 78px));
    min-height: 365px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #e8f0ff
}

.contact-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.contact-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .88) 42%, rgba(255, 255, 255, .25) 100%)
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 670px;
    margin-left: max(28px, calc((100% - 1180px) / 2));
    padding: 0 28px
}

.contact-hero-content h1 {
    font-size: clamp(42px, 5.5vw, 70px);
    color: #151b2b;
    margin-bottom: 17px
}

.contact-hero-content h1 em {
    font-style: normal;
    color: var(--red)
}

.contact-hero-content > p:not(.eyebrow) {
    max-width: 510px;
    font-size: 14px;
    line-height: 1.75;
    color: #596477;
    margin: 0
}

.contact-hero-mark {
    position: absolute;
    right: 5.5%;
    bottom: 10%;
    z-index: 2;
    color: rgba(7, 31, 104, .33);
    font: 800 10px 'Manrope';
    letter-spacing: .28em;
    writing-mode: vertical-rl;
    transform: rotate(180deg)
}

.contact-hero-art {
    position: absolute;
    right: 14%;
    top: 18%;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(7, 31, 104, .16);
    border-radius: 50%;
    animation: contactOrbit 15s linear infinite
}

.contact-hero-art:before, .contact-hero-art:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    inset: 17px;
    border: 1px dashed rgba(210, 36, 47, .3)
}

.contact-hero-art:after {
    inset: 49px;
    border-style: solid;
    border-color: rgba(7, 31, 104, .12);
    animation: contactPulse 4s ease-in-out infinite
}

.contact-hero-art span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(210, 36, 47, .12);
    animation: contactBlink 2.7s ease-in-out infinite
}

.contact-hero-art span:nth-child(1) {
    left: 15%;
    top: 43%
}

.contact-hero-art span:nth-child(2) {
    right: 16%;
    top: 16%;
    background: #075de2;
    animation-delay: .8s
}

.contact-hero-art span:nth-child(3) {
    right: 27%;
    bottom: 12%;
    background: #ff9ea4;
    animation-delay: 1.5s
}

.contact-section {
    padding-top: 93px;
    padding-bottom: 110px
}

.contact-heading {
    max-width: 880px;
    margin-bottom: 39px
}

.contact-heading h2 {
    font-size: clamp(36px, 4.7vw, 58px);
    margin-bottom: 13px
}

.contact-heading h2 em {
    font-style: normal;
    color: var(--red)
}

.contact-heading > p:last-child {
    max-width: 790px;
    color: #747883;
    font-size: 13px;
    line-height: 1.8;
    margin: 0
}

.contact-panel {
    display: grid;
    grid-template-columns:minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 0;
    min-height: 570px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 19px 50px rgba(20, 34, 71, .1);
    border: 1px solid #eef0f5;
    overflow: hidden
}

.contact-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 40px 40px 34px;
    color: #fff;
    background: linear-gradient(145deg, #d6e5ff 0%, #d4cefa 44%, #ffd9df 100%)
}

.contact-card:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(8, 42, 126, .93), rgba(35, 91, 193, .84) 47%, rgba(210, 36, 47, .7));
    z-index: -2
}

.contact-card:after {
    content: '';
    position: absolute;
    left: -105px;
    bottom: -145px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(255, 255, 255, .05), 0 0 0 63px rgba(255, 255, 255, .035);
    z-index: -1
}

.contact-card-glow {
    position: absolute;
    right: -70px;
    top: -65px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
    filter: blur(2px);
    z-index: -1
}

.contact-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 72px;
    color: rgba(255, 255, 255, .78);
    font: 800 10px 'Manrope';
    letter-spacing: .18em
}

.contact-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff8790;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .12), 0 0 18px #ff8790
}

.contact-card h3 {
    font-size: 29px;
    line-height: 1.16;
    letter-spacing: -.055em;
    margin-bottom: 17px
}

.contact-card h3 em {
    font-style: normal;
    color: #ffadb2
}

.contact-card-intro {
    max-width: 310px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 37px
}

.contact-details {
    display: grid;
    gap: 24px
}

.contact-detail {
    display: flex;
    gap: 13px;
    align-items: flex-start
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(5, 25, 83, .2)
}

.contact-detail-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain
}

.contact-detail > div:last-child {
    padding-top: 1px
}

.contact-detail span {
    display: block;
    margin-bottom: 4px;
    font: 800 10px 'Manrope';
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff
}

.contact-detail a, .contact-detail p {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1.65;
    margin: 0
}

.contact-detail a:hover {
    color: #ffdce0
}

.contact-detail small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    line-height: 1.4
}

.contact-card-orbit {
    position: absolute;
    right: 14%;
    bottom: 8%;
    width: 88px;
    height: 88px;
    border: 1px dashed rgba(255, 255, 255, .32);
    border-radius: 50%;
    animation: contactOrbit 10s linear infinite reverse
}

.contact-card-orbit:after {
    content: '';
    position: absolute;
    left: 50%;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px #fff
}

/* New form structure (flat label + input) */
.contact-form {
    padding: 42px 48px 38px;
    background: #fff
}

.form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 26px 22px
}

.form-field {
    display: flex;
    flex-direction: column
}

.form-field label {
    color: #303743;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px
}

.form-field input, .form-field textarea, .form-field select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dfe2e8;
    border-radius: 0;
    padding: 10px 0 12px;
    color: #1b2336;
    background: transparent;
    font: 14px 'DM Sans';
    outline: none;
    transition: border-color .25s, box-shadow .25s
}
.form-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='none' stroke='%23303743' stroke-width='1.5' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 24px;
    cursor: pointer
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.6
}

.form-field input::placeholder, .form-field textarea::placeholder {
    color: #b8bdc7
}

.form-field input:focus, .form-field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 2px 0 rgba(210, 36, 47, .12)
}

.form-full {
    grid-column: 1/-1
}

.form-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px
}

.form-submit-btn {
    position: relative;
    min-width: 200px;
    border: 0;
    cursor: pointer;
    padding: 14px 42px;
    border-radius: 999px;
    background: rgba(210, 36, 47, 1);
    color: #fff;
    font: 800 14px 'Manrope';
    letter-spacing: .03em;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(210, 36, 47, .35), inset 0 1px 0 rgba(255, 255, 255, .3);
    transition: transform .3s, box-shadow .3s, filter .3s
}

.form-submit-btn:hover {
    transform: translateY(-3px) scale(1.03);
    filter: saturate(1.12) brightness(1.05);
    box-shadow: 0 14px 30px rgba(210, 36, 47, .45), 0 0 0 7px rgba(210, 36, 47, .08)
}

.form-submit-btn:active {
    transform: translateY(0) scale(.98)
}

.form-submit-btn:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .8s
}

.form-submit-btn:hover:before {
    transform: translateX(100%)
}

.contact-form.validation-shake {
    animation: txFormShake .55s cubic-bezier(.36, .07, .19, .97)
}

.contact-form .form-field.is-invalid input,
.contact-form .form-field.is-invalid textarea {
    border-color: rgba(210, 36, 47, 1);
    box-shadow: 0 3px 0 rgba(210, 36, 47, .15);
    animation: txFieldPulse 1.25s ease-in-out 2
}

/* =========================================================
   炫酷错误/成功提示框
   ========================================================= */
.tx-toast-mask {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 20, .55);
    backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
    display: flex;
    align-items: center;
    justify-content: center
}

.tx-toast-mask.show {
    opacity: 1;
    visibility: visible
}

.tx-toast {
    position: relative;
    width: min(720px, 92vw);
    min-height: 380px;
    border-radius: 24px;
    padding: 44px 42px 38px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(.85);
    transition: opacity .5s cubic-bezier(.22, 1.6, .36, 1), transform .5s cubic-bezier(.22, 1.6, .36, 1)
}

.tx-toast-mask.show .tx-toast {
    opacity: 1;
    transform: translateY(0) scale(1)
}

/* Error toast */
.tx-toast.error {
    background: rgba(254, 219, 229, 1);
    border: 2px solid rgba(210, 36, 47, .25);
    box-shadow: 0 24px 60px rgba(177, 48, 59, .35), inset 0 0 80px rgba(255, 170, 178, .4)
}

.tx-toast.error .tx-toast-title {
    color: #9f1f2a
}

.tx-toast.error .tx-toast-body {
    color: #4a242a
}

.tx-toast.error .tx-toast-shine {
    background: linear-gradient(115deg, transparent 30%, rgba(210, 36, 47, .25) 50%, transparent 70%)
}

/* Success toast */
.tx-toast.success {
    background: rgba(195, 214, 253, 1);
    border: 2px solid rgba(41, 96, 190, .28);
    box-shadow: 0 24px 70px rgba(37, 83, 166, .38), inset 0 0 90px rgba(255, 255, 255, .5)
}

.tx-toast.success .tx-toast-title {
    color: #173f80
}

.tx-toast.success .tx-toast-body {
    color: #29466f
}

.tx-toast.success .tx-toast-shine {
    background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .72) 50%, transparent 70%)
}

/* Toast inner */
.tx-toast-shape-dot {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    animation: txFloat 5s ease-in-out infinite
}

.tx-toast.error .tx-toast-shape-dot {
    background: rgba(210, 36, 47, .18)
}

.tx-toast.success .tx-toast-shape-dot {
    background: rgba(28, 84, 176, .16)
}

.tx-toast-shape-dot--1 {
    width: 220px;
    height: 220px;
    top: -70px;
    right: -50px;
    animation-delay: .2s
}

.tx-toast-shape-dot--2 {
    width: 140px;
    height: 140px;
    bottom: -40px;
    left: -30px;
    animation-delay: 1.4s
}

.tx-toast-shape-dot--3 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 12px;
    animation-delay: .7s
}

.tx-toast-shine {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60%;
    transform: translateX(-130%);
    animation: txShine 3.2s ease-in-out infinite;
    pointer-events: none
}

.tx-toast-rings {
    position: absolute;
    inset: -6px;
    border-radius: 28px;
    border: 2px solid transparent;
    pointer-events: none
}

.tx-toast-rings::before, .tx-toast-rings::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid;
    animation: txRingPulse 2.2s ease-out infinite
}

.tx-toast.error .tx-toast-rings::before, .tx-toast.error .tx-toast-rings::after {
    border-color: rgba(210, 36, 47, .35)
}

.tx-toast.success .tx-toast-rings::before, .tx-toast.success .tx-toast-rings::after {
    border-color: rgba(28, 84, 176, .34)
}

.tx-toast-rings::after {
    animation-delay: 1.1s
}

.tx-toast-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px
}

.tx-toast-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    animation: txBounceIn .7s cubic-bezier(.22, 1.6, .36, 1) .15s both
}

.tx-toast.error .tx-toast-icon-wrap {
    background: #fff;
    box-shadow: 0 10px 28px rgba(210, 36, 47, .35)
}

.tx-toast.success .tx-toast-icon-wrap {
    background: #fff;
    box-shadow: 0 10px 30px rgba(34, 82, 164, .35), 0 0 0 10px rgba(255, 255, 255, .24)
}

.tx-toast-icon-wrap svg {
    width: 50px;
    height: 50px;
    overflow: visible
}

.tx-toast.error .tx-toast-icon-wrap svg circle {
    animation: txErrorBeat 1.2s ease-in-out infinite
}

.tx-toast.error .tx-toast-icon-wrap svg line {
    stroke-dasharray: 50;
    stroke-dashoffset: 100;
    animation: txDrawLine .6s ease-out .2s forwards
}

.tx-toast.success .tx-toast-icon-wrap svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: txDrawCheck .7s cubic-bezier(.65, 0, .45, 1) .2s forwards
}

.tx-toast-title {
    font-size: clamp(22px, 3.4vw, 34px);
    font-weight: 800;
    letter-spacing: -.03em;
    animation: txTitleIn .6s ease-out .35s both
}

.tx-toast-body {
    font-size: 14px;
    line-height: 1.85;
    max-width: 480px;
    animation: txBodyIn .6s ease-out .5s both
}

.tx-toast-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    text-align: left;
    max-width: 440px
}

.tx-toast-list li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 13px;
    line-height: 1.6;
    animation: txBodyIn .5s ease-out both
}

.tx-toast-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 800
}

.tx-toast-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 700;
    z-index: 3;
    transition: transform .25s, background .25s
}

.tx-toast.error .tx-toast-close {
    background: rgba(210, 36, 47, .15);
    color: #9f1f2a
}

.tx-toast.success .tx-toast-close {
    background: rgba(31, 76, 151, .14);
    color: #173f80
}

.tx-toast-close:hover {
    transform: rotate(90deg) scale(1.1)
}

.tx-toast-btn {
    position: relative;
    margin-top: 6px;
    padding: 12px 38px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font: 800 14px 'Manrope';
    letter-spacing: .04em;
    color: #fff;
    overflow: hidden;
    animation: txBodyIn .6s ease-out .65s both
}

.tx-toast.error .tx-toast-btn {
    background: linear-gradient(120deg, #d2242f, #e84b54);
    box-shadow: 0 8px 22px rgba(210, 36, 47, .4)
}

.tx-toast.success .tx-toast-btn {
    background: linear-gradient(120deg, #0a6cff, #0050d0);
    box-shadow: 0 8px 22px rgba(0, 80, 208, .45)
}

.tx-toast-btn:hover {
    transform: translateY(-2px) scale(1.03)
}

.tx-toast-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .8s
}

.tx-toast-btn:hover::before {
    transform: translateX(100%)
}

/* Particles */
.tx-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1
}

.tx-toast.error .tx-particle {
    background: rgba(210, 36, 47, .5)
}

.tx-toast.success .tx-particle {
    background: rgba(24, 78, 170, .52)
}

@keyframes txFormShake {
    10%, 90% { transform: translateX(-2px) }
    20%, 80% { transform: translateX(5px) }
    30%, 50%, 70% { transform: translateX(-8px) }
    40%, 60% { transform: translateX(8px) }
}

@keyframes txFieldPulse {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(210, 36, 47, 0)) }
    50% { filter: drop-shadow(0 5px 8px rgba(210, 36, 47, .24)) }
}

/* Keyframes */
@keyframes txFloat {
    0%, 100% {
        transform: translateY(0) translateX(0)
    }
    50% {
        transform: translateY(-16px) translateX(10px)
    }
}

@keyframes txShine {
    0% {
        transform: translateX(-130%)
    }
    50%, 100% {
        transform: translateX(230%)
    }
}

@keyframes txRingPulse {
    0% {
        transform: scale(1);
        opacity: .7
    }
    100% {
        transform: scale(1.18);
        opacity: 0
    }
}

@keyframes txBounceIn {
    0% {
        opacity: 0;
        transform: scale(.3)
    }
    60% {
        opacity: 1;
        transform: scale(1.18)
    }
    100% {
        transform: scale(1)
    }
}

@keyframes txErrorBeat {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.15)
    }
}

@keyframes txDrawLine {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes txDrawCheck {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes txTitleIn {
    0% {
        opacity: 0;
        transform: translateY(12px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes txBodyIn {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes txParticleFlyUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
    100% {
        opacity: 0;
        transform: translateY(-140px) scale(.4)
    }
}

@keyframes txParticleFlyDown {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
    100% {
        opacity: 0;
        transform: translateY(140px) scale(.4)
    }
}

.contact-note-section {
    padding: 0 0 116px
}

.contact-note {
    display: grid;
    grid-template-columns:74px minmax(0, 1fr) minmax(260px, .72fr);
    align-items: center;
    gap: 25px;
    padding: 32px 38px;
    border: 1px solid #ebedf3;
    border-radius: 12px;
    background: linear-gradient(110deg, #f8faff, #fff);
    position: relative;
    overflow: hidden
}

.contact-note:after {
    content: '';
    position: absolute;
    right: -45px;
    top: -110px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(7, 93, 226, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 21px rgba(7, 93, 226, .03)
}

.contact-note-number {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eaf1ff;
    color: var(--blue);
    font: 800 14px 'Manrope'
}

.contact-note .eyebrow {
    margin-bottom: 10px
}

.contact-note h2 {
    font-size: clamp(25px, 3vw, 37px);
    margin: 0
}

.contact-note h2 em {
    font-style: normal;
    color: var(--red)
}

.contact-note > p:last-child {
    position: relative;
    z-index: 1;
    color: #747984;
    font-size: 12px;
    line-height: 1.75;
    margin: 0
}

@keyframes contactOrbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes contactPulse {
    0%, 100% {
        transform: scale(.92);
        opacity: .5
    }
    50% {
        transform: scale(1.06);
        opacity: 1
    }
}

@keyframes contactBlink {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.5)
    }
}

@media (max-width: 900px) {
    .contact-page {
        padding-top: 68px
    }

    .contact-page .site-header {
        height: 68px
    }

    .contact-hero {
        height: 390px;
        min-height: 390px
    }

    .contact-hero-shade {
        background: linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .82) 58%, rgba(255, 255, 255, .26) 100%)
    }

    .contact-hero-art {
        right: 3%;
        opacity: .65
    }

    .contact-panel {
        grid-template-columns:1fr
    }

    .contact-card {
        min-height: 485px
    }

    .contact-form {
        padding: 37px 38px
    }

    .contact-note {
        grid-template-columns:60px 1fr;
        gap: 20px
    }

    .contact-note > p:last-child {
        grid-column: 2
    }

    .contact-note-number {
        width: 53px;
        height: 53px
    }
}

@media (max-width: 620px) {
    .contact-hero {
        min-height: 500px;
        height: 500px
    }

    .contact-hero-image {
        object-position: 62% center
    }

    .contact-hero-content {
        padding: 0
    }

    .contact-hero-content h1 {
        font-size: 45px
    }

    .contact-hero-content > p:not(.eyebrow) {
        font-size: 13px;
        max-width: 330px
    }

    .contact-hero-art {
        width: 150px;
        height: 150px;
        right: -36px;
        top: 13%;
        opacity: .5
    }

    .contact-hero-mark {
        right: 17px;
        bottom: 22px;
        font-size: 8px
    }

    .contact-section {
        padding-top: 80px;
        padding-bottom: 82px
    }

    .contact-heading h2 {
        font-size: 40px
    }

    .contact-panel {
        border-radius: 14px
    }

    .contact-card {
        padding: 30px 25px 31px;
        min-height: 500px
    }

    .contact-card-top {
        margin-bottom: 55px
    }

    .contact-card h3 {
        font-size: 28px
    }

    .contact-form {
        padding: 30px 24px
    }

    .form-grid {
        grid-template-columns:1fr;
        gap: 21px
    }

    .form-full {
        grid-column: auto
    }

    .form-topline {
        display: block;
        line-height: 1.6
    }

    .form-required {
        display: block;
        margin-top: 4px
    }

    .form-bottom {
        display: block;
        margin-top: 27px
    }

    .form-bottom p {
        margin-bottom: 19px
    }

    .form-bottom .button {
        width: 100%;
        justify-content: center
    }

    .contact-note-section {
        padding-bottom: 82px
    }

    .contact-note {
        grid-template-columns:1fr;
        gap: 16px;
        padding: 25px
    }

    .contact-note > p:last-child {
        grid-column: auto
    }

    .contact-note-number {
        width: 48px;
        height: 48px
    }

    .contact-note h2 {
        font-size: 29px
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-hero-art, .contact-hero-art:after, .contact-hero-art span, .contact-card-orbit {
        animation: none
    }

    .contact-form input, .contact-form textarea {
        transition: none
    }
}
.step-red{
    color: rgba(210, 36, 47, 1);
}