/* =============================
   AI Voucher page
   Source: cubig.ai/ko/aivoucher
   ============================= */

.av-page {
    background: var(--c-bg-white);
    color: var(--c-text-heading);
}

.av-page section { width: 100%; }

.av-page .av-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--c-border-light);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text-muted);
    background: #fff;
    margin-bottom: 24px;
}

.av-page .av-eyebrow--dark {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

/* ─────────────────  HERO (cosmic dark + voucher card grid)  ───────────────── */
.av-hero {
    position: relative;
    background: #0a0716;
    color: #fff;
    overflow: hidden;
    padding: 140px 24px 100px;
    isolation: isolate;
}

/* Use bg image as cosmic star-trail; bumps opacity for visibility */
.av-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

/* Soft violet halo behind title */
.av-hero__glow {
    position: absolute;
    left: 50%;
    top: 20%;
    width: 1000px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(140, 110, 255, 0.32) 0%, rgba(10, 7, 22, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.av-hero::after { content: none; }

.av-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

/* Badge — conic gradient ring (dv-hero pattern) */
.av-hero__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 2px;
    border-radius: 999px;
    background:
        conic-gradient(from 91deg,
            rgba(105, 97, 255, 0) 50deg,
            rgba(181, 152, 255, 0) 168deg,
            rgb(168, 153, 255) 244deg,
            rgb(163, 153, 255) 277deg,
            rgb(129, 107, 255) 309deg,
            rgba(163, 153, 255, 0) 360deg);
    margin-bottom: 0;
    font-size: 14px;
}
.av-hero__badge::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 999px;
    background: linear-gradient(rgb(46, 46, 47) 0%, rgb(26, 23, 48) 100%);
    z-index: 0;
}
.av-hero__badge > * { position: relative; z-index: 1; }
.av-hero__badge-year {
    background: rgb(109, 79, 227);
    color: rgb(240, 240, 240);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    margin: 4px;
}
.av-hero__badge-label {
    color: rgb(240, 240, 240);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding-right: 14px;
}

/* Title — Pretendard Bold w/ horizontal white→lavender gradient text-fill */
.av-hero__title {
    font-family: 'Pretendard Bold', 'Pretendard', sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 0;
    text-align: center;
}
.av-hero__title-fill {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(138, 119, 224) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 3 problem cards */
.av-hero__problems {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
.av-prob {
    position: relative;
    aspect-ratio: 390 / 360;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #15102b;
    border: 1px solid rgba(140, 110, 255, 0.25);
    border-radius: 24px;
    padding: 0 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    gap: 14px;
    overflow: hidden;
}
.av-prob__title {
    font-family: 'Pretendard Bold', 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
    margin: 0;
}
.av-prob__body {
    font-family: 'Pretendard Medium', 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: rgb(220, 221, 223);
    margin: 0;
}
.av-prob__tags {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    color: rgb(138, 119, 224);
    font-family: 'Pretendard Bold', 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    margin-top: 8px;
}

/* Lead block — 2 stacked paragraphs */
.av-hero__leads {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}
.av-hero__lead {
    font-family: 'Pretendard Bold', 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.5;
    color: rgb(202, 204, 207);
    margin: 0;
}
.av-hero__lead strong { color: #fff; font-weight: 700; }
.av-hero__lead em {
    font-style: normal;
    color: #fff;
    font-weight: 700;
}
.av-hero__callout-text {
    font-family: 'Pretendard Medium', 'Pretendard', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

/* CTA pill — solid violet */
.av-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: rgb(108, 88, 190);
    color: #fff;
    border-radius: 40px;
    font-family: 'DM Sans', 'Pretendard SemiBold', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: background 0.2s;
}
.av-hero__cta:hover { background: rgb(126, 105, 210); }
.av-hero__cta span { display: none; }

@media (max-width: 880px) {
    .av-hero { padding: 100px 16px 64px; }
    .av-hero__inner { gap: 36px; }
    .av-hero__problems { grid-template-columns: 1fr; }
    .av-prob__media { width: 100px; height: 100px; }
    .av-prob__title { font-size: 18px; }
    .av-hero__lead, .av-hero__callout p { font-size: 15px; }
}

/* ─────────────────  INDUSTRIES  ───────────────── */
.av-industries {
    background: var(--c-bg-white);
    padding: 120px 24px;
}

.av-industries__inner {
    max-width: 1168px;
    margin: 0 auto;
    text-align: center;
}

.av-industries__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.35;
    margin: 0 0 56px;
    color: var(--c-text-heading);
}

.av-industries__title span { display: block; }

.av-industries__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
}

.av-ind-card {
    background: linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1.2px solid rgb(227, 227, 227);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.av-ind-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
}

.av-ind-card__media {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 328 / 160;
}

.av-ind-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.av-ind-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px 8px 12px;
}

.av-ind-card__badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    padding: 4px 10px;
    border: 1.1px solid rgb(122, 101, 208);
    background: rgb(247, 245, 255);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
    color: rgb(138, 119, 224);
}

.av-ind-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: rgb(34, 34, 34);
    letter-spacing: -0.2px;
}

/* ─────────────────  ABOUT  ───────────────── */
.av-about {
    background: var(--c-bg-white);
    padding: 120px 24px;
}

.av-about__inner {
    max-width: 1168px;
    margin: 0 auto;
}

.av-about__head {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 820px;
}

.av-about__title {
    font-family: 'Kakao Big Sans Bold', 'Pretendard SemiBold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.5;
    margin: 0 0 20px;
    color: rgb(23, 23, 25);
}

.av-about__body {
    font-size: 16px;
    line-height: 1.5;
    color: rgb(64, 65, 69);
    margin: 0;
    text-align: center;
}

.av-about__body strong {
    font-weight: 700;
    color: rgb(23, 23, 25);
}

.av-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.av-about__table {
    border-top: 2px solid rgb(122, 101, 208);
    border-bottom: 2px solid rgb(122, 101, 208);
}

.av-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 28px;
    padding: 22px 8px;
    border-bottom: 1px solid rgb(228, 228, 230);
    align-items: start;
}

.av-row:last-child { border-bottom: 0; }

.av-row__k {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: rgb(15, 15, 16);
}

.av-row__v {
    font-size: 14px;
    line-height: 1.5;
    color: rgb(15, 15, 16);
}

.av-row__v p {
    margin: 0;
}

.av-row__v p + p {
    margin-top: 4px;
}

.av-row__note {
    font-size: 14px;
    color: rgb(123, 126, 133);
}

.av-about__visual {
    background: rgb(247, 245, 255);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.av-about__visual img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 520px;
}

/* ─────────────────  RECOMMENDED  ───────────────── */
.av-rec {
    background: var(--c-bg-light);
    padding: 120px 24px;
}

.av-rec__inner {
    max-width: 1168px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.8fr;
    gap: 64px;
    align-items: start;
}

.av-rec__head {
    text-align: left;
}

.av-rec__title {
    font-family: 'Pretendard Bold', sans-serif;
    font-size: clamp(32px, 3.2vw, 42px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.5;
    margin: 0;
    color: rgb(15, 15, 16);
}

.av-rec__title span { display: block; }

.av-rec__stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.av-rec-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    align-items: center;
    transition: var(--transition);
}

.av-rec-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -16px rgba(0, 0, 0, 0.12);
}

.av-rec-card__icon {
    background: rgb(247, 245, 255);
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(122, 101, 208);
}

.av-rec-card__icon svg {
    width: 40%;
    height: 40%;
}

.av-rec-card__copy {
    min-width: 0;
}

.av-rec-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: rgb(23, 23, 25);
    margin: 0 0 10px;
}

.av-rec-card__body {
    font-size: 14px;
    line-height: 20px;
    color: rgb(123, 126, 133);
    margin: 0;
}

/* ─────────────────  PROCESS  ───────────────── */
.av-process {
    background: var(--c-bg-white);
    padding: 120px 24px;
}

.av-process__inner {
    max-width: 1168px;
    margin: 0 auto;
}

.av-process__head {
    text-align: center;
    margin: 0 auto 48px;
}

.av-process__title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.5;
    margin: 0;
    color: rgb(15, 15, 16);
}

.av-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.av-step {
    background: #fff;
    border: 1px solid rgb(228, 228, 230);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.av-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgb(122, 101, 208);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 4px;
}

.av-step__title {
    font-family: 'Pretendard Bold', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: rgb(23, 23, 25);
    margin: 0;
}

.av-step__body {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: rgb(123, 126, 133);
    margin: 0;
}

/* ─────────────────  BENEFITS BAND  ───────────────── */
.av-band {
    position: relative;
    background: #050507;
    color: #fff;
    overflow: hidden;
    padding: 64px 24px;
    isolation: isolate;
}

.av-band__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    pointer-events: none;
}

.av-band__inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.av-band__title {
    font-family: 'Pretendard Bold', sans-serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.5;
    margin: 0 0 16px;
    background: linear-gradient(90deg, rgb(138, 119, 224) 10%, rgb(255, 255, 255) 51.8%, rgb(138, 119, 224) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.av-band__body {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.av-band__body strong {
    color: #fff;
    font-weight: 700;
}

/* ─────────────────  SUPPLY  ───────────────── */
.av-supply {
    position: relative;
    background: #050507;
    color: #fff;
    padding: 120px 24px;
    overflow: hidden;
    isolation: isolate;
}

.av-supply__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: -1;
    pointer-events: none;
}

.av-supply__inner {
    max-width: 1168px;
    margin: 0 auto;
}

.av-supply__head {
    text-align: center;
    margin: 0 auto 64px;
    max-width: 900px;
}

.av-supply__badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: rgb(220, 221, 223);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 20px;
}

.av-supply__title {
    font-family: 'Kakao Big Sans Bold', 'Pretendard SemiBold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.5;
    margin: 0 0 16px;
    color: #fff;
}

.av-supply__intro {
    color: rgb(220, 221, 223);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.av-supply__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.av-sup-card {
    background: rgba(20, 22, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(8px);
}

.av-sup-card__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.av-sup-card__when {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.av-sup-card__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.av-sup-card__kind {
    font-size: 14px;
    color: rgb(138, 119, 224);
    font-weight: 500;
}

.av-sup-card__brand {
    font-family: 'Pretendard SemiBold', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.5px;
}

.av-sup-card__brand--img {
    display: block;
    height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

.av-sup-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.av-sup-card__lead {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.av-sup-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.av-sup-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.av-sup-card__check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: rgb(138, 119, 224);
}

.av-sup-card__check svg {
    width: 16px;
    height: 16px;
}

.av-sup-card__foot {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.av-sup-card__tags {
    display: block;
    font-size: 12px;
    line-height: 16px;
    color: rgb(230, 231, 233);
    text-align: center;
}

.av-sup-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: rgb(15, 15, 15);
    font-family: 'DM Sans', 'Pretendard SemiBold', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 30px;
    padding: 6px 20px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.av-sup-card__btn:hover {
    transform: translateY(-1px);
    background: #f5f5f5;
}

/* ─────────────────  MARQUEE  ───────────────── */
.av-marquee {
    background: linear-gradient(rgb(243, 243, 243) 0%, rgb(255, 255, 255) 51.58%, rgb(240, 240, 240) 100%);
    overflow: hidden;
    padding: 80px 0;
}

.av-marquee__track {
    display: flex;
    align-items: center;
    gap: 120px;
    width: max-content;
    animation: av-marquee-scroll 40s linear infinite;
}

.av-marquee__item {
    flex: 0 0 auto;
    width: 230px;
    aspect-ratio: 1127 / 1523;
    border-radius: 24px;
    overflow: hidden;
    filter: drop-shadow(0 3.27px 9px rgba(0, 0, 0, 0.1));
}

.av-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes av-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 60px)); }
}

@media (prefers-reduced-motion: reduce) {
    .av-marquee__track { animation: none; }
}

/* ─────────────────  TESTIMONIALS  ───────────────── */
.av-tst {
    background: var(--c-bg-light);
    padding: 120px 24px;
}

.av-tst__inner {
    max-width: 1168px;
    margin: 0 auto;
    text-align: center;
}

.av-tst__title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin: 0 0 64px;
    color: var(--c-text-heading);
}

.av-tst__title span { display: block; }

.av-tst__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.av-tst-card {
    background: #fff;
    border: 1px solid var(--c-border-light);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
}

.av-tst-card__qa {
    flex: 1;
    margin-bottom: 28px;
}

.av-tst-card__q {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text-heading);
    margin: 0 0 8px;
    line-height: 1.5;
}

.av-tst-card__a {
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-text-muted);
    margin: 0 0 20px;
}

.av-tst-card__a:last-child { margin-bottom: 0; }

.av-tst-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--c-border-light);
}

.av-tst-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--c-bg-light-alt);
    flex-shrink: 0;
}

.av-tst-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.av-tst-card__author strong {
    display: block;
    font-size: 14px;
    color: var(--c-text-heading);
}

.av-tst-card__author span {
    display: block;
    font-size: 12px;
    color: var(--c-text-faint);
    margin-top: 2px;
}

/* ─────────────────  BOTTOM CTA  ───────────────── */
.av-cta {
    background: #050507;
    color: #fff;
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.av-cta::before {
    content: "";
    position: absolute;
    inset: -20% -20% auto -20%;
    height: 80%;
    background: radial-gradient(50% 60% at 50% 0%, rgba(136, 146, 250, 0.35) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.av-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.av-cta__title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.35;
    margin: 0 0 20px;
    color: #fff;
}

.av-cta__title span { display: block; }

.av-cta__body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 0 36px;
}

.av-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: #0f0f12;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.av-cta__btn:hover { transform: translateY(-1px); background: #f0f0f0; }

/* ─────────────────  RESPONSIVE  ───────────────── */
@media (max-width: 960px) {
    .av-hero__problems,
    .av-industries__grid,
    .av-about__grid,
    .av-rec__inner,
    .av-supply__grid,
    .av-tst__grid { grid-template-columns: 1fr; }
    .av-rec__inner { gap: 32px; }
    .av-rec-card { grid-template-columns: 88px 1fr; gap: 20px; padding: 20px; }
    .av-process__steps { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .av-process__steps::before { display: none; }
    .av-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 8px; }
}

@media (max-width: 640px) {
    .av-hero { padding: 100px 24px 100px; }
    .av-industries,
    .av-about,
    .av-rec,
    .av-process,
    .av-band,
    .av-supply,
    .av-tst,
    .av-cta { padding-top: 64px; padding-bottom: 64px; }
    .av-prob { padding: 24px; }
    .av-rec-card { padding: 28px; }
    .av-tst-card { padding: 24px; }
    .av-process__steps { grid-template-columns: 1fr; }
    .av-hero__callout { padding: 24px; }
}
