/* About page - Light / Gold + CMYK Ink-Accent theme (matches home.css, product.css, distributor.css) */

:root {
    --bg0: #faf9f6;
    --bg1: #ffffff;
    --card: rgba(255, 255, 255, .9);
    --card2: rgba(255, 255, 255, 1);
    --stroke: rgba(15, 23, 42, .10);
    --gold: #c9973f;
    --gold2: #c9973f;
    --cream: #f5d08a;
    --text: #0f172a;
    --muted: #64748b;
    --shadow: rgba(15, 23, 42, .10);
    --accent: #06b6d4;
    --cyan: var(--ink-cyan, #06b6d4);
    --magenta: var(--ink-magenta, #e0529c);
    --yellow: var(--ink-yellow, #eab308);
    --violet: var(--ink-key, #7c3aed);
}

body {
    background: var(--bg0) !important;
}

.about-page {
    padding-top: 150px;
    /* clears fixed CMYK strip + trust marquee + navbar */
}

.about-hero {
    position: relative;
    padding: 56px 0 30px;
    background:
        radial-gradient(900px 500px at 20% 10%, rgba(201, 151, 63, .10), transparent 60%),
        radial-gradient(800px 480px at 80% 0%, rgba(6, 182, 212, .08), transparent 55%),
        radial-gradient(700px 500px at 50% 100%, rgba(224, 82, 156, .06), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, 0));
}

.about-hero-content {
    color: var(--text);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 151, 63, .3);
    background: rgba(201, 151, 63, .07);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    color: #8a6a23;
    font-weight: 600;
    letter-spacing: .2px;
    font-size: 14px;
}

.eyebrow .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--cyan), var(--magenta), var(--yellow), var(--violet), var(--cyan));
    box-shadow: 0 0 0 6px rgba(201, 151, 63, .12);
    animation: dotPulseAbout 1.6s ease-in-out infinite;
}

@keyframes dotPulseAbout {

    0%,
    100% {
        transform: scale(1);
        opacity: .95;
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
    }
}

.about-hero h1 {
    margin-top: 16px;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #420993;
}

.about-hero h1 .accent {
    display: inline-block;
    margin-left: 10px;
    color: var(--gold);
    text-shadow: 0 0 22px rgba(201, 151, 63, .18);
    position: relative;
}

.about-hero h1 .accent::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: -10px;
    height: 12px;
    background: radial-gradient(circle at 30% 50%, rgba(201, 151, 63, .35), rgba(201, 151, 63, 0) 65%);
    filter: blur(2px);
}

.importer{
    font-size: clamp(2rem,8vw,2rem);
    animation: spacing 2s ease-in-out infinite alternate;
    background: linear-gradient(to right, #00fbff, #ff00ae,#ffff00,#3c2955);
    border-radius: 10px;
    margin-top: 5px;
    text-align: center;
}
@keyframes spacing {
    from{
        letter-spacing: 2px;
    }
    to{
        letter-spacing: 5px;
    }
    
}

.lead {
    margin-top: 14px; 
    font-size: 16.5px;
    max-width: 620px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.badge-3d {
    padding: 10px 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(201, 151, 63, .25);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
    color: #475569;
    font-weight: 700;
    position: relative;
    transform: translateZ(0);
}

.badge-3d::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(600px 120px at 20% 0%, rgba(201, 151, 63, .16), transparent 50%);
    opacity: .8;
    pointer-events: none;
}

.hero-badges .badge-3d:nth-child(1) {
    border-color: rgba(6, 182, 212, .3);
}

.hero-badges .badge-3d:nth-child(2) {
    border-color: rgba(224, 82, 156, .3);
}

.hero-badges .badge-3d:nth-child(3) {
    border-color: rgba(234, 179, 8, .35);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
    align-items: center;
}

.btn-about-primary {
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold2), var(--cream));
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(201, 151, 63, .25);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    isolation: isolate;
}

.btn-about-primary::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease;
}

.btn-about-primary:hover::before {
    opacity: .55;
}

.btn-about-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 26px 68px rgba(201, 151, 63, .32);
}

.btn-about-secondary {
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font-weight: 800;
    border: 1px solid rgba(15, 23, 42, .10);
    display: inline-flex;
    align-items: center;
    transition: transform .25s ease, background .25s ease;
}

.btn-about-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(201, 151, 63, .08);
}

/* 3D card */
.about-hero-3d-card {
    position: relative;
    height: 520px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(201, 151, 63, .18);
    box-shadow: 0 30px 90px rgba(15, 23, 42, .12);
    transform-style: preserve-3d;
    overflow: hidden;
}

.card-sheen {
    position: absolute;
    inset: -80px -80px auto -80px;
    height: 220px;
    background: linear-gradient(115deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0));
    transform: rotate(-8deg);
    opacity: .6;
}

.about-hero-3d-card:hover {
    transform: translateY(-6px) rotateX(1deg);
    transition: transform .35s ease;
}

.card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.model {
    width: 112px;
    height: 64px;
    position: relative;
    transform-style: preserve-3d;
}

.layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 110px;
    height: 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201, 151, 63, .3), rgba(6, 182, 212, .12));
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .10);
}

.card-title {
    color: #8a6a23;
    font-weight: 900;
    letter-spacing: .2px;
    margin-top: 6px;
}

.card-spec {
    margin: 18px 0px 8px 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(15, 23, 42, .025);
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 16px;
}

.spec-row i {
    color: var(--gold);
}

.card-spec .spec-row:nth-child(1) i {
    color: var(--cyan);
}

.card-spec .spec-row:nth-child(2) i {
    color: var(--magenta);
}

.card-spec .spec-row:nth-child(3) i {
    color: var(--yellow);
}

.spec-row span {
    font-weight: 700;
    color: #0f172a;
}

.card-photo {
    margin-top: auto;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(15, 23, 42, .03);
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.1);
    transform: scale(1.02);
}

/* Sections */
.section-head {
    text-align: center;
    margin-bottom: 26px;
}

.section-head-light {
    color: var(--text);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: #8a6a23;
    font-weight: 800;
    letter-spacing: .5px;
    font-size: 13px;
    text-transform: uppercase;
}

.section-head h2 {
    margin-top: 10px;
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
}

.section-head p {
    margin-top: 10px;
    color: var(--muted);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* USP cards */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.usp-card {
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 16px 50px rgba(15, 23, 42, .07);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}

.usp-card::after {
    content: "";
    position: absolute;
    inset: -120px -80px auto -80px;
    height: 220px;
    background: radial-gradient(closest-side, rgba(201, 151, 63, .12), transparent 70%);
    transform: rotate(-10deg);
    pointer-events: none;
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 65px rgba(15, 23, 42, .12);
}

.usp-grid .usp-card:nth-child(1):hover {
    border-color: rgba(6, 182, 212, .35);
}

.usp-grid .usp-card:nth-child(2):hover {
    border-color: rgba(224, 82, 156, .35);
}

.usp-grid .usp-card:nth-child(3):hover {
    border-color: rgba(234, 179, 8, .4);
}

.usp-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 151, 63, .10);
    border: 1px solid rgba(201, 151, 63, .25);
    color: var(--gold);
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.usp-grid .usp-card:nth-child(1) .usp-icon {
    color: var(--cyan);
    background: rgba(6, 182, 212, .10);
    border-color: rgba(6, 182, 212, .28);
}

.usp-grid .usp-card:nth-child(2) .usp-icon {
    color: var(--magenta);
    background: rgba(224, 82, 156, .10);
    border-color: rgba(224, 82, 156, .28);
}

.usp-grid .usp-card:nth-child(3) .usp-icon {
    color: var(--yellow);
    background: rgba(234, 179, 8, .12);
    border-color: rgba(234, 179, 8, .3);
}

.usp-card h3 {
    margin-top: 14px;
    font-weight: 900;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

.usp-card p {
    margin-top: 10px;
    color: var(--muted);
    position: relative;
    z-index: 1;
}

/* Price campaign */
.price-campaign {
    margin-top: 12px;
    padding: 30px 0 20px;
    background:
        radial-gradient(1000px 550px at 20% 10%, rgba(201, 151, 63, .08), transparent 55%),
        radial-gradient(800px 420px at 85% 30%, rgba(6, 182, 212, .07), transparent 55%),
        radial-gradient(700px 450px at 50% 100%, rgba(224, 82, 156, .05), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0));
}

.campaign-sticker {
    height: 100%;
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    position: relative;
    overflow: hidden;
}

.campaign-sticker::before {
    content: "";
    position: absolute;
    inset: -200px -120px auto -120px;
    height: 280px;
    background: linear-gradient(90deg, rgba(201, 151, 63, .10), rgba(6, 182, 212, .08), rgba(224, 82, 156, .06));
    transform: rotate(-10deg);
    opacity: .7;
}

.sticker-top {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8a6a23;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.pulse {
    width: 12px;
    height: 12px;
    background: var(--magenta);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(224, 82, 156, .35);
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 82, 156, .35)
    }

    70% {
        box-shadow: 0 0 0 16px rgba(224, 82, 156, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(224, 82, 156, 0)
    }
}

.campaign-sticker h2 {
    margin-top: 12px;
    font-weight: 950;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

.campaign-sticker p {
    margin-top: 10px;
    color: var(--muted);
    position: relative;
    z-index: 1;
}

.campaign-list {
    margin-top: 14px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.campaign-list li {
    color: #0f172a;
    font-weight: 700;
}

.campaign-list i {
    color: var(--gold);
    margin-right: 10px;
}

.campaign-list li:nth-child(1) i {
    color: var(--cyan);
}

.campaign-list li:nth-child(2) i {
    color: var(--magenta);
}

.campaign-list li:nth-child(3) i {
    color: var(--yellow);
}

.campaign-cta {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-note {
    color: var(--muted);
    font-weight: 700;
}

.campaign-compare {
    height: 100%;
    padding: 22px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    position: relative;
    overflow: hidden;
}

.compare-header h3 {
    color: #0f172a;
    font-weight: 950;
}

.compare-header p {
    color: var(--muted);
    margin-top: 6px;
}

.compare-table {
    margin-top: 14px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
}

.cmp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 12px 14px;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    color: #0f172a;
    font-weight: 700;
}

.cmp-row:last-child {
    border-bottom: none;
}

.cmp-head {
    background: linear-gradient(135deg, rgba(201, 151, 63, .12), rgba(6, 182, 212, .08));
    color: #8a6a23;
    font-weight: 950;
}

.cmp-us {
    color: var(--gold);
    font-weight: 900;
}

.campaign-photos {
    margin-top: 18px;
    position: relative;
    height: 150px;
}

.float-photo {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .16);
}

.float-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

.float-photo.p1 {
    width: 150px;
    height: 130px;
    left: 0;
    top: 10px;
    transform: rotate(-7deg);
}

.float-photo.p2 {
    width: 170px;
    height: 140px;
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(3deg);
}

.float-photo.p3 {
    width: 150px;
    height: 130px;
    right: 0;
    top: 25px;
    transform: rotate(9deg);
}

/* Counters */
.counters {
    padding: 40px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.counter-card {
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .06);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.counter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.counter-grid .counter-card:nth-child(1)::before {
    background: var(--cyan);
}

.counter-grid .counter-card:nth-child(2)::before {
    background: var(--magenta);
}

.counter-grid .counter-card:nth-child(3)::before {
    background: var(--yellow);
}

.counter-grid .counter-card:nth-child(4)::before {
    background: var(--violet);
}

.counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(15, 23, 42, .12);
}

.counter-value {
    font-size: 42px;
    font-weight: 1000;
    color: #0f172a;
}

.counter-label {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 900;
    color: var(--gold);
}

.counter-grid .counter-card:nth-child(1) .counter-label {
    color: var(--cyan);
}

.counter-grid .counter-card:nth-child(2) .counter-label {
    color: var(--magenta);
}

.counter-grid .counter-card:nth-child(3) .counter-label {
    color: var(--yellow);
}

.counter-grid .counter-card:nth-child(4) .counter-label {
    color: var(--violet);
}

.counter-title {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    margin: 0;
    border-radius: 26px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .10);
    position: relative;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.gallery-grid .gallery-item:nth-child(1):hover {
    border-color: rgba(6, 182, 212, .4);
    box-shadow: 0 26px 70px rgba(6, 182, 212, .18);
}

.gallery-grid .gallery-item:nth-child(2):hover {
    border-color: rgba(224, 82, 156, .4);
    box-shadow: 0 26px 70px rgba(224, 82, 156, .18);
}

.gallery-grid .gallery-item:nth-child(3):hover {
    border-color: rgba(234, 179, 8, .45);
    box-shadow: 0 26px 70px rgba(234, 179, 8, .18);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .35s ease;
    filter: contrast(1.05) saturate(1.1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item figcaption {
    padding: 16px 16px 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .55));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.gallery-item .cap {
    font-weight: 950;
    color: #ffffff;
}

.gallery-item .sub {
    color: rgba(255, 255, 255, .75);
    font-weight: 800;
}

@media(max-width: 991px) {
    .about-hero h1 {
        font-size: 38px;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .campaign-photos {
        height: 170px;
    }

    .float-photo.p2 {
        left: 55%;
    }
}

@media(max-width: 576px) {
    .about-hero-3d-card {
        height: 400px;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .cmp-row {
        grid-template-columns: 1fr;
    }
}