

:root {
    --red: #DA2128;
    --red-dark: #A8151B;
    --red-deeper: #7A0E12;
    --yellow: #FFC300;
    --yellow-hot: #FFD84A;
    --white: #FFFFFF;
}

/* ══════════════════════════════════════════════════════════════
   ZORPIDO — ABOUT US HERO  (image version, brand consistent)
   ══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --red: #E8150B;
    --red-dark: #C01008;
    --red-deeper: #8A0A06;
    --yellow: #FFD200;
    --yellow-deep: #F5C400;
    --white: #FFFFFF;
}

/* ──────────────────────────────────────────
   SECTION WRAPPER
────────────────────────────────────────── */
.about-us-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--yellow);
    border-bottom: 4px solid var(--red);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ──────────────────────────────────────────
   DOT GRID (yellow side)
────────────────────────────────────────── */
.a-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(168, 21, 27, .1) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
}

/* ──────────────────────────────────────────
   RED DIAGONAL SLAB
────────────────────────────────────────── */
.a-slash {
    position: absolute;
    top: -15%;
    left: -6%;
    width: 50%;
    height: 140%;
    background: var(--red);
    transform: skewX(-7deg);
    z-index: 1;
}

.a-slash::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, .04) 0px, rgba(255, 255, 255, .04) 2px,
            transparent 2px, transparent 20px);
}

/* ──────────────────────────────────────────
   DARK ACCENT STRIP
────────────────────────────────────────── */
.a-strip {
    position: absolute;
    top: -15%;
    left: calc(44% - 5px);
    width: 10px;
    height: 140%;
    background: var(--red-deeper);
    transform: skewX(-7deg);
    z-index: 2;
}

/* ──────────────────────────────────────────
   GHOST TEXT
────────────────────────────────────────── */
.a-ghost-text {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: .08em;
    color: rgba(168, 21, 27, .06);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    user-select: none;
}

.a-ghost-1 {
    top: -8%;
    right: 2%;
    transform: rotate(-5deg);
}

.a-ghost-2 {
    bottom: -6%;
    right: 5%;
    transform: rotate(3deg);
    font-size: clamp(3rem, 7vw, 6rem);
}

/* ──────────────────────────────────────────
   RED BOTTOM RULE
────────────────────────────────────────── */
.a-rule {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--red);
    z-index: 5;
}

/* ──────────────────────────────────────────
   LEFT VISUAL — image + label
────────────────────────────────────────── */
.a-visual {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 40px 48px 40px 32px;
    /* counter the skew so children sit straight */
    transform: skewX(0deg);
}

/* ── IMAGE ── */
.a-visual-img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.28),
        0 2px 8px rgba(0, 0, 0, 0.18);
    display: block;

    /* Yellow badge border on hover */
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.a-visual-img:hover {
    border-color: var(--yellow);
    transform: scale(1.02);
}

/* Yellow corner accent on image */
.a-visual::before {
    content: '';
    position: absolute;
    bottom: calc(50% - 140px - 20px);
    left: 24px;
    width: 28px;
    height: 28px;
    border-left: 4px solid var(--yellow);
    border-bottom: 4px solid var(--yellow);
    border-radius: 0 0 0 6px;
    opacity: 0.7;
    pointer-events: none;
}

.a-visual::after {
    content: '';
    position: absolute;
    top: calc(50% - 140px - 20px);
    right: 44px;
    width: 28px;
    height: 28px;
    border-right: 4px solid var(--yellow);
    border-top: 4px solid var(--yellow);
    border-radius: 0 6px 0 0;
    opacity: 0.7;
    pointer-events: none;
}

/* Emoji badge over image */
.a-visual .emoji {
    position: absolute;
    bottom: calc(50% - 130px);
    right: 38px;
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    line-height: 1;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* "Our Story" label */
.a-visual .vl {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--yellow);
    letter-spacing: .28em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ──────────────────────────────────────────
   RIGHT BODY — yellow side
────────────────────────────────────────── */
.a-body {
    position: relative;
    z-index: 4;
    margin-left: auto;
    padding: 72px 7% 100px 4%;
    max-width: 560px;
    width: 56%;
}

/* ──────────────────────────────────────────
   TAG
────────────────────────────────────────── */
.a-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 5px 18px 4px 14px;
    margin-bottom: 18px;
    clip-path: polygon(12px 0, 100% 0, 100% 100%, 12px 100%, 0 50%);
    animation: tagIn .5s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes tagIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ──────────────────────────────────────────
   TITLES
────────────────────────────────────────── */
.a-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.4rem, 7.5vw, 5.6rem);
    line-height: .92;
    letter-spacing: .03em;
    color: var(--red-dark);
    margin: 0;
    animation: riseUp .5s .1s cubic-bezier(.22, 1, .36, 1) both;
}

.a-title-2 {
    font-size: clamp(3.4rem, 7.5vw, 5.6rem);
    line-height: .92;
    color: transparent;
    -webkit-text-stroke: 2.5px var(--red-dark);
    margin: 0 0 22px;
    animation: riseUp .5s .18s cubic-bezier(.22, 1, .36, 1) both;
}

/* ──────────────────────────────────────────
   BAR
────────────────────────────────────────── */
.a-bar {
    width: 56px;
    height: 5px;
    background: var(--red);
    margin-bottom: 20px;
    animation: barGrow .45s .28s ease both;
}

@keyframes barGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 56px;
        opacity: 1;
    }
}

/* ──────────────────────────────────────────
   DESCRIPTION
────────────────────────────────────────── */
.a-desc {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--red-deeper);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 34px;
    animation: riseUp .5s .26s cubic-bezier(.22, 1, .36, 1) both;
}

.a-desc strong {
    font-weight: 700;
    color: var(--red-dark);
    background: rgba(218, 33, 40, .08);
    padding: 0 4px 1px;
    border-radius: 2px;
}

/* ──────────────────────────────────────────
   STAT PILLS
────────────────────────────────────────── */
.a-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    animation: riseUp .5s .34s cubic-bezier(.22, 1, .36, 1) both;
}

.a-stat {
    background: var(--red);
    padding: 8px 20px 8px 14px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background 0.2s ease;
}

.a-stat:hover {
    background: var(--red-dark);
}

.a-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--yellow);
    letter-spacing: .06em;
}

.a-stat-label {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-top: 1px;
}

/* ──────────────────────────────────────────
   WAVE
────────────────────────────────────────── */
.a-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

.a-wave svg {
    display: block;
    width: 100%;
}

/* ──────────────────────────────────────────
   ANIMATIONS
────────────────────────────────────────── */
@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 960px) ── */
@media (max-width: 960px) {
    .about-us-hero {
        flex-direction: column;
        min-height: auto;
        padding-bottom: 60px;
    }

    /* Reset slab so it becomes a full-width top banner */
    .a-slash {
        top: 0;
        left: 0;
        width: 100%;
        height: 340px;
        transform: skewX(0deg);
        skewX: none;
    }

    .a-strip {
        top: 330px;
        left: 0;
        width: 100%;
        height: 10px;
        transform: skewX(0deg);
    }

    /* Visual sits inside the top red block */
    .a-visual {
        position: relative;
        width: 100%;
        height: 340px;
        padding: 32px 24px 24px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    .a-visual::before,
    .a-visual::after {
        display: none;
    }

    .a-visual-img {
        max-width: 200px;
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }

    .a-visual .emoji {
        position: static;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        flex-shrink: 0;
    }

    .a-visual .vl {
        font-size: .85rem;
        letter-spacing: .22em;
    }

    /* Body below the red block */
    .a-body {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 44px 32px 80px;
    }

    /* Ghost words scale down */
    .a-ghost-1 {
        font-size: 4rem;
        top: 5px;
        right: 2%;
    }

    .a-ghost-2 {
        font-size: 3rem;
        bottom: 10px;
        right: 3%;
    }
}

/* ── MOBILE (≤ 560px) ── */
@media (max-width: 560px) {
    .a-slash {
        height: 300px;
    }

    .a-strip {
        top: 290px;
    }

    .a-visual {
        height: 300px;
        flex-direction: column;
        gap: 12px;
        padding: 28px 20px 20px;
        justify-content: center;
    }

    .a-visual-img {
        max-width: 180px;
        border-radius: 10px;
    }

    .a-visual .emoji {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .a-body {
        padding: 36px 20px 72px;
    }

    .a-stats {
        flex-direction: column;
        gap: 8px;
    }

    .a-stat {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 10px 20px 10px 14px;
        clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    }

    .a-stat-num {
        font-size: 1.4rem;
    }

    .a-ghost-1,
    .a-ghost-2 {
        display: none;
    }

    .a-dots {
        background-size: 20px 20px;
    }
}

/* ── SMALL MOBILE (≤ 380px) ── */
@media (max-width: 380px) {
    .a-visual-img {
        max-width: 150px;
    }

    .a-title,
    .a-title-2 {
        font-size: 3rem;
    }

    .a-body {
        padding: 28px 16px 64px;
    }
}
/* Print Styles */

    .about-us-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .about-us-section {
        background: white;
        border-radius: 20px;
        padding: 50px;
        margin-bottom: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .about-us-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .about-us-section h2 {
        color: #dc0000;
        font-size: 2.5em;
        margin-bottom: 25px;
        position: relative;
        display: inline-block;
    }

    .about-us-section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: #ffd700;
        border-radius: 2px;
    }

    .about-us-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .about-us-feature-card {
        background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 2px solid transparent;
    }

    .about-us-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(220, 0, 0, 0.2);
        border-color: #ffd700;
    }

    .about-us-feature-card .icon {
        font-size: 3em;
        margin-bottom: 15px;
        display: block;
    }

    .about-us-feature-card h3 {
        color: #dc0000;
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .about-us-values-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }

    .about-us-value-item {
        background: #dc0000;
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: default;
    }

    .about-us-value-item:hover {
        background: #ffd700;
        color: #dc0000;
        transform: scale(1.05);
    }

    .about-us-promise-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .about-us-promise-item {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 12px;
        border-left: 5px solid #dc0000;
        transition: all 0.3s ease;
    }

    .about-us-promise-item:hover {
        background: #fffbf0;
        transform: translateX(5px);
    }

    .about-us-promise-item::before {
        content: '✔';
        color: #dc0000;
        font-weight: bold;
        margin-right: 10px;
        font-size: 1.2em;
    }

   .about-us-cta-section {
       background: linear-gradient(135deg, #ffd700 0%, #ffd700 100%);
       color: #dc0000;
       text-align: center;
       padding: 60px 20px;
       border-radius: 20px;
       margin-top: 40px;
   }

   .about-us-cta-section h2 {
       color: #dc0000;
       font-size: 3.5em;
       font-weight: 600;
       margin-bottom: 20px;
   }

    .about-us-cta-section h2::after {
        background: #ffd700;
    }

    .about-us-cta-section p {
        font-size: 1.2em;
        max-width: 700px;
        margin: 0 auto;
    }


.a-ghost-logo {
    position: absolute;
    opacity: 0.08;
    width: 300px;
    pointer-events: none;
}

.a-ghost-1 {
    top: 10%;
    left: 5%;
}
