/* ===================================================
   CarChalak About Us Page - Modern Design
   about-us.css
=================================================== */

/* Import shared variables and fonts from home-new.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --green:        #1e884a;
    --green-light:  #27a85c;
    --green-pale:   #e8f7ee;
    --orange:       #f38c03;
    --orange-light: #ffb347;
    --orange-pale:  #fff5e6;
    --dark:         #0d1117;
    --dark-soft:    #1f2937;
    --mid:          #4b5563;
    --light:        #f8fafc;
    --white:        #ffffff;
    --border:       #e5e7eb;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
    --shadow-md:    0 8px 32px rgba(0,0,0,.10);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.12);
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    40px;
    --transition:   .35s cubic-bezier(.4,0,.2,1);
}

/* Base Styles */
.au-page {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.au-page * {
    box-sizing: border-box;
}

/* Container - Proper width management */
.au-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .au-container {
        padding: 0 16px;
    }
}

/* Animations */
@keyframes au-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes au-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes au-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes au-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes au-bgMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes au-spin {
    to { transform: rotate(360deg); }
}

@keyframes au-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Utility Classes */
.au-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-pale);
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(30,136,74,.20);
    margin-bottom: 16px;
}

.au-badge--orange {
    background: var(--orange-pale);
    color: var(--orange);
    border-color: rgba(243,140,3,.20);
}

.au-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.au-accent-green { color: var(--green); }
.au-accent-orange { color: var(--orange); }

.au-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mid);
    max-width: 680px;
}

.au-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.au-btn-primary {
    background: linear-gradient(135deg, #f08900 0%, #FF5722 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(240,137,0,.30);
}

.au-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(240,137,0,.40);
    color: var(--white);
}

.au-btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.au-btn-outline:hover {
    background: var(--white);
    color: var(--green);
    transform: translateY(-3px);
}

/* Section Utilities */
.au-section-head {
    text-align: center;
    margin-bottom: 56px;
    animation: au-fadeUp .7s ease both;
}

.au-section-head .au-subtitle {
    margin: 0 auto;
}

/* ======================================================
   HERO SECTION
====================================================== */
.au-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at 15% 15%, #fffef4 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, #fff4df 0%, transparent 46%),
        linear-gradient(150deg, #f7fffb 0%, #ffffff 52%, #fff8ee 100%);
}

.au-hero__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.au-hero__blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(16px);
    opacity: .6;
}

.au-hero__blob--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(30,136,74,.24), rgba(30,136,74,0));
    top: -140px;
    left: -140px;
    animation: au-float 10s ease-in-out infinite;
}

.au-hero__blob--2 {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(243,140,3,.20), rgba(243,140,3,0));
    bottom: -240px;
    right: -140px;
    animation: au-float 12s ease-in-out infinite reverse;
}

.au-hero__blob--3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(30,136,74,.18), rgba(30,136,74,0));
    top: 200px;
    right: 35%;
    animation: au-pulse 8s ease-in-out infinite;
}

.au-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(30,136,74,.12) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(30,136,74,.12) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 90%);
    animation: au-bgMove 18s ease infinite;
}

.au-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.au-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(240,137,0,.55);
    background: linear-gradient(135deg, rgb(255 253 235) 0%, rgb(255 250 240) 100%);
    backdrop-filter: blur(10px);
    color: #e67e00;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: au-fadeUp .6s ease both;
    box-shadow: 0 4px 16px rgba(240,137,0,.12);
}

.eyebrow-icon {
    font-size: 16px;
    animation: au-pulse 2s ease-in-out infinite;
}

.au-hero__h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin: 0 0 24px;
    animation: au-fadeUp .7s .08s ease both;
    color: var(--dark);
}

.au-line-gradient {
    display: inline;
    background: linear-gradient(120deg, #ff6a00 0%, #ea8a00 45%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: au-shimmer 3s linear infinite;
}

.au-hero__desc {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    max-width: 62ch;
    margin-bottom: 36px;
    animation: au-fadeUp .7s .15s ease both;
}

.au-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    animation: au-fadeUp .7s .22s ease both;
}

.au-stat-card {
    background: rgba(255,255,255,.85);
    border: 1.5px solid rgba(30,136,74,.16);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.au-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-pale) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.au-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(30,136,74,.15);
    border-color: var(--green);
}

.au-stat-card:hover::before {
    opacity: 1;
}

.au-stat-card__icon {
    font-size: 32px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    display: block;
}

.au-stat-card__num {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green) 0%, #16653a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.au-stat-card__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--mid);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.au-hero__visual {
    position: relative;
    animation: au-fadeUp .8s .15s ease both;
}

.au-hero__image-wrap {
    position: relative;
    padding: 20px;
}

.au-hero__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15,23,42,.18);
    border: 2px solid rgba(255,255,255,.8);
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
    padding: 12px;
    animation: au-float 6s ease-in-out infinite;
}

.au-hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-lg) - 8px);
}

.au-hero__badge {
    position: absolute;
    background: rgba(255,255,255,.98);
    border: 1.5px solid rgba(30,136,74,.18);
    box-shadow: 0 18px 36px rgba(15,23,42,.14);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.au-hero__badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15,23,42,.18);
}

.au-hero__badge--1 {
    top: 40px;
    left: -30px;
    animation: au-float 4.5s ease-in-out infinite;
}

.au-hero__badge--2 {
    bottom: 40px;
    right: -30px;
    animation: au-float 5s ease-in-out infinite .6s;
}

.badge-icon {
    font-size: 28px;
}

.au-hero__badge strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.au-hero__badge small {
    display: block;
    font-size: 12px;
    color: var(--mid);
    margin-top: 2px;
    font-weight: 500;
}

/* ======================================================
   OUR JOURNEY SECTION
====================================================== */
.au-journey {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.au-journey__grid {
    display: grid;
    grid-template-columns:1fr;
    gap: 30px;
    align-items: start;
    margin-top: 40px;
}

.au-journey__text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--mid);
    margin: 0 0 22px;
}

.au-journey__text a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.au-journey__text a:hover {
    border-bottom-color: var(--green);
    color: var(--green-light);
}

.au-journey__visual {
    display: flex;
    gap: 22px;
    position: sticky;
    top: 120px;
}

.au-journey__card {
    background: linear-gradient(135deg, var(--white) 0%, #fcfcfc 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.au-journey__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-pale) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.au-journey__card:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.au-journey__card:hover::before {
    opacity: 1;
}

.au-journey__icon {
    font-size: 48px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.au-journey__card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.au-journey__card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mid);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ======================================================
   WHAT WE OFFER SECTION
====================================================== */
.au-offer {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, #f0faf5 100%);
    position: relative;
}

.au-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-pale), transparent);
}

.au-offer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.au-offer__card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.au-offer__card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.au-offer__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--green-pale), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.au-offer__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}

.au-offer__card:hover::before {
    transform: scaleX(1);
}

.au-offer__card:hover::after {
    opacity: 1;
}

.au-offer__icon {
    font-size: 52px;
    margin-bottom: 22px;
    display: block;
    position: relative;
    z-index: 1;
    animation: au-float 3s ease-in-out infinite;
}

.au-offer__card:nth-child(2n) .au-offer__icon {
    animation-delay: .3s;
}

.au-offer__card:nth-child(3n) .au-offer__icon {
    animation-delay: .6s;
}

.au-offer__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.au-offer__card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mid);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ======================================================
   WHY CHOOSE SECTION
====================================================== */
.au-why {
    padding: 100px 0;
    background: var(--white);
}

.au-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-top: 48px;
}

.au-why__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 36px;
}

.au-why__item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, var(--light) 0%, #fafafa 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--orange);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.au-why__item:hover {
    background: var(--orange-pale);
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(243,140,3,.15);
    border-left-width: 6px;
}

.au-why__item-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(243,140,3,.25);
}

.au-why__item-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.au-why__item-content p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mid);
    margin: 0;
}

.au-why__visual {
    text-align: center;
    position: relative;
}

.au-why__visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--green-pale), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: .5;
}

.au-why__image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(15,23,42,.14);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    border: 3px solid var(--white);
}

.au-why__caption {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ======================================================
   TEAM SECTION
====================================================== */
.au-team {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, #eef8f3 100%);
    position: relative;
}

.au-team::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-pale), transparent);
}

.au-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.au-team-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.au-team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-pale), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.au-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(30,136,74,.15);
    border-color: var(--green);
}

.au-team-card:hover::before {
    opacity: 1;
}

.au-team-card__image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-pale), var(--light));
    position: relative;
    z-index: 1;
}

.au-team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(20%);
}

.au-team-card:hover .au-team-card__image img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.au-team-card__content {
    padding: 28px 24px;
    position: relative;
    z-index: 1;
}

.au-team-card__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 10px;
}

.au-team-card__role {
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    margin: 0;
    line-height: 1.4;
}

/* ======================================================
   CTA SECTION
====================================================== */
.au-cta {
    padding: 100px 0;
    background: var(--white);
}

.au-cta__inner {
    background: linear-gradient(135deg, #043a24 0%, #075b37 48%, #08824d 100%);
    border-radius: var(--radius-xl);
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(4,60,37,.25);
}

.au-cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
        background-image: linear-gradient(rgb(255 255 255 / 15%) 1.5px, #00000014 1.5px), linear-gradient(90deg, rgb(255 255 255 / 19%) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: .3;
    animation: au-bgMove 20s ease infinite;
}

.au-cta__inner::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(110,255,179,.15), transparent 70%);
    border-radius: 50%;
}

.au-cta__icon {
    font-size: 72px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    animation: au-pulse 3s ease-in-out infinite;
}

.au-cta__title {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 18px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.au-cta__desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.88);
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.au-cta__buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1024px) {
    .au-container { padding: 0 20px; }
    
    .au-hero {
        min-height: auto;
        padding: 100px 0 70px;
    }
    
    .au-hero__inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .au-hero__content { margin: 0 auto; }
    .au-hero__desc { max-width: 100%; margin-left: auto; margin-right: auto; }
    
    .au-hero__stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    
    .au-hero__image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .au-hero__badge--1 { left: 10px; }
    .au-hero__badge--2 { right: 10px; }
    
    .au-journey,
    .au-offer,
    .au-why,
    .au-team,
    .au-cta {
        padding: 70px 0;
    }
    
    .au-journey__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .au-journey__visual {
        position: static;
    }
    
    .au-why__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .au-why__visual { order: -1; }
    
    .au-offer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .au-team__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .au-page { overflow-x: hidden; width: 100%; max-width: 100vw; margin: 0; }
    
    .au-container {
        padding: 0 16px;
    }
    
    .au-hero {
        padding: 60px 0 50px;
    }
    
    .au-hero__h1 {
        font-size: clamp(32px, 8vw, 44px);
        line-height: 1.1;
    }
    
    .au-hero__desc {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .au-hero__eyebrow {
        font-size: 12px;
        padding: 7px 16px;
    }
    
    .au-hero__stats {
        gap: 6px;
    }
    
    .au-stat-card {
        padding: 10px;
    }
    
    .au-stat-card__num { font-size: 32px; }
    .au-stat-card__icon { font-size: 28px; }
    
    .au-hero__badge {
        position: static;
        margin: 16px auto;
        justify-content: center;
        max-width: 280px;
    }
    
    .au-hero__image-wrap {
        padding: 10px;
    }
    
    .au-section-head {
        margin-bottom: 40px;
    }
    
    .au-title {
        font-size: clamp(26px, 6vw, 36px);
        line-height: 1.2;
    }
    
    .au-subtitle {
        font-size: 15px;
    }
    
    .au-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .au-btn {
        padding: 14px 28px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .au-journey,
    .au-offer,
    .au-why,
    .au-team,
    .au-cta {
        padding: 50px 0;
    }
    
    .au-journey__text {
        font-size: 15px;
        line-height: 1.75;
    }
    
    .au-journey__card {
        padding: 24px 20px;
    }
    
    .au-journey__card h3 {
        font-size: 20px;
    }
    
    .au-offer__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .au-offer__card {
        padding: 24px 20px;
    }
    
    .au-offer__card h3 {
        font-size: 18px;
    }
    
    .au-offer__icon {
        font-size: 36px;
    }
    
    .au-why__item {
        padding: 18px 16px;
    }
    
    .au-why__item strong {
        font-size: 16px;
    }
    
    .au-why__item p {
        font-size: 14px;
    }
    
    .au-team__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .au-team-card {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .au-cta__inner {
        padding: 45px 24px;
        border-radius: var(--radius-lg);
    }
    
    .au-cta__title {
        font-size: 26px;
    }
    
    .au-cta__desc {
        font-size: 15px;
    }
    
    .au-cta__buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .au-cta__buttons .au-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .au-container { padding: 0 14px; }
    
    .au-hero {
        padding: 40px 0 40px;
    }
    
    .au-hero__h1 {
        font-size: 28px;
        line-height: 1.15;
    }
    
    .au-hero__desc {
        font-size: 14px;
        line-height: 1.65;
    }
    
    .au-hero__inner {
        gap: 36px;
    }
    
    .au-hero__eyebrow {
        font-size: 11px;
        padding: 6px 12px;
        gap: 6px;
    }
    
    .eyebrow-icon { font-size: 14px; }
    
       
    .au-stat-card__num { font-size: 24px; }
    .au-stat-card__icon { font-size: 20px; }
    .au-stat-card__label { font-size: 12px; }
    
    .au-hero__badge {
        padding: 12px 14px;
        gap: 10px;
        max-width: 260px;
    }
    
    .badge-icon { font-size: 24px; }
    
    .au-hero__badge strong { font-size: 14px; }
    .au-hero__badge small { font-size: 11px; }
    
    .au-journey,
    .au-offer,
    .au-why,
    .au-team,
    .au-cta {
        padding: 40px 0;
    }
    
    .au-section-head {
        margin-bottom: 32px;
    }
    
    .au-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .au-subtitle {
        font-size: 14px;
    }
    
    .au-badge {
        font-size: 11px;
        padding: 5px 12px;
        gap: 6px;
    }
    
    .au-btn {
        padding: 12px 22px;
        font-size: 13px;
        gap: 8px;
    }
    
    .au-journey__text {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .au-journey__card {
        padding: 20px 18px;
    }
    
    .au-journey__card h3 {
        font-size: 18px;
    }
    
    .au-journey__card p {
        font-size: 14px;
    }
    
    .au-journey__icon {
        font-size: 32px;
    }
    
    .au-offer__grid {
        gap: 16px;
    }
    
    .au-offer__card {
        padding: 20px 18px;
    }
    
    .au-offer__card h3 {
        font-size: 17px;
    }
    
    .au-offer__card p {
        font-size: 13px;
    }
    
    .au-offer__icon {
        font-size: 32px;
        margin-bottom: 14px;
    }
    
    .au-why__item {
        padding: 16px 14px;
        gap: 12px;
    }
    
    .au-why__item-icon {
        font-size: 18px;
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .au-why__item strong {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .au-why__item p {
        font-size: 13px;
    }
    .au-why__inner{margin-top: 10px; gap: 36px;}
    .au-why__image {
        max-height: 550px;
        width: auto;
    }
    
    .au-why__caption {
        font-size: 12px;
        padding: 12px 14px;
    }
    
    .au-team__grid {
        gap: 20px;
    }
    
    .au-team-card {
        max-width: 100%;
    }
    
    .au-team-card__name {
        font-size: 18px;
    }
    
    .au-team-card__role {
        font-size: 13px;
    }
    
    .au-cta {
        padding: 40px 0;
    }
    
    .au-cta__inner {
        padding: 36px 20px;
    }
    
    .au-cta__icon {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .au-cta__title {
        font-size: 22px;
        margin-bottom: 14px;
        line-height: 1.3;
    }
    
    .au-cta__desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 24px;
    }
    
    .au-cta__buttons {
        gap: 10px;
    }
}
