/* =========================================================
   HAMIDA TRADERS — ABOUT PAGE V2
   Page-specific styles only.
   Shared header/footer/base styles are intentionally excluded.
   ========================================================= */

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    background: #041522;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(23, 105, 210, .28), transparent 30%),
        radial-gradient(circle at 68% 82%, rgba(22, 130, 87, .13), transparent 26%),
        linear-gradient(145deg, #041522, #082540 57%, #071622);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .09;
    background-image:
        linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 30px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 56px;
    align-items: center;
    min-height: 610px;
    padding: 76px 0;
}

.hero h1 {
    max-width: 620px;
    margin: 0 0 18px;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.02;
    letter-spacing: -.045em;
    font-weight: 780;
}

.hero h1 span {
    display: inline;
    background: linear-gradient(90deg, #8bbcff, #d5e6ff 66%, #9be0c3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy {
    max-width: 660px;
    color: #b3c5d5;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    min-height: 50px;
    padding: 0 19px;
    border-radius: 11px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 850;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #fff, #edf4fb);
    color: #061a2d;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .045);
    color: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}


/* COMPANY SNAPSHOT */

.snapshot {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.snapshot-card {
    width: min(440px, 100%);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 33, 56, .91),
            rgba(11, 47, 77, .72)
        );
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

.snapshot-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.snapshot-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(22, 130, 87, .15);
    color: #8ce0ba;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .11em;
}

.snapshot-card h3 {
    margin: 17px 0 8px;
    font-size: 23px;
    line-height: 1.15;
    color: #fff;
}

.snapshot-card p {
    margin: 0;
    color: #aabccd;
    font-size: 11.5px;
    line-height: 1.72;
}

.snapshot-ready {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    margin-top: 20px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(112, 213, 170, .15);
    background:
        linear-gradient(
            135deg,
            rgba(22, 130, 87, .13),
            rgba(23, 105, 210, .08)
        );
}

.ready-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(22, 130, 87, .18);
    color: #8ce0ba;
    font-size: 12px;
    font-weight: 900;
}

.snapshot-ready small {
    display: block;
    color: #70d5aa;
    font-size: 8px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .13em;
}

.snapshot-ready strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
}

.snapshot-ready em {
    display: block;
    margin-top: 5px;
    color: #aabccd;
    font-size: 10px;
    line-height: 1.55;
    font-style: normal;
}

.snapshot-line {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 22px 0;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.snapshot-item {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .06);
}

.snapshot-item small {
    display: block;
    color: #74d3aa;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.snapshot-item strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 13px;
}

.snapshot-foot {
    margin-top: 14px;
    padding: 13px 14px;
    border-radius: 13px;
    background: rgba(23, 105, 210, .10);
    color: #a9c8ef;
    font-size: 10.5px;
    line-height: 1.6;
}


/* COMMON ABOUT SECTIONS */

.section {
    padding: 94px 16px;
}

.wrap {
    width: min(1180px, 100%);
    margin: auto;
}

.section-kicker {
    color: #168257;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
}

.section h2 {
    margin: 10px 0 0;
    font-size: clamp(34px, 4.3vw, 54px);
    line-height: 1.08;
    letter-spacing: -.04em;
    color: #061a2d;
}

.section-lead {
    max-width: 760px;
    color: #68798a;
    font-size: 13px;
    line-height: 1.8;
    margin: 16px 0 0;
}


/* STORY */

.story {
    background: #fff;
}

.story-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 52px;
    align-items: start;
    margin-top: 40px;
}

.story-panel {
    padding: 28px;
    border: 1px solid #dbe5ed;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbfd, #f1f6fa);
    box-shadow: 0 16px 50px rgba(6, 26, 45, .05);
}

.story-panel .mini {
    color: #168257;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.story-panel h3 {
    margin: 12px 0 10px;
    color: #061a2d;
    font-size: 24px;
    line-height: 1.18;
}

.story-panel p {
    margin: 0;
    color: #68798a;
    font-size: 12.5px;
    line-height: 1.75;
}

.story-points {
    display: grid;
    gap: 12px;
}

.story-row {
    position: relative;
    padding: 22px 22px 22px 78px;
    border: 1px solid #dce5ed;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(6, 26, 45, .05);
    transition: .25s;
}

.story-row:hover {
    transform: translateX(5px);
    box-shadow: 0 18px 36px rgba(6, 26, 45, .09);
}

.story-row span {
    position: absolute;
    left: 22px;
    top: 21px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #061a2d;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.story-row h3 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #14283d;
}

.story-row p {
    margin: 0;
    color: #68798a;
    font-size: 12px;
}


/* IDENTITY */

.identity {
    background:
        linear-gradient(
            135deg,
            #051624 0%,
            #0a2d49 52%,
            #0c3c57 100%
        );
    color: #fff;
    position: relative;
    overflow: hidden;
}

.identity::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    right: -150px;
    top: -175px;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, .025),
        0 0 0 140px rgba(255, 255, 255, .015);
}

.identity .section-kicker {
    color: #70d5aa;
}

.identity h2 {
    color: #fff;
}

.identity .section-lead {
    color: #a9bdcf;
}

.identity-grid {
    position: relative;
    z-index: 2;
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.identity-card {
    min-height: 220px;
    padding: 23px;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, .1);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .055),
            rgba(255, 255, 255, .025)
        );
    transition: .25s;
}

.identity-card:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 186, 255, .25);
}

.identity-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(74, 145, 239, .16);
    color: #9bc2f4;
    margin-bottom: 22px;
    font-size: 10px;
    font-weight: 900;
}

.identity-card small {
    color: #70d5aa;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
}

.identity-card h3 {
    margin: 6px 0 8px;
    font-size: 15px;
}

.identity-card p {
    margin: 0;
    color: #a7bacb;
    font-size: 11.5px;
    line-height: 1.65;
}


/* APPROACH */

.approach {
    background: linear-gradient(180deg, #f8fbfd, #f2f6fa);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 38px;
}

.approach-card {
    padding: 25px;
    border: 1px solid #dce5ed;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(5, 28, 48, .045);
}

.approach-card .no {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: #edf4ff;
    color: #075fcf;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 25px;
}

.approach-card small {
    color: #168257;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.approach-card h3 {
    margin: 7px 0 8px;
    color: #061a2d;
    font-size: 18px;
}

.approach-card p {
    margin: 0;
    color: #6d8092;
    font-size: 12px;
    line-height: 1.7;
}


/* VALUES */

.values {
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.value-card {
    padding: 22px;
    border: 1px solid #dce5ed;
    border-radius: 17px;
    background: #fff;
}

.value-card strong {
    display: block;
    color: #061a2d;
    font-size: 15px;
    margin-bottom: 7px;
}

.value-card p {
    margin: 0;
    color: #6d8092;
    font-size: 11.5px;
    line-height: 1.65;
}


/* FINAL CTA */

.cta {
    padding: 24px 16px 90px;
    background: #f2f6fa;
}

.cta-box {
    position: relative;
    overflow: hidden;
    width: min(1180px, 100%);
    margin: auto;
    border-radius: 26px;
    padding: 42px;
    background:
        linear-gradient(
            105deg,
            #071d31 0%,
            #0b4b82 55%,
            #168257 100%
        );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 28px 70px rgba(6, 26, 45, .18);
}

.cta-box::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, .035),
        0 0 0 110px rgba(255, 255, 255, .02);
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
}

.cta-box p {
    margin: 10px 0 0;
    color: #dceaff;
    font-size: 13px;
    max-width: 680px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: 570px;
    }

    .snapshot {
        display: none;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .identity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {

    .hero-inner {
        width: calc(100% - 24px);
        padding: 58px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section {
        padding: 64px 12px;
    }

    .identity-grid,
    .approach-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 15px 12px 64px;
    }

    .cta-box {
        padding: 28px 22px;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {

    .btn,
    .story-row,
    .identity-card {
        transition: none;
    }

    .btn:hover,
    .story-row:hover,
    .identity-card:hover {
        transform: none;
    }
}
/* About: reduce only WHO WE ARE top spacing */
.story.section { padding-top: 60px; }

/* ABOUT FINAL CTA ONLY - KEEP BUTTON TEXT ON ONE LINE */
.cta .btn-primary { white-space: nowrap; }


.cta .btn-primary { white-space: nowrap; font-size: 12px; padding: 0 16px; }

.cta-box h2 { font-size: clamp(22px, 2.4vw, 32px); }

