:root {
    --avyro-blue: #1769e8;
    --avyro-blue-dark: #0d58c9;
    --avyro-green: #83ce27;
    --avyro-dark: #071a38;
    --avyro-text: #5f718a;
    --avyro-light: #f7faff;
    --avyro-border: #e1e9f2;
    --avyro-white: #ffffff;
    --avyro-shadow: 0 18px 50px rgba(7, 26, 56, .08);
}

.about-section-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.section-mini-label {
    display: inline-block;
    color: var(--avyro-blue);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1.4;
}

.avyro-about-hero {
    position: relative;
    min-height: 590px;
    padding-top: 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(23, 105, 232, .12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 55%,
            #f3f8ff 100%
        );
    overflow: hidden;
    padding-bottom: 20px;
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(23, 105, 232, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23, 105, 232, .035) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 30%,
        black 75%,
        transparent
    );
    pointer-events: none;
}

.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(75px);
}

.about-glow-blue {
    width: 330px;
    height: 330px;
    right: 4%;
    top: 8%;
    background: rgba(23, 105, 232, .11);
}

.about-glow-green {
    width: 210px;
    height: 210px;
    right: 28%;
    bottom: -100px;
    background: rgba(131, 206, 39, .10);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 55px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--avyro-blue);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.about-eyebrow span {
    width: 28px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--avyro-blue),
        var(--avyro-green)
    );
}

.about-hero-content h1 {
    max-width: 680px;
    margin: 0;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -2.8px;
}

.about-hero-content h1 span {
    display: block;
    color: var(--avyro-blue);
}

.about-hero-content p {
    max-width: 590px;
    margin: 22px 0 28px;
    color: var(--avyro-text);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.85;
}

.about-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.about-primary,
.about-secondary {
    min-height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 9px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.about-primary {
    color: #fff;
    background: var(--avyro-blue);
    box-shadow: 0 10px 25px rgba(23, 105, 232, .20);
}

.about-primary:hover {
    color: #fff;
    background: var(--avyro-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(23, 105, 232, .25);
}

.about-secondary {
    color: var(--avyro-dark);
    background: #fff;
    border: 1px solid var(--avyro-border);
}

.about-secondary:hover {
    color: var(--avyro-blue);
    border-color: rgba(23, 105, 232, .30);
    transform: translateY(-3px);
}

/* HERO ORBIT */

.about-hero-side {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-orbit {
    position: relative;
    width: 340px;
    height: 340px;
}

.about-orbit-ring {
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(23, 105, 232, .22);
    border-radius: 50%;
    animation: orbitRotate 25s linear infinite;
}

.about-orbit-ring::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    top: 28px;
    left: 46px;
    border-radius: 50%;
    background: var(--avyro-green);
    box-shadow: 0 0 0 7px rgba(131, 206, 39, .10);
}

.about-center-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--avyro-border);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(17, 54, 92, .12);
}

.about-center-logo img {
    width: 105px;
    height: auto;
}

.about-orbit-item {
    position: absolute;
    width: 68px;
    height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--avyro-dark);
    background: #fff;
    border: 1px solid var(--avyro-border);
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(17, 54, 92, .10);
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    animation: floatItem 4s ease-in-out infinite;
}

.about-orbit-item i {
    color: var(--avyro-blue);
    font-size: 18px;
}

.item-one {
    top: 0;
    left: 34px;
}

.item-two {
    top: 130px;
    right: 0;
    animation-delay: .8s;
}

.item-three {
    bottom: 5px;
    left: 34px;
    animation-delay: 1.5s;
}

@keyframes orbitRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatItem {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* STORY */

.avyro-about-story {
    padding: 80px 0;
    background: var(--avyro-light);
}

.about-story-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-story-left h2 {
    margin: 12px 0 0;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.8px;
}

.about-story-left h2 span {
    display: block;
    color: var(--avyro-blue);
}

.about-story-right {
    padding-top: 5px;
}

.about-story-right p {
    margin: 0 0 20px;
    color: var(--avyro-text);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
}

.about-story-right .story-main {
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.65;
}

/* NUMBERS */

.avyro-about-numbers {
    padding: 30px 0;
    background: var(--avyro-dark);
}

.about-number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.about-number {
    padding: 27px 30px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.about-number strong {
    display: block;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
}

.about-number span {
    display: block;
    margin-top: 6px;
    color: #9dafc6;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

/* SERVICES */

.avyro-about-services {
    padding: 100px 0;
    background: var(--avyro-light);
}

.about-heading {
    max-width: 680px;
    margin-bottom: 45px;
}

.about-heading h2 {
    margin: 11px 0;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.8px;
}

.about-heading h2 span {
    color: var(--avyro-blue);
}

.about-heading p {
    margin: 0;
    color: var(--avyro-text);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-service {
    padding: 27px;
    background: #fff;
    border: 1px solid var(--avyro-border);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 26, 56, .03);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.about-service:hover {
    transform: translateY(-7px);
    border-color: rgba(23, 105, 232, .25);
    box-shadow: var(--avyro-shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    color: var(--avyro-blue);
    background: #edf5ff;
    border-radius: 12px;
    font-size: 17px;
    transition: .3s ease;
}

.about-service:hover .service-icon {
    color: #fff;
    background: var(--avyro-blue);
}

.about-service h3 {
    margin: 0 0 9px;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.about-service p {
    margin: 0 0 18px;
    color: var(--avyro-text);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.about-service a {
    color: var(--avyro-blue);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
}

.about-service a i {
    margin-left: 4px;
    transition: transform .25s ease;
}

.about-service a:hover i {
    transform: translateX(4px);
}

/* WHY */

.avyro-about-why {
    padding: 100px 0;
    background: #fff;
}

.about-why-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 85px;
    align-items: start;
}

.about-why-content h2 {
    margin: 12px 0 18px;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.8px;
}

.about-why-content h2 span {
    color: var(--avyro-blue);
}

.about-why-content > p {
    margin: 0 0 26px;
    color: var(--avyro-text);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.about-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 17px;
    color: var(--avyro-blue);
    border: 1px solid #d9e5f2;
    border-radius: 8px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    transition: .3s ease;
}

.about-outline-btn:hover {
    color: #fff;
    background: var(--avyro-blue);
    border-color: var(--avyro-blue);
}

.about-why-list {
    border-top: 1px solid var(--avyro-border);
}

.why-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--avyro-border);
}

.why-number {
    color: var(--avyro-green);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.why-item h3 {
    margin: 0 0 6px;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.why-item p {
    margin: 0;
    color: var(--avyro-text);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

/* PROCESS */

.avyro-about-process {
    padding: 100px 0;
    background: var(--avyro-light);
}

.about-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-line {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 25px;
    height: 1px;
    background: #dce5ef;
}

.process-step {
    position: relative;
    z-index: 2;
}

.process-circle {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--avyro-blue);
    background: #fff;
    border: 1px solid #dce6f0;
    border-radius: 50%;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(20, 50, 80, .05);
}

.process-step h3 {
    margin: 0 0 8px;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.process-step p {
    max-width: 220px;
    margin: 0;
    color: var(--avyro-text);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

/* CTA */

.avyro-about-cta {
    padding: 70px 0;
    background: #fff;
}

.about-cta-inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(23, 105, 232, .32),
            transparent 30%
        ),
        var(--avyro-dark);
    border-radius: 17px;
    overflow: hidden;
}

.about-cta-inner small {
    color: var(--avyro-green);
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-cta-inner h2 {
    margin: 6px 0 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.3;
}

.about-cta-inner h2 span {
    color: var(--avyro-green);
}

.about-cta-buttons {
    display: flex;
    gap: 9px;
    flex-shrink: 0;
}

.cta-call,
.cta-project {
    min-height: 43px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    transition: .3s ease;
}

.cta-call {
    color: var(--avyro-dark);
    background: #fff;
}

.cta-call:hover {
    background: var(--avyro-green);
    transform: translateY(-2px);
}

.cta-project {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}

.cta-project:hover {
    color: #fff;
    background: var(--avyro-blue);
    border-color: var(--avyro-blue);
    transform: translateY(-2px);
}

/* COMPANY */

.avyro-about-company {
    padding: 90px 6%;
    background: #fff;
}

.avyro-about-wrap {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 75px;
}

.avyro-about-image {
    position: relative;
    height: 470px;
}

.avyro-about-image::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 85px;
    left: -18px;
    top: -18px;
    border-top: 3px solid var(--avyro-blue);
    border-left: 3px solid var(--avyro-blue);
    border-radius: 8px 0 0 0;
}

.avyro-about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--avyro-shadow);
}

.avyro-about-experience {
    position: absolute;
    right: -28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 20px;
    background: var(--avyro-dark);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(7, 26, 56, .20);
    animation: avyroAboutFloat 4s ease-in-out infinite;
}

.avyro-about-experience strong {
    color: var(--avyro-green);
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.avyro-about-experience span {
    color: rgba(255,255,255,.75);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    line-height: 1.5;
}

.avyro-about-content {
    max-width: 570px;
}

.avyro-about-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--avyro-blue);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.avyro-about-label::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    margin-right: 9px;
    vertical-align: middle;
    background: var(--avyro-green);
    border-radius: 20px;
}

.avyro-about-content h2 {
    margin: 0;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.avyro-about-content h2 span {
    display: block;
    color: var(--avyro-blue);
}

.avyro-about-content p {
    margin: 19px 0 0;
    color: #647690;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.avyro-about-points {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;
}

.avyro-about-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #253b58;
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.5;
}

.avyro-about-points i {
    color: var(--avyro-green);
    font-size: 14px;
}

.avyro-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 13px 20px;
    color: #fff;
    background: var(--avyro-blue);
    border-radius: 8px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(23, 105, 232, .18);
    transition: .3s ease;
}

.avyro-about-btn i {
    transition: transform .3s ease;
}

.avyro-about-btn:hover {
    color: #fff;
    background: var(--avyro-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(7, 26, 56, .18);
}

.avyro-about-btn:hover i {
    transform: translateX(4px);
}

@keyframes avyroAboutFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* FAQ */

.avyro-faq {
    padding: 85px 6%;
    background: var(--avyro-light);
}

.avyro-faq-wrap {
    max-width: 900px;
    margin: auto;
}

.avyro-faq-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 42px;
}

.avyro-faq-label {
    color: var(--avyro-blue);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.avyro-faq-label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    margin-right: 8px;
    vertical-align: middle;
    background: var(--avyro-green);
    border-radius: 10px;
}

.avyro-faq-head h2 {
    margin: 13px 0 12px;
    color: var(--avyro-dark);
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.avyro-faq-head h2 span {
    color: var(--avyro-blue);
}

.avyro-faq-head p {
    margin: 0;
    color: #687b95;
    font-family: "Poppins", sans-serif;
    font-size: 14.5px;
    line-height: 1.75;
}

.avyro-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.avyro-faq-item {
    background: #fff;
    border: 1px solid var(--avyro-border);
    border-radius: 12px;
    overflow: hidden;
    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}

.avyro-faq-item:hover {
    border-color: #cddbea;
    box-shadow: 0 10px 28px rgba(7, 26, 56, .06);
}

.avyro-faq-item summary {
    min-height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    color: #102744;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.avyro-faq-item summary::-webkit-details-marker {
    display: none;
}

.avyro-faq-item summary i {
    flex-shrink: 0;
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5ff;
    color: var(--avyro-blue);
    font-size: 11px;
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.avyro-faq-item[open] {
    border-color: #d2e1f2;
}

.avyro-faq-item[open] summary {
    color: var(--avyro-blue);
}

.avyro-faq-item[open] summary i {
    transform: rotate(45deg);
    background: var(--avyro-blue);
    color: #fff;
}

.avyro-faq-answer {
    padding: 0 20px 20px;
}

.avyro-faq-answer p {
    max-width: 760px;
    margin: 0;
    color: #687b95;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.75;
}

/* FAQ CTA */

.avyro-faq-cta {
    margin-top: 35px;
    padding: 23px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: var(--avyro-dark);
    border-radius: 13px;
}

.avyro-faq-cta small {
    color: var(--avyro-green);
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.avyro-faq-cta h3 {
    margin: 5px 0 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.avyro-faq-cta a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    background: var(--avyro-blue);
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    transition: .25s ease;
}

.avyro-faq-cta a:hover {
    color: var(--avyro-dark);
    background: var(--avyro-green);
    transform: translateY(-2px);
}

/* TABLET */

@media (max-width: 950px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-hero-side {
        display: none;
    }

    .about-story-grid,
    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-number-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .process-line {
        display: none;
    }

    .avyro-about-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .avyro-about-image {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }

    .avyro-about-content {
        max-width: 700px;
        margin: auto;
    }

    .about-cta-inner {
        padding: 30px;
    }
}

/* MOBILE */

@media (max-width: 620px) {
    .about-section-container {
        width: min(100% - 30px, 1120px);
    }

    .avyro-about-hero {
        min-height: auto;
        padding: 85px 0 55px;
    }

    .about-hero-content h1 {
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -1.5px;
    }

    .about-hero-content p {
        margin: 18px 0 24px;
        font-size: 14px;
        line-height: 1.7;
    }

    .about-primary,
    .about-secondary {
        min-height: 46px;
        padding: 0 18px;
        font-size: 12px;
    }

    .avyro-about-story,
    .avyro-about-services,
    .avyro-about-why,
    .avyro-about-process {
        padding: 55px 0;
    }

    .about-story-left h2,
    .about-why-content h2,
    .about-heading h2 {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .about-story-right p,
    .about-why-content > p,
    .about-heading p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-story-right .story-main {
        font-size: 18px;
        line-height: 1.6;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .about-service {
        padding: 24px;
    }

    .about-service h3 {
        font-size: 17px;
    }

    .about-service p {
        font-size: 13px;
    }

    .about-number-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-number {
        padding: 20px 15px;
    }

    .about-number strong {
        font-size: 26px;
    }

    .about-number span {
        font-size: 11px;
    }

    .about-process {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .process-step p {
        max-width: 100%;
    }

    .about-cta-inner {
        width: min(100% - 30px, 1120px);
        padding: 28px 21px;
        align-items: flex-start;
        flex-direction: column;
    }

    .about-cta-inner h2 {
        font-size: 23px;
    }

    .about-cta-buttons {
        width: 100%;
    }

    .cta-call,
    .cta-project {
        flex: 1;
    }

    .avyro-about-company {
        padding: 55px 16px;
    }

    .avyro-about-image {
        height: 330px;
    }

    .avyro-about-image::before {
        width: 55px;
        height: 55px;
        left: -8px;
        top: -8px;
    }

    .avyro-about-experience {
        right: 12px;
        bottom: 15px;
        padding: 13px 15px;
    }

    .avyro-about-experience strong {
        font-size: 24px;
    }

    .avyro-about-content h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .avyro-about-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .avyro-about-points {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .avyro-about-points div {
        font-size: 13px;
    }

    .avyro-about-btn {
        margin-top: 24px;
    }

    .avyro-faq {
        padding: 55px 16px;
    }

    .avyro-faq-head {
        margin-bottom: 30px;
    }

    .avyro-faq-head h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .avyro-faq-head p {
        font-size: 13px;
        line-height: 1.7;
    }

    .avyro-faq-item summary {
        min-height: 58px;
        padding: 0 15px;
        gap: 12px;
        font-size: 13px;
        line-height: 1.45;
    }

    .avyro-faq-item summary i {
        width: 25px;
        height: 25px;
    }

    .avyro-faq-answer {
        padding: 0 15px 17px;
    }

    .avyro-faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }

    .avyro-faq-cta {
        padding: 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .avyro-faq-cta h3 {
        font-size: 18px;
    }

    .avyro-faq-cta a {
        width: 100%;
        justify-content: center;
    }
}

/* SMALL MOBILE */

@media (max-width: 380px) {
    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-story-left h2,
    .about-why-content h2,
    .about-heading h2,
    .avyro-about-content h2 {
        font-size: 30px;
    }

    .about-number strong {
        font-size: 23px;
    }

    .avyro-faq-head h2 {
        font-size: 29px;
    }

    .about-primary,
    .about-secondary {
        width: 100%;
    }

    .about-hero-buttons {
        width: 100%;
    }
}