:root {
    --orange: #ff4d00;
    --ink: #111214;
    --muted: #65676b;
    --paper: #f3f4f5;
    --line: #d9dadc;
    --font-geist: "Verdana";
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-geist), Arial, sans-serif;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
.shell {
    width: min(1240px, calc(100% - 48px));
    margin: auto;
}
.nav {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243, 244, 245, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.logo {
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -1.4px;
}
.logo span,
.orange {
    color: var(--orange);
}
nav {
    display: flex;
    gap: 38px;
    font-size: 14px;
    color: #45474a;
}
nav a {
    position: relative;
}
nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--orange);
    transition: right 0.3s ease;
}
nav a:hover:after {
    right: 0;
}
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--orange);
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    padding: 17px 27px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.35s transform, 0.35s background, 0.35s box-shadow;
}
.button:hover {
    transform: translateY(-4px);
    background: #e94600;
    box-shadow: 0 16px 30px rgba(255, 77, 0, 0.22);
}
.button.small {
    padding: 12px 22px;
}
.button.ghost {
    background: transparent;
    border-color: #c7c8ca;
    color: #111;
}
.button.ghost:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: none;
}
.hero {
    padding: 100px 0 90px;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
    color: #777b80;
    margin: 0 0 30px;
}
.hero .eyebrow {
    animation: rise 0.8s 0.05s both;
}
.hero h1 {
    font-size: clamp(65px, 9vw, 132px);
    font-weight: 790;
    letter-spacing: -0.075em;
    line-height: 0.82;
    margin: 0;
    animation: rise 0.9s 0.12s both;
}
.hero-row {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: end;
    margin: 55px 0;
    animation: rise 0.9s 0.25s both;
}
.intro {
    max-width: 570px;
    color: #52555a;
    font-size: 20px;
    line-height: 1.55;
    margin: 0;
}
.actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}
.map-card {
    --mx: 50%;
    --my: 50%;
    height: 540px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #ddd;
    border: 1px solid #d2d3d4;
    box-shadow: 0 35px 80px rgba(29, 31, 34, 0.12);
    animation: mapIn 1.1s 0.35s both;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.map-card:hover {
    transform: translateY(-8px) scale(1.006);
    box-shadow: 0 48px 100px rgba(29, 31, 34, 0.2);
}
.map-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle 220px at var(--mx) var(--my),
            rgba(255, 255, 255, 0.25),
            transparent 70%
    );
    pointer-events: none;
}
.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.72) contrast(0.94);
}
.map-wash {
    position: absolute;
    inset: 0;
    background: rgba(244, 241, 230, 0.25);
    pointer-events: none;
}
.routes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.routes polyline {
    fill: none;
    stroke: var(--orange);
    stroke-width: 7;
    stroke-linejoin: round;
    stroke-linecap: round;
    stroke-dasharray: 1800;
    animation: route 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 3px 5px rgba(255, 77, 0, 0.25));
}
@keyframes route {
    from {
        stroke-dashoffset: 600;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes mapIn {
    from {
        opacity: 0;
        transform: translateY(55px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.pin {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #0bc4e8;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 12px #008bad;
    animation: pulse 2.2s ease-in-out infinite;
}
.pin:after {
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(11, 196, 232, 0.7);
    border-radius: 50%;
    animation: ping 2.2s infinite;
}
.p1 {
    left: 10%;
    top: 70%;
}
.p2 {
    left: 30%;
    top: 25%;
    animation-delay: 0.3s;
}
.p3 {
    left: 53%;
    top: 55%;
    animation-delay: 0.6s;
}
.p4 {
    left: 70%;
    top: 20%;
    animation-delay: 0.9s;
}
.p5 {
    left: 87%;
    top: 52%;
    animation-delay: 1.2s;
}
@keyframes pulse {
    50% {
        transform: scale(1.18);
    }
}
@keyframes ping {
    to {
        transform: scale(1.7);
        opacity: 0;
    }
}
.map-label,
.map-status {
    position: absolute;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.map-label {
    right: 22px;
    top: 22px;
}
.map-status {
    left: 22px;
    bottom: 22px;
}
.section {
    padding: 125px 0;
}
.section-heading {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 90px;
    align-items: end;
}
.section h2,
.dark h2,
.demo h2 {
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 760;
    letter-spacing: -0.06em;
    line-height: 0.95;
    margin: 0;
}
.section-heading > p,
.sector-intro,
.demo-grid > div > p {
    font-size: 19px;
    color: #62656a;
    line-height: 1.6;
    margin: 0;
}
.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 90px;
    border-top: 1px solid var(--line);
}
.steps article {
    padding: 34px 28px 10px 0;
    border-right: 1px solid var(--line);
    transition: background 0.35s, transform 0.35s;
}
.steps article + article {
    padding-left: 28px;
}
.steps article:last-child {
    border-right: 0;
}
.steps article:hover {
    transform: translateY(-10px);
}
.steps b,
.sector-grid span {
    color: var(--orange);
    font-size: 12px;
}
.steps h3,
.sector-grid h3 {
    font-size: 22px;
    letter-spacing: -0.03em;
    margin: 40px 0 14px;
}
.steps p,
.sector-grid p {
    color: #686a6e;
    line-height: 1.5;
}
.dark {
    background: #101113;
    color: #f7f7f7;
    position: relative;
    overflow: hidden;
}
.dark:before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--orange);
    filter: blur(190px);
    opacity: 0.09;
    right: -200px;
    top: 10%;
}
.dark h2 {
    margin-bottom: 70px;
}
.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #333;
    position: relative;
}
.ai-grid article {
    padding: 48px;
    border-bottom: 1px solid #333;
    position: relative;
    overflow: hidden;
    transition: background 0.45s, transform 0.45s;
}
.ai-grid article:after {
    content: "↗";
    position: absolute;
    right: 35px;
    top: 30px;
    font-size: 32px;
    color: #fff;
    opacity: 0;
    transform: translate(-12px, 12px);
    transition: 0.4s;
}
.ai-grid article:hover {
    background: #18191c;
    transform: translateY(-5px);
}
.ai-grid article:hover:after {
    opacity: 1;
    transform: none;
}
.ai-grid article:nth-child(odd) {
    border-right: 1px solid #333;
}
.ai-grid article.wide {
    grid-column: 1/-1;
    border-right: 0;
    background: linear-gradient(110deg, rgba(255, 77, 0, 0.14), transparent 60%);
}
.ai-grid article > span {
    color: var(--orange);
    font-size: 12px;
    letter-spacing: 0.15em;
}
.ai-grid h3 {
    font-size: 30px;
    margin: 28px 0 50px;
}
.ai-grid h4 {
    font-size: 19px;
    margin: 0 0 12px;
}
.ai-grid p,
.ai-grid li {
    color: #a9aaad;
    line-height: 1.6;
}
.ai-grid ul {
    list-style: none;
    padding: 16px 0 0;
}
.ai-grid li {
    border-top: 1px solid #2d2e31;
    padding: 12px 0;
    transition: padding 0.3s, color 0.3s;
}
.ai-grid article:hover li {
    padding-left: 8px;
    color: #ddd;
}
.ai-grid li:before {
    content: "→";
    color: var(--orange);
    margin-right: 12px;
}
.feature-chips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 80px 0 100px;
    border-top: 1px solid var(--line);
}
.feature-chips span {
    padding: 25px 5px;
    border-bottom: 1px solid var(--line);
    transition: 0.3s padding, 0.3s color, 0.3s background;
}
.feature-chips span:hover {
    padding-left: 18px;
    color: var(--orange);
    background: #ececee;
}
.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--orange);
    color: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 28px 70px rgba(255, 77, 0, 0.24);
}
.metrics div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.35s;
}
.metrics div:hover {
    transform: translateY(-8px);
}
.metrics div:last-child {
    border: 0;
}
.metrics b {
    font-size: 48px;
    letter-spacing: -0.05em;
}
.metrics span {
    font-size: 13px;
    line-height: 1.4;
}
.sectors {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.sector-intro {
    margin-top: 45px;
}
.sector-grid {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}
.sector-grid article {
    padding: 25px;
    border-bottom: 1px solid var(--line);
    transition: 0.35s background, 0.35s transform;
}
.sector-grid article:hover {
    background: #fff;
    transform: scale(1.025);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}
.demo {
    padding: 125px 0;
    background: #dedfe1;
}
.demo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}
.demo h2 {
    margin: 0 0 35px;
}
.demo form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.demo label {
    font-size: 12px;
    color: #5d6064;
}
.demo input,
.demo textarea {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #aaa;
    background: transparent;
    padding: 13px 0;
    font: inherit;
    outline: none;
    transition: border 0.3s, background 0.3s;
}
.demo input:focus,
.demo textarea:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.25);
}
.full {
    grid-column: 1/-1;
}
.demo button {
    border: 0;
    cursor: pointer;
    margin-top: 15px;
}
.demo button:disabled {
    opacity: 0.55;
    cursor: default;
}
.demo .hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.form-status {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}
.form-status:empty {
    display: none;
}
.form-status.ok {
    color: #1c7a48;
}
.form-status.error {
    color: #c02516;
}
.demo button .spin {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 9px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.demo form.is-sent > label,
.demo form.is-sent > button,
.demo form.is-sent > .form-status {
    display: none;
}
.form-done {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 4px;
    padding: 54px 30px 46px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #c9cacc;
    animation: doneIn 0.5s ease both;
}
.form-done[hidden] {
    display: none;
}
.form-done-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 14px 28px rgba(255, 77, 0, 0.28);
    animation: donePop 0.45s cubic-bezier(0.2, 1.4, 0.4, 1) both;
}
.form-done-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.form-done-icon path {
    stroke-dasharray: 26;
    stroke-dashoffset: 26;
    animation: doneCheck 0.4s 0.25s ease forwards;
}
.form-done h3 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -0.02em;
}
.form-done p {
    margin: 0;
    max-width: 400px;
    font-size: 14px;
    line-height: 1.6;
    color: #5d6064;
}
.demo .form-done-again {
    margin-top: 22px;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-size: 13px;
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}
@keyframes doneIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes donePop {
    from {
        opacity: 0;
        transform: scale(0.4);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes doneCheck {
    to {
        stroke-dashoffset: 0;
    }
}
footer {
    background: #0f1012;
    color: #bbb;
    padding: 75px 0 25px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}
.light {
    color: #fff;
}
.footer-grid p {
    max-width: 380px;
    line-height: 1.6;
}
.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.copyright {
    border-top: 1px solid #292a2d;
    margin-top: 60px;
    padding-top: 22px;
    font-size: 12px;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
@media (max-width: 850px) {
    .shell {
        width: min(100% - 28px, 1240px);
    }
    nav {
        display: none;
    }
    .hero {
        padding-top: 70px;
    }
    .hero-row,
    .section-heading,
    .demo-grid,
    .sectors {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .map-card {
        height: 400px;
    }
    .steps,
    .metrics {
        grid-template-columns: 1fr 1fr;
    }
    .steps article {
        border-bottom: 1px solid var(--line);
    }
    .feature-chips {
        grid-template-columns: 1fr 1fr;
    }
    .metrics {
        gap: 30px;
    }
    .metrics div {
        border: 0;
        padding: 0;
    }
    .sector-grid {
        grid-column: 1;
    }
    .demo form {
        grid-template-columns: 1fr;
    }
    .full {
        grid-column: 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .ai-grid {
        grid-template-columns: 1fr;
    }
    .ai-grid article,
    .ai-grid article:nth-child(odd) {
        border-right: 0;
    }
    .ai-grid article.wide {
        grid-column: 1;
    }
    .hero h1 {
        line-height: 0.9;
    }
}
@media (max-width: 520px) {
    .hero {
        padding-top: 45px;
    }
    .hero h1 {
        font-size: 57px;
    }
    .intro {
        font-size: 17px;
    }
    .map-card {
        height: 330px;
    }
    .section {
        padding: 85px 0;
    }
    .steps,
    .metrics,
    .sector-grid {
        grid-template-columns: 1fr;
    }
    .feature-chips {
        grid-template-columns: 1fr;
    }
    .ai-grid article {
        padding: 35px 10px;
    }
    .metrics {
        padding: 34px;
    }
    .section h2,
    .dark h2,
    .demo h2 {
        font-size: 45px;
    }
    .map-status {
        display: none;
    }
}

/* Screenshot-matched content sections */
.reference-photo {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #202326;
}
.reference-photo img {
    position: absolute;
    max-width: none;
    height: auto;
}
.algorithm-grid {
    display: grid;
    grid-template-columns: 1fr 1.06fr;
    gap: 62px;
}
.algorithm-copy {
    padding-right: 0;
}
.algorithm-copy h2 {
    font-size: clamp(52px, 5vw, 70px);
    max-width: 535px;
}
.algorithm-intro {
    font-size: 19px;
    line-height: 1.55;
    color: #686a6e;
    max-width: 525px;
    margin: 28px 0 42px;
}
.algorithm-photo {
    width: 100%;
    height: 288px;
}
.algorithm-photo img {
    width: 250.5%;
    left: -11.8%;
    top: -191.3%;
}
.algorithm-grid .steps {
    display: flex;
    flex-direction: column;
    margin: 8px 0 0;
    border: 0;
    border-left: 1px solid var(--orange);
    padding-left: 40px;
    gap: 47px;
}
.algorithm-grid .steps article,
.algorithm-grid .steps article + article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 0;
    border: 0;
}
.algorithm-grid .steps article:hover {
    transform: translateX(8px);
}
.step-icon {
    width: 56px;
    height: 56px;
    border: 1px solid #dedfe1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 25px;
    background: #f7f8f9;
}
.algorithm-grid .steps b {
    color: #a9abae;
    font-weight: 400;
}
.algorithm-grid .steps h3 {
    font-size: 24px;
    margin: 6px 0 10px;
}
.algorithm-grid .steps p {
    font-size: 17px;
    margin: 0;
    max-width: 440px;
}
.reference-photo img.original-photo {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}
.ai-section {
    background: #f4f5f6;
    color: var(--ink);
}
.cyan {
    color: #00a8d4;
}
.ai-section > div > h2 {
    max-width: 680px;
    margin-bottom: 70px;
}
.ai-section .ai-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border: 0;
}
.ai-section .ai-grid article,
.ai-section .ai-grid article:nth-child(odd),
.ai-section .ai-grid article.wide {
    display: grid;
    grid-template-columns: 39% 61%;
    background: #fafafa;
    border: 1px solid #e1e2e4;
    border-radius: 24px;
    padding: 46px 48px;
    transform: none;
}
.ai-section .ai-grid article:hover {
    background: white;
    box-shadow: 0 24px 70px rgba(28, 31, 34, 0.08);
    transform: translateY(-5px);
}
.ai-section .ai-grid article:after {
    display: none;
}
.ai-title {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
}
.ai-icon {
    grid-row: 1/3;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #ddf5fb;
    color: #009fc9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}
.ai-title small {
    font-size: 12px;
    color: #a5a7aa;
    align-self: center;
}
.ai-section .ai-grid h3 {
    grid-column: 1/-1;
    font-size: 29px;
    margin: 28px 0 12px;
}
.ai-section .ai-grid h4 {
    grid-column: 1/-1;
    color: #888a8d;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
.ai-copy {
    align-self: center;
}
.ai-section .ai-grid p {
    color: #5e6064;
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 26px;
}
.ai-section .ai-grid ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
}
.ai-section .ai-grid li {
    border-top: 1px solid #dedfe1;
    color: #797b7e;
    font-size: 14px;
    padding: 14px 0 0;
}
.ai-section .ai-grid li:before {
    display: none;
}
.ai-section .ai-grid article:hover li {
    padding-left: 0;
    color: #555;
}
.product-section {
    background: #181a1c;
    color: #f6f6f6;
}
.product-grid {
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 55px;
    align-items: center;
}
.product-section h2 {
    font-size: clamp(50px, 5vw, 68px);
    max-width: 620px;
}
.product-intro {
    color: #bfc0c2;
    font-size: 17px;
    line-height: 1.65;
    margin: 28px 0 38px;
    max-width: 660px;
}
.product-section .feature-chips {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
    border: 0;
}
.product-section .feature-chips span {
    border: 1px solid #d3d3d3;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
}
.product-section .feature-chips span:hover {
    background: #27292c;
    padding-left: 22px;
    color: #fff;
}
.product-photo {
    height: 468px;
}
.product-photo img {
    width: 255.9%;
    left: -132.7%;
    top: -44.4%;
}
.sectors {
    display: grid;
    grid-template-columns: 1fr 2.15fr;
    gap: 70px;
    padding-top: 85px;
}
.sectors .metrics {
    grid-column: 1/-1;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 92px;
}
.sectors .metrics div {
    padding: 0;
    border: 0;
}
.sectors .metrics b {
    color: var(--orange);
    font-size: 58px;
}
.sectors .metrics span {
    color: #85878a;
    font-size: 16px;
}
.sector-copy h2 {
    font-size: clamp(50px, 5vw, 66px);
}
.sector-intro {
    font-size: 22px;
    line-height: 1.65;
    margin: 28px 0 38px;
}
.sector-photo {
    height: 320px;
}
.sector-photo img {
    width: 341.4%;
    left: -5.45%;
    top: -176.25%;
}
.sector-grid {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border: 0;
}
.sector-grid article {
    padding: 37px 35px;
    border: 1px solid #e0e1e2;
    border-radius: 20px;
}
.sector-grid h3 {
    font-size: 24px;
    margin: 0 0 18px;
}
.sector-grid p {
    font-size: 20px;
    margin: 0;
    line-height: 1.55;
}
@media (max-width: 900px) {
    .algorithm-grid,
    .product-grid,
    .sectors {
        grid-template-columns: 1fr;
    }
    .algorithm-grid .steps {
        border-left: 0;
        border-top: 1px solid var(--orange);
        padding: 38px 0 0;
    }
    .ai-section .ai-grid article,
    .ai-section .ai-grid article:nth-child(odd),
    .ai-section .ai-grid article.wide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 34px;
    }
    .product-photo {
        height: 380px;
    }
    .sectors .metrics {
        grid-template-columns: 1fr 1fr;
    }
    .sector-grid {
        grid-column: 1;
    }
    .sector-photo {
        max-width: 520px;
    }
}
@media (max-width: 560px) {
    .algorithm-grid .steps article,
    .algorithm-grid .steps article + article {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }
    .step-icon {
        width: 48px;
        height: 48px;
    }
    .algorithm-photo {
        height: 230px;
    }
    .ai-section .ai-grid ul {
        grid-template-columns: 1fr;
    }
    .ai-section .ai-grid article,
    .ai-section .ai-grid article:nth-child(odd),
    .ai-section .ai-grid article.wide {
        padding: 26px 22px;
    }
    .product-photo {
        height: 280px;
    }
    .sectors .metrics,
    .sector-grid {
        grid-template-columns: 1fr;
    }
    .sectors .metrics {
        padding-bottom: 55px;
    }
    .sector-photo {
        height: 260px;
    }
    .sector-grid {
        gap: 16px;
    }
}
