:root { --orange:#ed5138; --black:#111; --gray:#777; --light:#f8f8f8; --border:#ececec; }
.about-hero { width: 90%; margin: 54px auto 0; display: grid; grid-template-columns: 360px minmax(0,1fr); gap: 14px; align-items: stretch; }
.identity-card { background: var(--orange); border-radius: 8px; min-height: 440px; padding: 20px 18px 18px; color: #fff; display: flex; flex-direction: column; overflow: hidden; }
.identity-logo { flex: 1; display: flex; align-items: flex-start; }
.identity-logo svg { width: 178px; height: 178px; }
.identity-card h1 { margin: 0 0 10px; font-size: 30px; line-height: 1.15; letter-spacing: -.2px; }
.identity-card .tagline { margin: 0 0 15px; max-width: 285px; font-size: 16px; line-height: 1.45; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tags span { border: 1px solid rgba(255,255,255,.62); border-radius: 20px; padding: 7px 11px; font-size: 14px; line-height: 1; white-space: nowrap; }
.about-right { min-width: 0; display: grid; grid-template-rows: minmax(430px,1fr) 82px; gap: 10px; }
.about-copy { background: #fafafa; border-radius: 7px; padding: 32px 42px; display: flex; flex-direction: column; justify-content: center; }
.about-label { margin-bottom: 48px; color: #888; font-size: 16px; }
.about-copy h2 { margin: 0 0 26px; max-width: 850px; font-size: 32px; line-height: 1.18; letter-spacing: -.35px; }
.about-copy p { margin: 0; max-width: 900px; color: #333; font-size: 16px; line-height: 1.55; }
.about-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-btn { min-height: 76px; border-radius: 7px; padding: 0 34px; display: flex; align-items: center; justify-content: space-between; font-size: 18px; transition: transform .2s ease, opacity .2s ease; }
.about-btn:hover { transform: translateY(-2px); opacity: .92; }
.about-btn.primary { background: var(--orange); color: #fff; }
.about-btn.secondary { background: #fafafa; color: #111; }

.intro-section { width: 90%; margin: 112px auto 0; text-align: center; }
.intro-section h2 { margin: 0 0 12px; font-size: 40px; font-weight: 500; }
.intro-section p {  margin: 0 auto; color: #333; font-size: 20px; line-height: 1.6; }

.content-section, .process-section { width: 90%; margin: 104px auto 0; }
.section-heading { text-align: center; margin-bottom: 36px; }
.section-heading h2 { margin: 0 0 12px; font-size: 40px; font-weight: 500 }
.section-heading p {  margin: 0 auto; color: #333; font-size: 20px; line-height: 1.5; }
.service-list { display: grid; gap: 12px; }
.service-card { background: #fafafa; border-radius: 11px; padding: 30px 42px; }
.service-card h3 { margin: 0 0 10px; font-size: 21px; }
.service-card .service-sub { margin-bottom: 12px; font-size: 15px; }
.service-card p { margin: 0; max-width: 900px; color: #333; font-size: 16px; line-height: 1.55; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.process-card { min-height: 170px; padding: 24px 20px; background: #fafafa; border-radius: 7px; }
.process-card h3 { margin: 0 0 15px; text-align: center; font-size: 16px; }
.process-card p { margin: 0; color: #333; font-size: 14px; line-height: 1.5; }

.about-work-cta { width: 90%; margin: 100px auto 112px; text-align: center; }
.about-work-cta h2 { margin: 0 0 12px; font-size: 40px; }
.about-work-cta p {  margin: 0 auto 20px; color: #333; font-size: 16px; line-height: 1.5; }
.work-btn { display: inline-flex; align-items: center; gap: 12px; padding: 13px 24px; background: var(--orange); color: #fff; border-radius: 5px; font-size: 18px; font-weight: 500; }

@media (max-width: 1100px) {
    .about-hero, .intro-section, .content-section, .process-section, .about-work-cta { width: 72%; }
    .about-hero { grid-template-columns: 235px minmax(0,1fr); }
    .identity-card { min-height: 420px; }
    .about-copy { padding: 30px; }
}
@media (max-width: 768px) {
    .about-hero { grid-template-columns: 1fr; }
    .identity-card { min-height: 260px; }
    .identity-logo svg { width: 120px; height: 120px; }
    .about-right { grid-template-rows: auto auto; }
    .about-copy { padding: 30px 25px; }
    .about-actions { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .about-hero, .intro-section, .content-section, .process-section, .about-work-cta { width: 90%; }
}
@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
}



/* =========================
   SERVICES ACCORDION
========================= */

.service-list {
    width: 100%;
}

.service-card {
    border-top: 1px solid #ddd;
}

.service-card:last-child {
    border-bottom: 1px solid #ddd;
}


/* TITLE ROW */

.service-toggle {
    width: 100%;
    border: none;
    background: transparent;

    padding: 28px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;
    cursor: pointer;

    color: inherit;
}


/* TITLE */

.service-toggle h3 {
    margin: 0;

    font-size: 26px;
    font-weight: 600;

    transition: opacity 0.3s ease;
}


/* SUBTITLE DEFAULT HIDDEN */

.service-sub {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    margin-top: 0;

    font-size: 14px;

    transition:
        max-height 0.35s ease,
        opacity 0.3s ease,
        margin-top 0.3s ease;
}


/* ARROW */

.service-arrow {
    font-size: 28px;
    line-height: 1;

    display: inline-block;

    transition: transform 0.35s ease;
}


/* DESCRIPTION DEFAULT HIDDEN */

.service-content {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;
}

.service-content p {
    margin: 0;

    padding: 0 70px 28px 0;

    max-width: 750px;

    font-size: 16px;
    line-height: 1.7;

    opacity: 0.7;
}


/* =========================
   OPEN
========================= */

.service-card.active .service-sub {
    max-height: 50px;

    opacity: 5.6;

    margin-top: 7px;
}


/* Arrow DOWN → UP */

.service-card.active .service-arrow {
    transform: rotate(180deg);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .service-toggle {
        padding: 22px 0;
    }

    .service-toggle h3 {
        font-size: 20px;
    }

    .service-arrow {
        font-size: 24px;
    }

    .service-content p {
        padding-right: 35px;
        font-size: 15px;
    }

}

.service-toggle h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}
.service-card {
    background: #fafafa;
    border-radius: 11px;
    padding: 2px 42px;
}

.about-copy h2 {
   font-weight: 500;
}

.identity-card h1 {
    font-weight: 500;
}

.service-content p {
    opacity: 5.7;
}

.service-card.active .service-sub {
    max-height: 50px;
    opacity: 5.6;
    margin-top: 20px !important;
}
.service-card .service-sub {
    margin-bottom: 12px;
    font-size: 18px;
}
.service-content p {
    margin: 0;
    padding: 0 70px 28px 0;
    max-width: 1080px;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.7;
}

