/* =================================================================
   ABOUT PAGE — All Sections (v2.0)
   11 Sections: Hero, Story, Mission/Vision, Why Choose Us,
   Process, Workspace, Founder, Clients, Core Values, Culture, CTA
   Supports light / [data-theme="dark"]
   ================================================================= */

/* ── CSS Variables & Shared ─────────────────────────────────── */
:root {
    --about-primary:   #5B5CF0;
    --about-orange:    #F97316;
    --about-pink:      #EC4899;
    --about-green:     #10B981;
    --about-blue:      #3B82F6;
    --about-yellow:    #F59E0B;
    --about-purple:    #8B5CF6;
    --about-radius:    20px;
    --about-radius-sm: 12px;
    --about-shadow:    0 8px 32px rgba(0,0,0,.08);
    --about-shadow-lg: 0 20px 60px rgba(0,0,0,.12);
    --about-bg:        #fff;
    --about-bg-alt:    #f8f9fe;
    --about-text:      #1e293b;
    --about-muted:     #64748b;
    --about-border:    #e2e8f0;
    --about-card-bg:   #fff;
}
[data-theme="dark"] {
    --about-bg:        #0f0f1a;
    --about-bg-alt:    #13131f;
    --about-text:      #f1f5f9;
    --about-muted:     #94a3b8;
    --about-border:    rgba(255,255,255,.08);
    --about-card-bg:   #1a1a2e;
    --about-shadow:    0 8px 32px rgba(0,0,0,.4);
    --about-shadow-lg: 0 20px 60px rgba(0,0,0,.5);
}

.about-page-main { background: var(--about-bg); color: var(--about-text); overflow-x: hidden; }

/* Gradient texts */
.about-gradient-text          { background: linear-gradient(90deg, var(--about-primary), var(--about-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-gradient-text--purple  { background: linear-gradient(90deg, var(--about-primary), var(--about-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-gradient-text--orange  { background: linear-gradient(90deg, var(--about-orange), var(--about-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Shared badge */
.about-section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--about-primary);
    background: rgba(91,92,240,.08);
    border: 1px solid rgba(91,92,240,.2);
    border-radius: 99px; padding: 5px 14px;
    margin-bottom: 18px;
}
.about-section-badge--center { display: flex; justify-content: center; margin: 0 auto 16px; width: fit-content; }
.about-badge-icon { display: flex; align-items: center; }
.about-badge-dot  { width: 7px; height: 7px; border-radius: 50%; background: var(--about-orange); }

[data-theme="dark"] .about-section-badge {
    background: rgba(91,92,240,.15);
    border-color: rgba(91,92,240,.35);
}

/* Center header (shared) */
.about-center-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.about-center-title  { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--about-text); line-height: 1.2; margin-bottom: 16px; }
.about-center-sub    { font-size: 1rem; color: var(--about-muted); line-height: 1.7; }

/* section padding */
.section-padding { padding: 96px 0; }

/* ================================================================
   1. ABOUT HERO
   ================================================================ */
.about-hero-section {
    position: relative; overflow: hidden;
    padding: 100px 0 80px;
    background: var(--about-bg);
}
.about-hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.about-hero-blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .45;
}
.about-hero-blob--1 { width: 500px; height: 500px; background: rgba(91,92,240,.12); top: -120px; left: -100px; }
.about-hero-blob--2 { width: 400px; height: 400px; background: rgba(249,115,22,.08); bottom: -80px; right: 0; }
[data-theme="dark"] .about-hero-blob--1 { opacity: .25; }
[data-theme="dark"] .about-hero-blob--2 { opacity: .2; }

.about-hero-section .container { position: relative; z-index: 1; }
.about-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
@media (max-width: 900px) { .about-hero-inner { grid-template-columns: 1fr; gap: 48px; } }

/* LEFT */
.about-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1.15;
    color: var(--about-text); margin-bottom: 20px;
}
.about-hero-gradient { display: block; }
.about-hero-desc {
    font-size: 1rem; color: var(--about-muted); line-height: 1.75; margin-bottom: 32px; max-width: 480px;
}

.about-hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 36px; }
.about-hero-stat  { display: flex; align-items: center; gap: 10px; }
.about-hero-stat-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-hero-stat-icon--users  { background: rgba(91,92,240,.1);  color: var(--about-primary); }
.about-hero-stat-icon--smile  { background: rgba(249,115,22,.1); color: var(--about-orange); }
.about-hero-stat-icon--star   { background: rgba(245,158,11,.1); color: var(--about-yellow); }
.about-hero-stat-num   { display: block; font-size: 1.35rem; font-weight: 800; color: var(--about-text); line-height: 1; }
.about-hero-stat-label { display: block; font-size: .72rem; color: var(--about-muted); margin-top: 2px; }

.about-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.about-hero-btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--about-primary); color: #fff;
    padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: .95rem;
    text-decoration: none; transition: box-shadow .25s, transform .2s;
}
.about-hero-btn-primary:hover { box-shadow: 0 8px 24px rgba(91,92,240,.4); transform: translateY(-2px); }
.about-hero-btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 2px solid var(--about-border); color: var(--about-text);
    padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: .95rem;
    text-decoration: none; transition: border-color .25s, box-shadow .25s, transform .2s;
}
.about-hero-btn-outline:hover { border-color: var(--about-primary); box-shadow: 0 4px 16px rgba(91,92,240,.15); transform: translateY(-2px); }
.btn-outline-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--about-primary); display: flex; align-items: center; justify-content: center; color: #fff; }
[data-theme="dark"] .about-hero-btn-outline { border-color: rgba(255,255,255,.15); color: #fff; }

/* RIGHT */
.about-hero-visual { position: relative; }
.about-hero-img-wrap { position: relative; }
.about-hero-img { width: 100%; max-width: 540px; border-radius: 24px; display: block; }
.about-hero-badge-card {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--about-card-bg); border-radius: 16px;
    padding: 14px 18px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--about-shadow); border: 1px solid var(--about-border);
}
.about-hero-badge-icon { color: var(--about-primary); display: flex; }
.about-hero-badge-card strong { display: block; font-size: .8rem; color: var(--about-muted); }
.about-hero-badge-highlight { display: block; font-size: 1rem; font-weight: 800; color: var(--about-primary); }
.about-hero-badge-card > div > span:last-child { display: block; font-size: .75rem; color: var(--about-muted); }
.about-hero-cursive {
    font-family: 'Dancing Script', 'Pacifico', cursive, Georgia, serif;
    font-size: 1.1rem; color: var(--about-orange); margin-top: 12px;
    text-align: right; opacity: .85;
}
[data-theme="dark"] .about-hero-badge-card { background: rgba(255,255,255,.07); }

/* ================================================================
   2. OUR STORY
   ================================================================ */
.about-story-section { background: var(--about-bg-alt); }

.about-story-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
@media (max-width: 900px) { .about-story-inner { grid-template-columns: 1fr; } }

.about-story-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2;
    color: var(--about-text); margin-bottom: 12px;
}
.about-story-underline {
    width: 60px; height: 4px; border-radius: 4px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-orange));
    margin-bottom: 24px;
}
.about-story-text { font-size: .97rem; color: var(--about-muted); line-height: 1.75; margin-bottom: 16px; }

/* HORIZONTAL MILESTONES */
.about-story-milestones {
    display: flex; align-items: flex-start;
    margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--about-border);
    flex-wrap: wrap;
}
.about-milestone {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 6px; flex: 1; min-width: 80px;
}
.about-milestone-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-milestone-icon--0 { background: rgba(91,92,240,.1);  color: var(--about-primary); }
.about-milestone-icon--1 { background: rgba(249,115,22,.1); color: var(--about-orange); }
.about-milestone-icon--2 { background: rgba(16,185,129,.1); color: var(--about-green); }
.about-milestone-icon--3 { background: rgba(59,130,246,.1); color: var(--about-blue); }
.about-milestone-connector { flex: 0; align-self: center; color: var(--about-border); margin: 0 4px; margin-bottom: 34px; }
.about-milestone-year  { font-size: 1rem; font-weight: 800; color: var(--about-text); }
.about-milestone-label { font-size: .72rem; color: var(--about-muted); max-width: 80px; }

/* Story image */
.about-story-img-wrap { position: relative; }
.about-story-img      { width: 100%; border-radius: var(--about-radius); box-shadow: var(--about-shadow-lg); display: block; }
.about-story-badge-card {
    position: absolute; bottom: 24px; right: 24px;
    background: var(--about-card-bg); border-radius: 16px;
    padding: 14px 18px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--about-shadow); border: 1px solid var(--about-border); max-width: 220px;
}
.about-story-badge-icon { color: var(--about-primary); flex-shrink: 0; }
.about-story-badge-num  { display: block; font-size: 1.3rem; font-weight: 800; color: var(--about-text); }
.about-story-badge-card > div > span { display: block; font-size: .72rem; color: var(--about-muted); }
.about-story-decoration {
    position: absolute; top: -16px; right: -16px;
    width: 120px; height: 120px; border-radius: 50%;
    border: 2px dashed rgba(91,92,240,.2); z-index: -1;
}
[data-theme="dark"] .about-story-badge-card  { background: rgba(255,255,255,.07); }

/* ================================================================
   3. MISSION & VISION
   ================================================================ */
.about-mission-section { background: var(--about-bg); position: relative; overflow: hidden; }
.about-mission-bg-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(91,92,240,.08) 1px, transparent 1px);
    background-size: 28px 28px; opacity: .5;
}

.about-mv-grid {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 24px; align-items: stretch; margin-bottom: 48px;
}
@media (max-width: 768px) { .about-mv-grid { grid-template-columns: 1fr; gap: 16px; } .about-mv-divider { display: none; } }

.about-mv-card {
    border-radius: var(--about-radius); border: 1px solid var(--about-border);
    padding: 36px 32px; background: var(--about-card-bg); box-shadow: var(--about-shadow);
}
.about-mv-card--mission { background: rgba(91,92,240,.04); border-color: rgba(91,92,240,.15); }
.about-mv-card--vision  { background: rgba(249,115,22,.04);  border-color: rgba(249,115,22,.15); }
[data-theme="dark"] .about-mv-card--mission { background: rgba(91,92,240,.1); }
[data-theme="dark"] .about-mv-card--vision  { background: rgba(249,115,22,.1); }

.about-mv-card-icon {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.about-mv-card-icon--purple { background: rgba(91,92,240,.1);  color: var(--about-primary); }
.about-mv-card-icon--orange { background: rgba(249,115,22,.1); color: var(--about-orange); }
.about-mv-card-title     { font-size: 1.2rem; font-weight: 800; color: var(--about-text); margin-bottom: 8px; }
.about-mv-card-underline { width: 40px; height: 3px; border-radius: 3px; margin-bottom: 16px; }
.about-mv-card-underline--purple { background: var(--about-primary); }
.about-mv-card-underline--orange { background: var(--about-orange); }
.about-mv-card-text { font-size: .93rem; color: var(--about-muted); line-height: 1.7; }

.about-mv-divider {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 8px; width: 80px;
}
.about-mv-logo         { width: 48px; height: auto; }
.about-mv-divider-line { flex: 1; width: 1px; background: var(--about-border); max-height: 60px; }
.about-mv-divider-dot  { width: 10px; height: 10px; border-radius: 50%; background: var(--about-primary); }

/* Pills */
.about-mv-pills { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 768px) { .about-mv-pills { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .about-mv-pills { grid-template-columns: 1fr; } }

.about-mv-pill {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; border-radius: var(--about-radius-sm);
    background: var(--about-card-bg); border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow);
}
.about-mv-pill-icon  { color: var(--about-primary); flex-shrink: 0; margin-top: 2px; }
.about-mv-pill-title { display: block; font-size: .88rem; font-weight: 700; color: var(--about-text); margin-bottom: 4px; }
.about-mv-pill-desc  { display: block; font-size: .78rem; color: var(--about-muted); line-height: 1.5; }

/* ================================================================
   4. WHY CHOOSE US
   ================================================================ */
.about-why-section { background: var(--about-bg-alt); }
.about-why-inner {
    display: grid; grid-template-columns: 380px 1fr;
    gap: 60px; align-items: start;
}
@media (max-width: 960px) { .about-why-inner { grid-template-columns: 1fr; } }

.about-why-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2;
    color: var(--about-text); margin-bottom: 12px;
}
.about-why-underline { width: 60px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--about-primary), var(--about-orange)); margin-bottom: 20px; }
.about-why-desc { font-size: .97rem; color: var(--about-muted); line-height: 1.75; }

/* Feature grid */
.about-why-grid {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 16px; align-items: start;
}
@media (max-width: 768px) { .about-why-grid { grid-template-columns: 1fr; } }
.about-why-cards-col    { display: flex; flex-direction: column; gap: 16px; }
.about-why-cards-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; grid-column: 1 / -1; margin-top: 8px; }

.about-why-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 20px; border-radius: var(--about-radius-sm);
    background: var(--about-card-bg); border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow); transition: box-shadow .25s, transform .2s;
}
.about-why-card:hover { box-shadow: var(--about-shadow-lg); transform: translateY(-2px); }
.about-why-card-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.about-why-card-icon--purple { background: rgba(91,92,240,.1);  color: var(--about-primary); }
.about-why-card-icon--orange { background: rgba(249,115,22,.1); color: var(--about-orange); }
.about-why-card-icon--pink   { background: rgba(236,72,153,.1); color: var(--about-pink); }
.about-why-card-icon--green  { background: rgba(16,185,129,.1); color: var(--about-green); }
.about-why-card-icon--blue   { background: rgba(59,130,246,.1); color: var(--about-blue); }
.about-why-card-icon--yellow { background: rgba(245,158,11,.1); color: var(--about-yellow); }
.about-why-card-title { font-size: .88rem; font-weight: 700; color: var(--about-text); display: block; margin-bottom: 4px; }
.about-why-card-desc  { font-size: .78rem; color: var(--about-muted); line-height: 1.5; margin: 0; }
.about-why-card-line  { width: 28px; height: 2px; border-radius: 2px; margin-top: 8px; }
.about-why-card-line--purple { background: var(--about-primary); }
.about-why-card-line--orange { background: var(--about-orange); }
.about-why-card-line--pink   { background: var(--about-pink); }
.about-why-card-line--green  { background: var(--about-green); }
.about-why-card-line--blue   { background: var(--about-blue); }
.about-why-card-line--yellow { background: var(--about-yellow); }

/* Logo circle */
.about-why-logo-wrap   { position: relative; display: flex; align-items: center; justify-content: center; width: 140px; padding-top: 16px; }
.about-why-logo-ring   { position: absolute; width: 120px; height: 120px; border-radius: 50%; border: 2px dashed rgba(91,92,240,.25); animation: about-spin 20s linear infinite; }
@keyframes about-spin  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.about-why-logo-circle { width: 96px; height: 96px; border-radius: 50%; background: var(--about-card-bg); border: 2px solid var(--about-border); display: flex; align-items: center; justify-content: center; box-shadow: var(--about-shadow-lg); }
.about-why-logo        { width: 56px; height: auto; }
.about-why-logo-dots   { position: absolute; inset: 0; }
.about-why-dot         { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--about-primary); }
.about-why-dot--0 { top: 0; left: 50%; transform: translateX(-50%); }
.about-why-dot--1 { top: 25%; right: 0; }
.about-why-dot--2 { bottom: 25%; right: 0; }
.about-why-dot--3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.about-why-dot--4 { bottom: 25%; left: 0; }
.about-why-dot--5 { top: 25%; left: 0; }

/* ================================================================
   5. OUR PROCESS
   ================================================================ */
.about-process-section { background: var(--about-bg); }
.about-process-inner {
    display: grid; grid-template-columns: 360px 1fr;
    gap: 60px; align-items: start;
}
@media (max-width: 960px) { .about-process-inner { grid-template-columns: 1fr; } }

.about-process-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2;
    color: var(--about-text); margin-bottom: 12px;
}
.about-process-underline { width: 60px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--about-primary), var(--about-orange)); margin-bottom: 20px; }
.about-process-desc { font-size: .97rem; color: var(--about-muted); line-height: 1.75; margin-bottom: 28px; }

.about-process-result-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; border-radius: var(--about-radius-sm);
    background: rgba(91,92,240,.05); border: 1px solid rgba(91,92,240,.15);
}
[data-theme="dark"] .about-process-result-card { background: rgba(91,92,240,.12); }
.about-process-result-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(91,92,240,.1); color: var(--about-primary);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-process-result-title { display: block; font-size: .95rem; font-weight: 700; color: var(--about-text); margin-bottom: 4px; }
.about-process-result-desc  { display: block; font-size: .8rem; color: var(--about-muted); line-height: 1.5; }

/* Process steps */
.about-process-steps { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 8px; }
.about-process-step  { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; flex: 1; min-width: 90px; }

.about-process-step-hexagon {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center; position: relative;
}
.about-process-step-hexagon--purple { background: rgba(91,92,240,.1);  color: var(--about-primary); border: 1.5px solid rgba(91,92,240,.25); }
.about-process-step-hexagon--pink   { background: rgba(236,72,153,.1); color: var(--about-pink);    border: 1.5px solid rgba(236,72,153,.25); }
.about-process-step-hexagon--blue   { background: rgba(59,130,246,.1); color: var(--about-blue);    border: 1.5px solid rgba(59,130,246,.25); }
.about-process-step-hexagon--green  { background: rgba(16,185,129,.1); color: var(--about-green);   border: 1.5px solid rgba(16,185,129,.25); }
.about-process-step-hexagon--orange { background: rgba(249,115,22,.1); color: var(--about-orange);  border: 1.5px solid rgba(249,115,22,.25); }
[data-theme="dark"] .about-process-step-hexagon--purple { background: rgba(91,92,240,.2); }
[data-theme="dark"] .about-process-step-hexagon--pink   { background: rgba(236,72,153,.2); }
[data-theme="dark"] .about-process-step-hexagon--blue   { background: rgba(59,130,246,.2); }
[data-theme="dark"] .about-process-step-hexagon--green  { background: rgba(16,185,129,.2); }
[data-theme="dark"] .about-process-step-hexagon--orange { background: rgba(249,115,22,.2); }

.about-process-step-arrow { align-self: center; color: var(--about-border); margin: 0 4px; margin-bottom: 52px; }
.about-process-step-num   { font-size: .7rem; font-weight: 700; color: var(--about-muted); letter-spacing: .05em; }
.about-process-step-title { font-size: .85rem; font-weight: 700; color: var(--about-text); }
.about-process-step-desc  { font-size: .72rem; color: var(--about-muted); line-height: 1.5; margin: 0; max-width: 90px; }
.about-process-step-dot   { width: 8px; height: 8px; border-radius: 50%; }
.about-process-step-dot--purple { background: var(--about-primary); }
.about-process-step-dot--pink   { background: var(--about-pink); }
.about-process-step-dot--blue   { background: var(--about-blue); }
.about-process-step-dot--green  { background: var(--about-green); }
.about-process-step-dot--orange { background: var(--about-orange); }

.about-process-logo-end { display: flex; align-items: center; justify-content: center; width: 64px; flex-shrink: 0; align-self: center; margin-bottom: 52px; }
.about-process-logo-end img  { width: 48px; }
.about-process-custom-img    { width: 100%; border-radius: var(--about-radius); }

/* ================================================================
   6. OUR WORKSPACE
   ================================================================ */
.about-workspace-section { background: var(--about-bg-alt); }
.about-workspace-inner {
    display: grid; grid-template-columns: 380px 1fr;
    gap: 60px; align-items: start;
}
@media (max-width: 960px) { .about-workspace-inner { grid-template-columns: 1fr; } }

.about-workspace-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.25;
    color: var(--about-text); margin-bottom: 16px;
}
.about-workspace-desc { font-size: .97rem; color: var(--about-muted); line-height: 1.75; margin-bottom: 32px; }

.about-workspace-bullets { display: flex; flex-direction: column; gap: 20px; }
.about-workspace-bullet  { display: flex; align-items: flex-start; gap: 14px; }
.about-workspace-bullet-icon {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    background: rgba(91,92,240,.08); color: var(--about-primary);
    display: flex; align-items: center; justify-content: center;
}
.about-workspace-bullet-title { display: block; font-size: .92rem; font-weight: 700; color: var(--about-text); margin-bottom: 3px; }
.about-workspace-bullet-desc  { display: block; font-size: .8rem; color: var(--about-muted); line-height: 1.5; }

/* Gallery */
.about-workspace-gallery  { display: flex; flex-direction: column; gap: 16px; }
.about-workspace-img-main img { width: 100%; border-radius: var(--about-radius); object-fit: cover; max-height: 300px; display: block; }
.about-workspace-imgs-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-workspace-img-small { position: relative; overflow: hidden; border-radius: var(--about-radius-sm); }
.about-workspace-img-small img { width: 100%; height: 180px; object-fit: cover; display: block; }
.about-workspace-img-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
    padding: 28px 12px 12px;
    display: flex; align-items: flex-end; gap: 8px; color: #fff;
}
.about-workspace-cap-icon                  { flex-shrink: 0; opacity: .85; }
.about-workspace-img-caption strong { display: block; font-size: .78rem; font-weight: 700; line-height: 1.2; }
.about-workspace-img-caption span   { display: block; font-size: .68rem; opacity: .8; line-height: 1.3; }

/* ================================================================
   7. FOUNDER MESSAGE
   ================================================================ */
.about-founder-section { background: var(--about-bg); }
.about-founder-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
@media (max-width: 900px) { .about-founder-inner { grid-template-columns: 1fr; } }

.about-founder-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.25;
    color: var(--about-text); margin-bottom: 12px;
}
.about-founder-underline { width: 60px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--about-primary), var(--about-orange)); margin-bottom: 24px; }
.about-founder-para { font-size: .97rem; color: var(--about-muted); line-height: 1.8; margin-bottom: 16px; }

/* RIGHT */
.about-founder-visual     { position: relative; }
.about-founder-photo-wrap { position: relative; margin-bottom: 20px; }
.about-founder-photo-bg {
    position: absolute; top: -20px; right: -20px; bottom: 20px; left: 20px;
    border-radius: var(--about-radius);
    background: linear-gradient(135deg, rgba(91,92,240,.1), rgba(249,115,22,.1));
    border: 2px dashed rgba(91,92,240,.2); z-index: 0;
}
.about-founder-photo { width: 100%; max-width: 440px; border-radius: var(--about-radius); position: relative; z-index: 1; display: block; }

.about-founder-quote-card {
    background: var(--about-card-bg); border-radius: var(--about-radius);
    border: 1px solid var(--about-border); padding: 24px 28px;
    box-shadow: var(--about-shadow); position: relative;
}
.about-founder-quote-icon { color: var(--about-primary); display: block; margin-bottom: 12px; }
.about-founder-quote-text { font-size: .97rem; color: var(--about-text); line-height: 1.7; margin-bottom: 16px; }
.about-founder-quote-name { display: block; font-size: .95rem; font-weight: 700; color: var(--about-text); }
.about-founder-quote-role { display: block; font-size: .82rem; margin-top: 2px; }
.about-founder-signature  {
    font-family: 'Dancing Script','Pacifico',cursive,Georgia,serif;
    font-size: 1.3rem; color: var(--about-orange); text-align: right; margin-top: 12px;
}
[data-theme="dark"] .about-founder-quote-card { background: rgba(255,255,255,.05); }

/* ================================================================
   8. OUR CLIENTS
   ================================================================ */
.about-clients-section { background: var(--about-bg-alt); }

.about-clients-top {
    display: grid; grid-template-columns: 380px 1fr;
    gap: 48px; align-items: start; margin-bottom: 64px;
}
@media (max-width: 960px) { .about-clients-top { grid-template-columns: 1fr; } }

.about-clients-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2;
    color: var(--about-text); margin-bottom: 12px;
}
.about-clients-underline { width: 60px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--about-primary), var(--about-orange)); margin-bottom: 16px; }
.about-clients-desc { font-size: .93rem; color: var(--about-muted); line-height: 1.75; margin-bottom: 28px; }

.about-clients-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-client-stat {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 16px; border-radius: var(--about-radius-sm);
    background: var(--about-card-bg); border: 1px solid var(--about-border);
}
.about-client-stat-icon  { color: var(--about-primary); margin-bottom: 8px; }
.about-client-stat-num   { font-size: 1.25rem; font-weight: 800; color: var(--about-text); display: block; }
.about-client-stat-label { font-size: .72rem; color: var(--about-muted); display: block; }

/* Brand logos */
.about-clients-brands-label {
    font-size: .82rem; font-weight: 600; color: var(--about-muted); margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.about-clients-brands-label::before,
.about-clients-brands-label::after { content: ''; flex: 1; height: 1px; background: var(--about-border); }
.about-clients-brands-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 600px) { .about-clients-brands-grid { grid-template-columns: repeat(2, 1fr); } }
.about-client-brand-card {
    display: flex; align-items: center; justify-content: center;
    padding: 16px 12px; border-radius: var(--about-radius-sm);
    background: var(--about-card-bg); border: 1px solid var(--about-border);
    min-height: 56px; transition: box-shadow .2s, transform .2s;
}
.about-client-brand-card:hover { box-shadow: var(--about-shadow); transform: translateY(-2px); }
.about-client-brand-name { font-size: .85rem; font-weight: 700; color: var(--about-muted); }

/* TESTIMONIALS */
.about-testimonials-header { text-align: center; margin-bottom: 32px; }
.about-testimonials-grid {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 24px; align-items: center;
}
@media (max-width: 768px) { .about-testimonials-grid { grid-template-columns: 1fr; } }

.about-testi-card {
    background: var(--about-card-bg); border-radius: var(--about-radius);
    border: 1px solid var(--about-border); padding: 28px; box-shadow: var(--about-shadow);
}
.about-testi-quote  { color: var(--about-primary); opacity: .4; display: block; margin-bottom: 14px; }
.about-testi-text   { font-size: .93rem; color: var(--about-text); line-height: 1.75; margin-bottom: 20px; }
.about-testi-author { display: flex; align-items: center; gap: 12px; }
.about-testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--about-primary), var(--about-pink));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem; font-weight: 700;
}
.about-testi-author strong { display: block; font-size: .9rem; font-weight: 700; color: var(--about-text); }
.about-testi-role    { display: block; font-size: .78rem; }
.about-testi-company { display: block; font-size: .75rem; color: var(--about-muted); margin-top: 2px; }

.about-testi-center      { text-align: center; padding: 24px 16px; }
.about-testi-center-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; line-height: 1.3;
    color: var(--about-text); margin-bottom: 20px;
}
.about-testi-center-quote { color: var(--about-primary); opacity: .3; display: block; margin: 0 auto 16px; }
.about-testi-center-sub   { font-size: .88rem; color: var(--about-muted); line-height: 1.65; margin-bottom: 24px; }
.about-testi-dots         { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; }
.about-testi-dot-btn {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; background: var(--about-border); cursor: pointer; padding: 0;
    transition: background .2s, width .2s;
}
.about-testi-dot-btn.active { background: var(--about-primary); width: 20px; border-radius: 4px; }
.about-testi-arrows { display: flex; gap: 12px; justify-content: center; }
.about-testi-prev, .about-testi-next {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--about-border);
    background: var(--about-card-bg); color: var(--about-text);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s, border-color .2s, transform .2s;
}
.about-testi-prev:hover       { background: var(--about-bg-alt); border-color: var(--about-primary); }
.about-testi-next--active     { background: var(--about-primary); border-color: var(--about-primary); color: #fff; }
.about-testi-next--active:hover { transform: scale(1.05); }

/* ================================================================
   9. OUR CORE VALUES
   ================================================================ */
.about-values-section { background: var(--about-bg); position: relative; overflow: hidden; }
.about-values-bg-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(91,92,240,.06) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}

.about-values-cards {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 20px; margin-bottom: 48px;
}
@media (max-width: 1024px) { .about-values-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .about-values-cards { grid-template-columns: 1fr 1fr; } }

.about-value-card {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 28px 24px; border-radius: var(--about-radius);
    background: var(--about-card-bg); border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow); transition: box-shadow .25s, transform .2s;
    position: relative; overflow: hidden;
}
.about-value-card:hover { box-shadow: var(--about-shadow-lg); transform: translateY(-4px); }

.about-value-card-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.about-value-card-icon--purple { background: rgba(91,92,240,.1);  color: var(--about-primary); }
.about-value-card-icon--orange { background: rgba(249,115,22,.1); color: var(--about-orange); }
.about-value-card-icon--green  { background: rgba(16,185,129,.1); color: var(--about-green); }
.about-value-card-icon--blue   { background: rgba(59,130,246,.1); color: var(--about-blue); }
.about-value-card-icon--pink   { background: rgba(236,72,153,.1); color: var(--about-pink); }
[data-theme="dark"] .about-value-card-icon--purple { background: rgba(91,92,240,.2); }
[data-theme="dark"] .about-value-card-icon--orange { background: rgba(249,115,22,.2); }
[data-theme="dark"] .about-value-card-icon--green  { background: rgba(16,185,129,.2); }
[data-theme="dark"] .about-value-card-icon--blue   { background: rgba(59,130,246,.2); }
[data-theme="dark"] .about-value-card-icon--pink   { background: rgba(236,72,153,.2); }

.about-value-card-underline { width: 32px; height: 3px; border-radius: 3px; margin-bottom: 12px; }
.about-value-card-underline--purple { background: var(--about-primary); }
.about-value-card-underline--orange { background: var(--about-orange); }
.about-value-card-underline--green  { background: var(--about-green); }
.about-value-card-underline--blue   { background: var(--about-blue); }
.about-value-card-underline--pink   { background: var(--about-pink); }

.about-value-card-title { font-size: .95rem; font-weight: 700; color: var(--about-text); margin-bottom: 8px; }
.about-value-card-desc  { font-size: .78rem; color: var(--about-muted); line-height: 1.6; flex: 1; margin: 0; }
.about-value-card-num   {
    font-size: 2.2rem; font-weight: 900; color: rgba(91,92,240,.08);
    position: absolute; bottom: 12px; right: 16px; line-height: 1;
}
[data-theme="dark"] .about-value-card-num { color: rgba(255,255,255,.06); }

/* Bottom row */
.about-values-bottom {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; align-items: center;
}
@media (max-width: 768px) { .about-values-bottom { grid-template-columns: 1fr; } }
.about-values-quote-card {
    padding: 32px; border-radius: var(--about-radius);
    background: rgba(91,92,240,.04); border: 1px solid rgba(91,92,240,.15);
}
[data-theme="dark"] .about-values-quote-card { background: rgba(91,92,240,.1); }
.about-values-quote-icon { color: var(--about-primary); opacity: .4; display: block; margin-bottom: 16px; }
.about-values-quote-text { font-size: 1.05rem; color: var(--about-text); line-height: 1.7; font-style: italic; margin: 0; }
.about-values-img-wrap img { width: 100%; border-radius: var(--about-radius); display: block; }

/* ================================================================
   10. OUR CULTURE
   ================================================================ */
.about-culture-section { background: var(--about-bg-alt); }
.about-culture-inner {
    display: grid; grid-template-columns: 380px 1fr;
    gap: 60px; align-items: start; margin-bottom: 48px;
}
@media (max-width: 960px) { .about-culture-inner { grid-template-columns: 1fr; } }

.about-culture-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.25;
    color: var(--about-text); margin-bottom: 12px;
}
.about-culture-underline { width: 60px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--about-primary), var(--about-orange)); margin-bottom: 24px; }
.about-culture-text { font-size: .97rem; color: var(--about-muted); line-height: 1.75; margin-bottom: 16px; }

/* Gallery */
.about-culture-gallery   { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
@media (max-width: 600px) { .about-culture-gallery { grid-template-columns: 1fr; } }
.about-culture-img-main img { width: 100%; height: 100%; max-height: 380px; object-fit: cover; border-radius: var(--about-radius); display: block; }
.about-culture-imgs-col     { display: flex; flex-direction: column; gap: 16px; }
.about-culture-img-small img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--about-radius-sm); display: block; }

/* Culture value mini cards */
.about-culture-values {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; padding-top: 8px;
}
@media (max-width: 768px) { .about-culture-values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .about-culture-values { grid-template-columns: 1fr; } }

.about-culture-val {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; border-radius: var(--about-radius-sm);
    background: var(--about-card-bg); border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow);
}
.about-culture-val-icon {
    width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.about-culture-val-icon--purple { background: rgba(91,92,240,.1);  color: var(--about-primary); }
.about-culture-val-icon--yellow { background: rgba(245,158,11,.1); color: var(--about-yellow); }
.about-culture-val-icon--green  { background: rgba(16,185,129,.1); color: var(--about-green); }
.about-culture-val-icon--blue   { background: rgba(59,130,246,.1); color: var(--about-blue); }
.about-culture-val-body   { flex: 1; min-width: 0; }
.about-culture-val-title  { display: block; font-size: .88rem; font-weight: 700; color: var(--about-text); margin-bottom: 4px; }
.about-culture-val-desc   { display: block; font-size: .78rem; color: var(--about-muted); line-height: 1.5; margin: 0; }

/* ================================================================
   11. CALL TO ACTION
   ================================================================ */
.about-cta-section {
    position: relative; overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f7ff 0%, #fff5f0 50%, #f0f9ff 100%);
}
[data-theme="dark"] .about-cta-section {
    background: linear-gradient(135deg, #0d0d1a 0%, #13101a 50%, #0d1320 100%);
}

.about-cta-watermark {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-size: clamp(2.5rem, 8vw, 8rem); font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(91,92,240,.06); white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
[data-theme="dark"] .about-cta-watermark { color: rgba(255,255,255,.04); }

.about-cta-bg-effect {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(91,92,240,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(249,115,22,.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(236,72,153,.05) 0%, transparent 50%);
}

.about-cta-section .container { position: relative; z-index: 1; }
.about-cta-inner { text-align: center; max-width: 800px; margin: 0 auto; }

.about-cta-badge-wrap {
    display: flex; align-items: center; gap: 16px; justify-content: center;
    margin-bottom: 28px;
}
.about-cta-line { flex: 1; max-width: 80px; height: 1px; background: linear-gradient(90deg, transparent, rgba(91,92,240,.3), transparent); }

.about-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.15;
    color: var(--about-text); margin-bottom: 20px;
}
.about-cta-sub {
    font-size: 1.05rem; color: var(--about-muted); line-height: 1.75;
    max-width: 520px; margin: 0 auto 40px;
}
.about-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.about-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--about-primary); color: #fff;
    padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    text-decoration: none; transition: box-shadow .25s, transform .2s;
}
.about-cta-btn-primary:hover { box-shadow: 0 12px 32px rgba(91,92,240,.45); transform: translateY(-3px); }
.about-cta-btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 2px solid rgba(91,92,240,.3); color: var(--about-primary);
    padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    text-decoration: none; background: rgba(91,92,240,.05);
    transition: border-color .25s, box-shadow .25s, transform .2s;
}
.about-cta-btn-outline:hover { border-color: var(--about-primary); box-shadow: 0 8px 24px rgba(91,92,240,.2); transform: translateY(-3px); }

.about-cta-logo-3d { margin: 0 auto 48px; max-width: 200px; }
.about-cta-logo-3d img {
    width: 100%;
    filter: drop-shadow(0 16px 40px rgba(91,92,240,.3));
    animation: about-float 4s ease-in-out infinite;
}
@keyframes about-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.about-cta-pills { display: flex; justify-content: center; flex-wrap: wrap; border-top: 1px solid var(--about-border); padding-top: 32px; }
.about-cta-pill {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-right: 1px solid var(--about-border);
}
.about-cta-pill:last-child { border-right: none; }
@media (max-width: 640px) {
    .about-cta-pill { border-right: none; border-bottom: 1px solid var(--about-border); width: 50%; }
    .about-cta-pill:last-child { border-bottom: none; }
}
.about-cta-pill-icon  { color: var(--about-primary); flex-shrink: 0; }
.about-cta-pill-title { display: block; font-size: .85rem; font-weight: 700; color: var(--about-text); }
.about-cta-pill-desc  { display: block; font-size: .72rem; color: var(--about-muted); }

/* ================================================================
   ANIMATION (data-animate)
   ================================================================ */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-animate="fadeInLeft"]  { transform: translateX(-32px); }
[data-animate="fadeInRight"] { transform: translateX(32px); }
[data-animate].is-visible    { opacity: 1; transform: none; }

/* ================================================================
   RESPONSIVE — COMPREHENSIVE (320-1280px)
   ================================================================ */

/* ── 1024px ────────────────────────────────── */
@media (max-width: 1024px) {
    .about-hero-title    { font-size: clamp(2rem, 4.5vw, 2.8rem); }
    .about-hero-inner,
    .about-story-inner,
    .about-founder-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-hero-visual   { max-width: 560px; margin: 0 auto; }
    .about-story-visual  { max-width: 560px; margin: 0 auto; }
    .about-founder-visual { max-width: 480px; margin: 0 auto; }
    .about-why-inner,
    .about-process-inner,
    .about-workspace-inner,
    .about-culture-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-why-visual    { order: -1; max-width: 700px; margin: 0 auto; }
    .about-process-visual { order: -1; }
    .about-workspace-gallery { order: -1; max-width: 700px; margin: 0 auto; }
    .about-culture-gallery  { order: -1; max-width: 700px; margin: 0 auto; }
    .about-why-content   { max-width: 640px; }
    .about-clients-top   { grid-template-columns: 1fr; gap: 48px; }
    .about-clients-top-right { max-width: 640px; }
    .about-values-cards  { grid-template-columns: repeat(3, 1fr); }
    .about-founder-quote-card { margin-bottom: 20px; }
}

/* ── 900px ─────────────────────────────────── */
@media (max-width: 900px) {
    .about-hero-desc     { max-width: 100%; }
    .about-process-step  { min-width: 110px; }
    .about-process-step-desc { max-width: 110px; }
}

/* ── 768px ─────────────────────────────────── */
@media (max-width: 768px) {
    .about-hero-section  { padding: 72px 0 56px; }
    .section-padding     { padding: 72px 0; }
    .about-hero-stats    { gap: 12px; flex-direction: column; }
    .about-hero-stat     { width: 100%; padding: 12px 16px; }
    .about-hero-actions  { flex-direction: column; align-items: stretch; }
    .about-hero-btn-primary,
    .about-hero-btn-outline { justify-content: center; }
    .about-mv-grid       { grid-template-columns: 1fr; gap: 16px; }
    .about-mv-divider    { display: none; }
    .about-mv-pills      { grid-template-columns: 1fr 1fr; }
    .about-why-grid      { grid-template-columns: 1fr; }
    .about-why-logo-wrap { display: none; }
    .about-why-cards-bottom { grid-template-columns: 1fr; }
    .about-testimonials-grid { grid-template-columns: 1fr; }
    .about-testi-card--left,
    .about-testi-card--right { display: none; }
    .about-testi-center  { padding: 16px 0; }
    .about-values-bottom { grid-template-columns: 1fr; gap: 24px; }
    .about-culture-values { grid-template-columns: 1fr 1fr; }
    .about-workspace-imgs-row { grid-template-columns: 1fr; }
    .about-clients-stats { grid-template-columns: 1fr 1fr; }
    .about-milestone     { min-width: 70px; }
    .about-milestone-connector { display: none; }
}

/* ── 640px ─────────────────────────────────── */
@media (max-width: 640px) {
    .section-padding     { padding: 56px 0; }
    .about-hero-section  { padding: 56px 0 40px; }
    .about-cta-section   { padding: 64px 0; }
    .about-hero-title    { font-size: clamp(1.8rem, 6vw, 2.2rem); }
    .about-center-title  { font-size: clamp(1.6rem, 5vw, 2rem); }
    .about-hero-stats    { gap: 10px; }
    .about-hero-actions  { gap: 12px; }
    .about-hero-badge-card { bottom: 12px; left: 12px; right: 12px; padding: 10px 14px; }
    .about-story-badge-card { bottom: 12px; right: 12px; left: 12px; max-width: none; }
    .about-values-cards  { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-value-card    { padding: 20px 18px; }
    .about-value-card-num { font-size: 2rem; bottom: 8px; right: 12px; }
    .about-process-step  { min-width: 80px; }
    .about-process-step-arrow { margin-bottom: 44px; }
    .about-process-step-desc { max-width: 80px; }
    .about-process-logo-end { display: none; }
    .about-founder-photo-bg { display: none; }
    .about-culture-gallery { grid-template-columns: 1fr; }
    .about-clients-brands-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta-pills .about-cta-pill { width: 100%; border-right: none; border-bottom: 1px solid var(--about-border); }
    .about-cta-pill:last-child { border-bottom: none; }
    .about-milestone     { min-width: 60px; }
    .about-milestone-year { font-size: 0.85rem; }
    .about-milestone-label { font-size: 0.65rem; max-width: 60px; }
}

/* ── 480px ─────────────────────────────────── */
@media (max-width: 480px) {
    .section-padding     { padding: 48px 0; }
    .about-hero-section  { padding: 48px 0 32px; }
    .about-hero-title    { font-size: clamp(1.5rem, 7vw, 1.8rem); }
    .about-center-title  { font-size: clamp(1.3rem, 6vw, 1.6rem); }
    .about-hero-desc     { font-size: 0.9rem; }
    .about-hero-badge-card { position: static; margin-top: 12px; }
    .about-hero-cursive  { text-align: center; }
    .about-section-badge { font-size: 0.65rem; padding: 4px 12px; }
    .about-mv-pills      { grid-template-columns: 1fr; }
    .about-mv-card       { padding: 24px 20px; }
    .about-why-card      { padding: 14px 16px; flex-direction: column; align-items: flex-start; }
    .about-process-step  { min-width: 100%; flex-direction: row; gap: 12px; text-align: left; }
    .about-process-step-arrow { display: none; }
    .about-process-step-desc  { max-width: none; }
    .about-process-step-dot   { display: none; }
    .about-process-step-hexagon { width: 48px; height: 48px; flex-shrink: 0; }
    .about-process-step-hexagon svg { width: 20px; height: 20px; }
    .about-process-step-num { position: absolute; top: -4px; left: -4px; background: var(--about-card-bg); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; border: 1px solid var(--about-border); }
    .about-process-step { position: relative; }
    .about-workspace-img-small { margin-bottom: 0; }
    .about-workspace-img-caption { position: static; background: none; padding: 8px 0 0; color: var(--about-text); }
    .about-workspace-img-caption strong { color: var(--about-text); }
    .about-workspace-img-caption span { color: var(--about-muted); }
    .about-founder-inner { gap: 32px; }
    .about-founder-para  { font-size: 0.9rem; }
    .about-founder-quote-card { padding: 20px; }
    .about-clients-stats { grid-template-columns: 1fr; }
    .about-values-cards  { grid-template-columns: 1fr; }
    .about-value-card-num { font-size: 2.5rem; }
    .about-culture-values { grid-template-columns: 1fr; }
    .about-culture-val   { flex-direction: column; align-items: flex-start; }
    .about-cta-title     { font-size: clamp(1.6rem, 7vw, 2rem); }
    .about-cta-sub       { font-size: 0.9rem; }
    .about-cta-actions   { flex-direction: column; align-items: stretch; }
    .about-cta-btn-primary,
    .about-cta-btn-outline { justify-content: center; }
    .about-cta-pill      { width: 100%; }
    .about-story-title   { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .about-why-title     { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .about-process-title { font-size: clamp(1.5rem, 6vw, 1.8rem); }
    .about-workspace-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .about-founder-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .about-clients-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .about-culture-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    [data-theme="dark"] .about-workspace-img-caption { color: #f1f5f9; }
    [data-theme="dark"] .about-workspace-img-caption strong { color: #f1f5f9; }
    [data-theme="dark"] .about-workspace-img-caption span { color: #94a3b8; }
    .about-story-milestones { gap: 8px; }
    .about-milestone     { min-width: 50px; }
    .about-milestone-year { font-size: 0.78rem; }
    .about-milestone-label { display: none; }
    .about-milestone-icon { width: 38px; height: 38px; }
    .about-milestone-icon svg { width: 16px; height: 16px; }
}

/* ── 360px ─────────────────────────────────── */
@media (max-width: 360px) {
    .about-hero-title    { font-size: 1.4rem; }
    .about-center-title  { font-size: 1.2rem; }
    .about-section-badge { font-size: 0.6rem; padding: 3px 10px; }
    .about-hero-stat     { padding: 10px 12px; }
    .about-hero-stat-num { font-size: 1.1rem; }
    .about-hero-stat-label { font-size: 0.65rem; }
    .about-center-sub    { font-size: 0.85rem; }
    .about-story-text    { font-size: 0.88rem; }
    .about-why-desc      { font-size: 0.88rem; }
    .about-process-desc  { font-size: 0.88rem; }
    .about-founder-para  { font-size: 0.85rem; }
    .about-clients-desc  { font-size: 0.85rem; }
    .about-culture-text  { font-size: 0.88rem; }
    .about-cta-pill      { padding: 12px 16px; }
    .about-cta-pill-icon svg { width: 16px; height: 16px; }
    .about-value-card-icon { width: 44px; height: 44px; }
    .about-value-card-icon svg { width: 22px; height: 22px; }
    .about-mv-card-icon  { width: 48px; height: 48px; }
    .about-mv-card-icon svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
    .about-hero-gradient,
    .about-cta-gradient,
    .about-why-logo-ring { animation: none !important; }
}
