/* ================================================================
   SHINDI — pages.css  (sub-page styles)
   ================================================================ */

/* ── PAGE HERO ──────────────────────────────────────────────── */
.pg-hero {
    position: relative;
    background: var(--dark2);
    padding: 180px 48px 96px;
    overflow: hidden;
    min-height: 58vh;
    display: flex;
    align-items: flex-end;
}
.pg-hero::before {
    content: '';
    position: absolute;
    right: -8%; top: -25%;
    width: 68%; height: 155%;
    border-radius: 40% 55% 48% 42% / 36% 42% 54% 46%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(228,44,66,.36) 0%, transparent 50%),
        radial-gradient(ellipse at 72% 65%, rgba(80,111,252,.30) 0%, transparent 52%),
        radial-gradient(ellipse at 52% 82%, rgba(80,111,252,.18) 0%, transparent 46%),
        radial-gradient(ellipse at 14% 32%, rgba(228,44,66,.16) 0%, transparent 42%);
    filter: blur(85px);
    mix-blend-mode: screen;
    pointer-events: none; z-index: 0;
}
.pg-hero-inner { position: relative; z-index: 1; }

/* ── Hero entrance animations (triggered after loader by body.hero-in) ── */
@keyframes pgFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* default invisible — animate in when body gets .hero-in */
.pg-tag, .pg-title, .pg-sub,
.abt-hero-stats,
.ct-hero-title, .ct-hero-sub, .ct-hero-info {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .7s var(--ease);
}
body.hero-in .pg-tag         { opacity: 1; transform: none; transition-delay: 0s; }
body.hero-in .pg-title       { opacity: 1; transform: none; transition-delay: .14s; }
body.hero-in .pg-sub         { opacity: 1; transform: none; transition-delay: .28s; }
body.hero-in .abt-hero-stats { opacity: 1; transform: none; transition-delay: .42s; }
body.hero-in .ct-hero-title  { opacity: 1; transform: none; transition-delay: .14s; }
body.hero-in .ct-hero-sub    { opacity: 1; transform: none; transition-delay: .28s; }
body.hero-in .ct-hero-info   { opacity: 1; transform: none; transition-delay: .36s; }

.pg-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.4);
    border: 1px solid rgba(255,255,255,.12);
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 28px;
}
.pg-title {
    font-size: clamp(52px, 9vw, 108px);
    font-weight: 800;
    color: var(--white);
    line-height: .9;
    letter-spacing: -.035em;
    margin-bottom: 28px;
}
.pg-title .t-red { color: var(--red); }
.pg-sub {
    font-size: clamp(14px, 1.4vw, 17px);
    color: rgba(255,255,255,.45);
    max-width: 480px;
    line-height: 1.65;
}

/* ── About hero stats ────────────────────────────────────────── */
.abt-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.abt-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.abt-hero-stat-num {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -.03em;
}
.abt-hero-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

/* ── SERVICES LIST SECTION ──────────────────────────────────── */
.srv-section { background: var(--red); }

.srv-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 48px 40px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.srv-section-head .section-eyebrow { color: rgba(255,255,255,.6); }

.srv-all-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .22s, gap .22s;
}
.srv-all-link:hover { color: rgba(255,255,255,.6); gap: 12px; }

.srv-list { border-top: 1px solid rgba(255,255,255,.15); }

.srv-row {
    display: grid;
    grid-template-columns: 72px 1fr 260px 56px;
    align-items: center;
    gap: 0 24px;
    padding: 30px 48px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    text-decoration: none;
    color: var(--white);
    transition: background .24s, color .24s, padding-left .24s;
}
.srv-row:hover {
    background: var(--dark);
    color: var(--white);
    padding-left: 72px;
}

/* Homepage (red bg) — hover flips to white instead of dark */
#services .srv-row:hover {
    background: var(--white);
    color: var(--dark);
}
#services .srv-row:hover .srv-num  { color: rgba(0,0,0,.22); }
#services .srv-row:hover .srv-name { color: var(--dark); }
#services .srv-row:hover .srv-excerpt { color: rgba(0,0,0,.42); }
#services .srv-row:hover .srv-arrow { color: var(--dark); }

.srv-num {
    font-size: 12px; font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255,255,255,.35);
    transition: color .24s;
    font-variant-numeric: tabular-nums;
}
.srv-row:hover .srv-num { color: rgba(255,255,255,.25); }

.srv-name {
    font-size: clamp(22px, 3vw, 44px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1;
}

.srv-excerpt {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    transition: color .24s;
}
.srv-row:hover .srv-name { color: var(--white); }
.srv-row:hover .srv-excerpt { color: rgba(255,255,255,.4); }

.srv-arrow {
    font-size: 22px;
    text-align: right;
    color: rgba(255,255,255,.35);
    transition: color .24s, transform .24s;
}
.srv-row:hover .srv-arrow { color: var(--white); transform: translateX(8px); }

/* ── PAGE CTA STRIP ─────────────────────────────────────────── */
.pg-cta {
    background: var(--dark);
    padding: 100px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    overflow: hidden;
    position: relative;
}
.pg-cta::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    left: -100px; bottom: -200px;
    background: radial-gradient(circle, rgba(228,44,66,.14) 0%, transparent 65%);
    pointer-events: none;
}
.pg-cta-text {
    position: relative; z-index: 1;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -.025em;
    max-width: 560px;
}
.pg-cta-text em { color: var(--red); font-style: normal; }
.pg-cta-btn {
    position: relative; z-index: 1;
    flex-shrink: 0;
    background: var(--red); color: var(--white); border: none;
    border-radius: 100px; font-family: inherit;
    font-size: 15px; font-weight: 600;
    padding: 18px 38px; cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    letter-spacing: .02em;
}
.pg-cta-btn:hover { background: #c8253a; }
.pg-cta-btn:active { transform: scale(.97); }

/* ════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
════════════════════════════════════════════════════════════ */

/* ── SERVICE HERO ───────────────────────────────────────────── */
.svc-hero {
    position: relative;
    background: var(--dark2);
    padding: 180px 48px 96px;
    overflow: hidden;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
}
.svc-hero::before {
    content: '';
    position: absolute;
    left: -8%; bottom: -30%;
    width: 72%; height: 160%;
    border-radius: 44% 52% 46% 40% / 38% 44% 52% 44%;
    background:
        radial-gradient(ellipse at 28% 62%, rgba(228,44,66,.38) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 28%, rgba(80,111,252,.32) 0%, transparent 52%),
        radial-gradient(ellipse at 48% 82%, rgba(80,111,252,.20) 0%, transparent 46%),
        radial-gradient(ellipse at 16% 36%, rgba(228,44,66,.17) 0%, transparent 42%);
    filter: blur(88px);
    mix-blend-mode: screen;
    pointer-events: none; z-index: 0;
}
.svc-hero-inner { position: relative; z-index: 1; }

.svc-hero-bg-num {
    position: absolute;
    right: 48px; bottom: -16px;
    font-size: clamp(180px, 22vw, 320px);
    font-weight: 900;
    color: rgba(255,255,255,.035);
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none; user-select: none;
    z-index: 0;
}

.svc-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,.35);
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 24px;
}
.svc-breadcrumb a { color: inherit; text-decoration: none; transition: color .2s; }
.svc-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.svc-breadcrumb .bc-sep { color: rgba(255,255,255,.18); }

.svc-title {
    font-size: clamp(56px, 9.5vw, 120px);
    font-weight: 800;
    color: var(--white);
    line-height: .88;
    letter-spacing: -.04em;
    margin-bottom: 28px;
}

.svc-short {
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(255,255,255,.52);
    max-width: 540px;
    line-height: 1.68;
    margin-bottom: 40px;
}

.svc-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.svc-btn-primary {
    background: var(--red); color: var(--white); border: none;
    border-radius: 100px; font-family: inherit;
    font-size: 15px; font-weight: 600;
    padding: 16px 34px; cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .02em;
}
.svc-btn-primary:hover { background: #c8253a; }
.svc-btn-primary:active { transform: scale(.97); }

.svc-btn-secondary {
    background: transparent; color: rgba(255,255,255,.6);
    border: 1.5px solid rgba(255,255,255,.18);
    border-radius: 100px; font-family: inherit;
    font-size: 15px; font-weight: 500;
    padding: 16px 34px; cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center;
    transition: border-color .2s, color .2s;
}
.svc-btn-secondary:hover { border-color: rgba(255,255,255,.45); color: #fff; }

/* ── DESCRIPTION ────────────────────────────────────────────── */
.svc-desc-section {
    background: var(--white);
    padding: 100px 48px;
}
.svc-desc-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}
.svc-desc-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--red); margin-bottom: 18px;
}
.svc-desc-heading {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800; color: var(--dark);
    line-height: 1.05; letter-spacing: -.025em;
    margin-bottom: 24px;
}
.svc-desc-body {
    font-size: clamp(15px, 1.3vw, 17px);
    color: #444; line-height: 1.9;
}

/* ── Rich description content ───────────────────────────────── */
.svc-desc-para {
    font-size: clamp(15px, 1.3vw, 17px);
    color: #444; line-height: 1.9;
    margin-bottom: 20px;
}
.svc-desc-para--sub {
    color: #555; font-size: clamp(14px, 1.2vw, 16px);
    margin-bottom: 12px;
}

.svc-desc-subheading {
    font-size: clamp(22px, 2.8vw, 35px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -.025em;
    margin: 48px 0 20px;
}
.svc-desc-subheading:first-child { margin-top: 0; }

.svc-desc-list {
    list-style: none; margin: 0 0 24px; padding: 0;
}
.svc-desc-item {
    position: relative;
    padding-left: 18px;
    font-size: clamp(14px, 1.2vw, 16px);
    color: #444; line-height: 1.8;
    margin-bottom: 10px;
}
.svc-desc-item::before {
    content: '•';
    position: absolute; left: 0; top: 0;
    color: var(--red); font-weight: 700;
}
.svc-desc-item strong {
    color: var(--dark); font-weight: 700;
}

/* Sidebar */
.svc-sidebar {
    background: var(--dark);
    border-radius: 20px;
    padding: 36px;
    position: sticky; top: 108px;
}
.svc-sidebar-title {
    font-size: 13px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.svc-sidebar-list {
    list-style: none; margin: 0; padding: 0;
}
.svc-sidebar-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,.65);
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    line-height: 1.45;
}
.svc-sidebar-list li:last-child { border-bottom: none; }
.svc-sidebar-list li::before {
    content: '✓';
    color: var(--red); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
}
.svc-sidebar-cta {
    display: block; width: 100%; margin-top: 28px;
    background: var(--red); color: var(--white); border: none;
    border-radius: 12px; font-family: inherit;
    font-size: 14px; font-weight: 600;
    padding: 14px 24px; cursor: pointer;
    text-align: center; text-decoration: none;
    transition: background .2s; letter-spacing: .02em;
}
.svc-sidebar-cta:hover { background: #c8253a; }

/* ── PORTFOLIO GRID ─────────────────────────────────────────── */
.svc-port-section {
    background: #0d0d0d;
    padding: 100px 48px;
}
.svc-sec-hdr {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    max-width: 1200px; margin: 0 auto 48px;
}
.svc-sec-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.3); margin-bottom: 10px;
}
.svc-sec-title {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800; color: var(--white);
    line-height: 1; letter-spacing: -.025em;
}
.svc-all-link {
    color: rgba(255,255,255,.38); text-decoration: none;
    font-size: 14px; transition: color .2s; white-space: nowrap;
    padding-bottom: 2px;
}
.svc-all-link:hover { color: var(--red); }

.svc-port-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px; margin: 0 auto;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.svc-faq-section {
    background: #F7F7F5;
    padding: 100px 48px;
}
.svc-faq-inner {
    max-width: 800px; margin: 0 auto;
}
/* Override style.css white-on-dark FAQ colours for light background */
.svc-faq-inner .faq-list  { border-color: rgba(0,0,0,.09); }
.svc-faq-inner .faq-item  { border-color: rgba(0,0,0,.09); }
.svc-faq-inner .faq-question {
    color: var(--dark);
    background: none; border: none;
}
.svc-faq-inner .faq-question:hover { color: var(--red); }
.svc-faq-inner .faq-icon {
    border-color: rgba(0,0,0,.15);
    color: rgba(0,0,0,.45);
}
.svc-faq-inner .faq-question[aria-expanded="true"] .faq-icon {
    background: var(--red); border-color: var(--red);
    color: var(--white); transform: rotate(45deg);
}
.svc-faq-inner .faq-answer p { color: #555; }

/* ── LEAD FORM ──────────────────────────────────────────────── */
.svc-form-section {
    background: var(--dark);
    padding: 100px 48px;
}
.svc-form-inner {
    max-width: 600px; margin: 0 auto;
}
.svc-form-hdr {
    margin-bottom: 48px;
}
.svc-form-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800; color: var(--white);
    line-height: 1.05; letter-spacing: -.025em;
    margin-bottom: 12px;
}
.svc-form-title em { color: var(--red); font-style: normal; }
.svc-form-sub {
    font-size: 15px; color: rgba(255,255,255,.4);
    line-height: 1.65;
}
.svc-form-row { margin-bottom: 14px; }
.svc-form-row label {
    display: block; font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.35); margin-bottom: 8px;
}
.svc-input {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 12px; color: #fff;
    font-family: inherit; font-size: 15px;
    padding: 14px 18px; outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.svc-input:focus { border-color: var(--red); }
.svc-input::placeholder { color: rgba(255,255,255,.22); }
textarea.svc-input { resize: vertical; min-height: 110px; }
.svc-input option {
    background: #1e1e1e;
    color: #fff;
}
.svc-form-submit {
    display: block; width: 100%; margin-top: 8px;
    background: var(--red); border: none;
    border-radius: 12px; color: #fff;
    font-family: inherit; font-size: 15px; font-weight: 600;
    padding: 16px 24px; cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .02em;
}
.svc-form-submit:hover { background: #c8253a; }
.svc-form-submit:active { transform: scale(.98); }
.svc-form-ok {
    display: none; flex-direction: column;
    align-items: center; gap: 16px;
    padding: 48px 24px; text-align: center;
    color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.6;
}
.svc-form-ok svg { width: 52px; height: 52px; }
.svc-form-ok.show { display: flex; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .pg-hero, .svc-hero { padding: 150px 28px 80px; min-height: auto; }
    .srv-section-head { padding: 60px 28px 32px; }
    .srv-row { grid-template-columns: 60px 1fr 42px; gap: 0 16px; padding: 26px 28px; }
    .srv-excerpt { display: none; }
    .srv-row:hover { padding-left: 40px; }
    .pg-cta { padding: 72px 28px; flex-direction: column; align-items: flex-start; gap: 32px; }
    .svc-desc-section, .svc-port-section, .svc-faq-section, .svc-form-section { padding: 72px 28px; }
    .svc-desc-wrap { grid-template-columns: 1fr; gap: 40px; }
    .svc-sidebar { position: static; }
    .svc-port-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .svc-sec-hdr { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }
    .svc-hero-bg-num { display: none; }
}
@media (max-width: 600px) {
    .pg-title { font-size: clamp(30px, 8.5vw, 56px); overflow-wrap: break-word; }
    .svc-title { font-size: clamp(38px, 11vw, 72px); }
    .srv-name { font-size: clamp(15px, 4.5vw, 24px); }
    .srv-row { padding: 20px 16px; gap: 0 10px; }
    .srv-num { font-size: 11px; }
    .svc-port-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .svc-port-grid .port-card { aspect-ratio: 4/3; }
    .svc-form-section { padding: 60px 20px; }
    .pg-sub { font-size: 13px; }
}


/* ════════════════════════════════════════════════════════════
   PORTFOLIO LISTING PAGE
════════════════════════════════════════════════════════════ */

/* ── Filter bar ──────────────────────────────────────────────── */
.port-filter-section {
    background: var(--white);
    padding: 40px 48px 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.port-filter-row {
    display: flex; align-items: center;
    gap: 10px; flex-wrap: wrap;
    padding-bottom: 16px;
}
.port-filter-row + .port-filter-row {
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 16px;
}
.port-filter-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(0,0,0,.3);
    margin-right: 4px; white-space: nowrap;
    flex-shrink: 0;
}
.port-pill {
    background: none;
    border: 1.5px solid rgba(0,0,0,.12);
    border-radius: 100px;
    color: rgba(0,0,0,.5);
    font-family: inherit; font-size: 13px;
    padding: 7px 16px; cursor: pointer;
    white-space: nowrap;
    transition: background .18s, border-color .18s, color .18s;
}
.port-pill:hover {
    border-color: rgba(0,0,0,.3); color: var(--dark);
}
.port-pill.active {
    background: var(--dark); border-color: var(--dark);
    color: var(--white);
}
.port-pill.active-red {
    background: var(--red); border-color: var(--red);
    color: var(--white);
}

/* ── Count + grid wrapper ────────────────────────────────────── */
.port-grid-section {
    background: var(--white);
    padding: 48px 48px 100px;
}
.port-count {
    font-size: 12px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    color: rgba(0,0,0,.3); margin-bottom: 32px;
}
.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Load More ───────────────────────────────────────────────── */
.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}
.load-more-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 48px;
    border: 1.5px solid var(--dark);
    border-radius: 100px;
    font-size: 13px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    background: transparent; color: var(--dark);
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.load-more-btn:hover {
    background: var(--dark); color: var(--white);
}
.load-more-btn.loading {
    opacity: .5; pointer-events: none; transform: scale(.97);
}

/* ── Portfolio card ──────────────────────────────────────────── */
.port-card {
    border-radius: 16px; overflow: hidden;
    aspect-ratio: 4/3; position: relative;
    background: #e8e8e6; cursor: pointer;
    text-decoration: none; display: block;
    transition: transform .4s ease;
}
.port-card:hover { transform: translateY(-4px); }
.port-card.hidden { display: none; }

.port-card-img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .55s ease;
}
.port-card:hover .port-card-img { transform: scale(1.06); }

.port-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0; transition: opacity .3s ease;
}
.port-card:hover .port-card-overlay { opacity: 1; }

/* Always-visible industry tag in top-left */
.port-card-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--red); color: #fff;
    font-size: 10px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px;
    z-index: 2;
}

/* Arrow in top-right, visible on hover */
.port-card-arrow {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.3);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    opacity: 0; transition: opacity .3s, background .2s;
    z-index: 2;
}
.port-card:hover .port-card-arrow { opacity: 1; }
.port-card-arrow:hover { background: var(--red); border-color: var(--red); }

.port-card-company {
    font-size: 18px; font-weight: 800;
    color: #fff; line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}
.port-card-services {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.port-card-svc {
    font-size: 10px; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    padding: 4px 10px; border-radius: 100px;
}

/* No results state */
.port-empty {
    grid-column: 1 / -1;
    text-align: center; padding: 80px 24px;
    color: rgba(0,0,0,.3); font-size: 16px;
}


/* ════════════════════════════════════════════════════════════
   PORTFOLIO DETAIL PAGE
════════════════════════════════════════════════════════════ */

/* ── Hero (full-bleed image) ─────────────────────────────────── */
.pd-hero {
    position: relative;
    height: 80vh; min-height: 500px;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.pd-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform-origin: center;
    animation: heroZoom 8s ease-out both;
}
@keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}
.pd-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
}
.pd-hero-content {
    position: relative; z-index: 1;
    padding: 0 48px 56px;
    width: 100%;
}
.pd-hero-tag {
    display: inline-block;
    background: var(--red); color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 16px;
}
.pd-hero-name-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.pd-hero-logo {
    height: 48px; width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    padding: 6px 10px;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}
.pd-hero-company {
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 800; color: #fff;
    line-height: .9; letter-spacing: -.04em;
    margin-bottom: 20px;
}
.pd-hero-year {
    font-size: 13px; color: rgba(255,255,255,.45);
    letter-spacing: .06em;
}

/* ── Project info strip ──────────────────────────────────────── */
.pd-info-strip {
    background: var(--dark);
    padding: 0 48px;
}
.pd-info-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,.08);
}
.pd-info-inner--2col {
    grid-template-columns: repeat(2, 1fr);
}
.pd-info-block {
    padding: 32px 0;
    border-right: 1px solid rgba(255,255,255,.08);
    padding-right: 40px;
}
.pd-info-block:not(:first-child) { padding-left: 40px; }
.pd-info-block:last-child { border-right: none; }
.pd-info-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.3); margin-bottom: 10px;
}
.pd-info-value {
    font-size: 15px; font-weight: 600; color: #fff;
    line-height: 1.5;
}
.pd-svc-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pd-svc-pill {
    font-size: 11px; color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.18);
    padding: 4px 12px; border-radius: 100px;
    text-decoration: none; transition: border-color .2s, color .2s;
}
.pd-svc-pill:hover { border-color: var(--red); color: #fff; }

/* ── Description ─────────────────────────────────────────────── */
.pd-desc-section {
    background: var(--white);
    padding: 80px 48px;
}
.pd-desc-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.pd-desc-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--red); margin-bottom: 16px;
}
.pd-desc-heading {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800; color: var(--dark);
    line-height: 1.08; letter-spacing: -.025em;
    margin-bottom: 0;
}
.pd-desc-body {
    font-size: clamp(15px, 1.3vw, 17px);
    color: #444; line-height: 1.9;
    margin-bottom: 36px;
}
.pd-results {
    display: flex; flex-direction: column; gap: 12px;
}
.pd-result-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 20px;
    background: #F7F7F5;
    border-radius: 12px;
    font-size: 15px; font-weight: 600; color: var(--dark);
}
.pd-result-item::before {
    content: '↑';
    color: var(--red); font-weight: 800; font-size: 18px;
    flex-shrink: 0;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.pd-gallery-section {
    background: #0d0d0d;
    padding: 80px 48px;
}
.pd-gallery-inner { max-width: 1200px; margin: 0 auto; }
.pd-gallery-hdr { margin-bottom: 32px; }
.pd-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pd-gimg {
    border-radius: 14px; overflow: hidden;
    position: relative;
}
.pd-gimg img {
    width: 100%; height: auto;
    display: block;
    transition: transform .5s ease;
}
.pd-gimg:hover img { transform: scale(1.02); }

/* ── Similar projects ────────────────────────────────────────── */
.pd-similar-section {
    background: var(--white);
    padding: 80px 48px;
}
.pd-similar-inner { max-width: 1200px; margin: 0 auto; }
.pd-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 40px;
}

/* ── Portfolio detail responsive ─────────────────────────────── */
@media (max-width: 960px) {
    .port-filter-section { padding: 28px 24px 0; position: static; }
    .port-grid-section   { padding: 32px 24px 64px; }
    .port-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pd-hero { height: 60vh; }
    .pd-hero-content { padding: 0 24px 40px; }
    .pd-info-strip { padding: 0 24px; }
    .pd-info-inner { grid-template-columns: 1fr; }
    .pd-info-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
    .pd-desc-section { padding: 56px 24px; }
    .pd-desc-inner { grid-template-columns: 1fr; gap: 40px; }
    .pd-gallery-section { padding: 56px 24px; }
    .pd-similar-section { padding: 56px 24px; }
    .pd-similar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .port-filter-section { padding: 20px 16px 0; }
    .port-filter-row { gap: 7px; }
    .port-pill { font-size: 12px; padding: 6px 12px; }
    .port-grid-section { padding: 24px 16px 56px; }
    .port-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .port-card-company { font-size: 14px; }
    .port-card-overlay { padding: 16px; }
    .pd-hero { height: 55vh; min-height: 380px; }
    .pd-hero-content { padding: 0 16px 32px; }
    /* gallery is already single-column flex — no overrides needed */
    .pd-similar-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────────── */
.abt-hero {
    position: relative;
    background: var(--dark2);
    padding: 180px 48px 0;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* subtle coordinate-grid texture */
.abt-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}
/* footer-style colour blob */
.abt-hero::before {
    content: '';
    position: absolute;
    right: -8%; top: -22%;
    width: 66%; height: 152%;
    border-radius: 42% 54% 48% 40% / 36% 42% 54% 46%;
    background:
        radial-gradient(ellipse at 30% 42%, rgba(228,44,66,.36) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 65%, rgba(80,111,252,.30) 0%, transparent 52%),
        radial-gradient(ellipse at 50% 82%, rgba(80,111,252,.18) 0%, transparent 46%),
        radial-gradient(ellipse at 14% 34%, rgba(228,44,66,.15) 0%, transparent 42%);
    filter: blur(86px);
    mix-blend-mode: screen;
    pointer-events: none; z-index: 0;
}
.abt-hero-inner { position: relative; z-index: 1; }
.abt-hero-title {
    font-size: clamp(52px, 9vw, 108px);
    font-weight: 800; color: var(--white);
    line-height: .9; letter-spacing: -.035em;
    margin-bottom: 28px;
}

/* KPI bar anchored to bottom of hero */
.abt-kpi-bar {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 80px;
}
.abt-kpi-item {
    padding: 36px 32px 40px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.abt-kpi-item:last-child { border-right: none; }
.abt-kpi-num {
    display: block;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900; color: #fff;
    line-height: 1; letter-spacing: -.03em;
    margin-bottom: 8px;
}
.abt-kpi-num em { color: var(--red); font-style: normal; }
.abt-kpi-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

/* ── Story ──────────────────────────────────────────────────── */
.abt-story-section {
    background: var(--white);
    padding: 100px 48px;
}
.abt-story-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
/* Story logo replaces the old giant year number */
.abt-story-logo {
    display: block;
    height: 168px; width: auto;
    margin: 16px 0 28px;
    user-select: none;
    pointer-events: none;
}
.abt-story-body {
    font-size: clamp(15px, 1.3vw, 17px);
    color: #444; line-height: 1.9;
}
.abt-story-body + .abt-story-body { margin-top: 18px; }

.abt-quote-card {
    background: var(--dark);
    border-radius: 20px; padding: 40px;
    margin-bottom: 32px;
}
.abt-quote-icon {
    width: 30px; height: 24px;
    color: var(--red); display: block;
    margin-bottom: 20px;
}
.abt-quote-text {
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 600; color: #fff;
    line-height: 1.5; letter-spacing: -.01em;
    margin: 0 0 20px; font-style: normal;
}
.abt-quote-cite {
    font-size: 13px;
    color: rgba(255,255,255,.38);
    font-style: normal;
}

/* Timeline */
.abt-timeline { display: flex; flex-direction: column; }
.abt-tl-item {
    display: flex; align-items: baseline; gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.abt-tl-item:last-child { border-bottom: none; }
.abt-tl-year {
    font-size: 12px; font-weight: 800;
    color: var(--red); letter-spacing: .06em;
    flex-shrink: 0; width: 42px;
}
.abt-tl-item--now .abt-tl-year { color: var(--dark); }
.abt-tl-desc { font-size: 13px; color: rgba(0,0,0,.5); line-height: 1.5; }

/* ── Values / Manifesto ─────────────────────────────────────── */
.abt-values-section {
    background: var(--dark);
    padding: 100px 48px;
}
.abt-values-inner { max-width: 1200px; margin: 0 auto; }
.abt-values-hdr { margin-bottom: 56px; }

.abt-man-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 40px; align-items: start;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.abt-man-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.abt-man-num {
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 900;
    color: rgba(255,255,255,.055);
    line-height: 1; letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
    text-align: right; padding-top: 6px;
}
.abt-man-title {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800; color: #fff;
    letter-spacing: -.025em; margin-bottom: 12px;
}
.abt-man-desc {
    font-size: clamp(14px, 1.2vw, 16px);
    color: rgba(255,255,255,.4);
    line-height: 1.78; max-width: 580px;
}

/* ── Founders — editorial image layout ──────────────────────── */
.abt-founders-section {
    background: var(--white);
    padding: 100px 48px;
}
.abt-founders-inner { max-width: 1200px; margin: 0 auto; }
.abt-sec-hdr { margin-bottom: 56px; }

.abt-founders-hdr {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}
.abt-founders-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800; color: var(--dark);
    letter-spacing: -.03em; line-height: 1.05;
    margin-top: 10px;
}
.abt-founders-sub {
    max-width: 340px;
    font-size: 15px; color: rgba(17,17,17,.45);
    line-height: 1.65;
    padding-bottom: 4px;
}

/* Editorial grid: tall left card + 2 right cards */
.abt-founders-editorial {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 16px;
    align-items: stretch;
}
.abt-founders-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Image card base */
.abt-founder-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: default;
}
.abt-founder-img-card img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .6s ease;
}
.abt-founder-img-card:hover img { transform: scale(1.04); }

/* Heights */
.abt-founder-img-card--tall { height: 680px; }
.abt-founder-img-card--mid  { height: 332px; }

/* Dark gradient overlay */
.abt-fic-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.04) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 32px;
    transition: background .4s ease;
}
.abt-founder-img-card:hover .abt-fic-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.45) 50%,
        rgba(0,0,0,.08) 100%
    );
}

/* Number top-left */
.abt-fic-num {
    font-size: 13px; font-weight: 800;
    color: rgba(255,255,255,.35);
    letter-spacing: .14em;
    align-self: flex-start;
}

/* Info block at bottom */
.abt-fic-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.abt-fic-power {
    display: inline-block;
    background: var(--red); color: #fff;
    font-size: 9px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
    align-self: flex-start;
    margin-bottom: 4px;
}
.abt-fic-name {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 800; color: #fff;
    line-height: 1.12; letter-spacing: -.025em;
}
.abt-fic-role {
    font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.45);
}
.abt-fic-quote {
    font-size: 13px; color: rgba(255,255,255,.55);
    line-height: 1.6; font-style: italic;
    margin-top: 8px;
    max-width: 340px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}
.abt-founder-img-card:hover .abt-fic-quote {
    opacity: 1;
    transform: translateY(0);
}

/* Avatars — kept for team members */
.abt-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: #fff;
    margin-bottom: 14px; flex-shrink: 0;
    letter-spacing: -.01em;
}
.abt-avatar--red  { background: var(--red); }
.abt-avatar--blue { background: #506FFC; }
.abt-avatar--dark { background: #2a2a2a; }
.abt-avatar--sm   { width: 176px; height: 176px; font-size: 48px; margin-bottom: 20px;
    filter: grayscale(1) brightness(.72);
    transition: filter .4s ease; }

.abt-member-photo {
    width: 176px; height: 176px; border-radius: 50%;
    overflow: hidden; margin-bottom: 20px; flex-shrink: 0;
}
.abt-member-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    display: block;
    filter: grayscale(1);
    transition: filter .4s ease;
}
.abt-member-card:hover .abt-member-photo img { filter: grayscale(0); }
.abt-member-card:hover .abt-avatar--sm { filter: grayscale(0) brightness(1); }

/* ── Team ───────────────────────────────────────────────────── */
.abt-team-section {
    background: #0d0d0d;
    padding: 100px 48px;
}
.abt-team-inner { max-width: 1200px; margin: 0 auto; }
.abt-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 48px;
}
.abt-member-card {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 48px 24px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,.07);
    transition: border-color .24s, background .24s;
}
.abt-member-card:hover {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.16);
}
.abt-member-name {
    font-size: 15px; font-weight: 700;
    color: #fff; margin-bottom: 6px; letter-spacing: -.01em;
}
.abt-member-role {
    font-size: 12px;
    color: rgba(255,255,255,.28);
    letter-spacing: .05em; text-transform: uppercase;
}
.abt-team-note {
    text-align: center; margin-top: 44px;
    font-size: 13px; color: rgba(255,255,255,.2);
    letter-spacing: .06em;
}

/* ── Goals / Mission ────────────────────────────────────────── */
.abt-goals-section {
    background: var(--white);
    padding: 100px 48px;
}
.abt-goals-inner { max-width: 1200px; margin: 0 auto; }
.abt-goals-heading {
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 800; color: var(--dark);
    line-height: 1.02; letter-spacing: -.04em;
    margin: 18px 0 64px;
}
.abt-goals-heading em { color: var(--red); font-style: normal; }
.abt-goals-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.abt-goal-item {
    padding: 40px;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 20px;
    transition: border-color .24s;
}
.abt-goal-item:hover { border-color: var(--red); }
.abt-goal-year {
    display: block;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 900; color: var(--red);
    line-height: 1; letter-spacing: -.04em;
    margin-bottom: 16px;
}
.abt-goal-desc {
    font-size: clamp(15px, 1.4vw, 18px);
    color: #444; line-height: 1.6;
}

/* ── About responsive ───────────────────────────────────────── */
@media (max-width: 960px) {
    .abt-hero        { padding: 150px 28px 0; min-height: auto; }
    .abt-kpi-bar     { grid-template-columns: repeat(2, 1fr); }
    .abt-kpi-item:nth-child(2) { border-right: none; }
    .abt-story-section, .abt-values-section,
    .abt-founders-section, .abt-team-section,
    .abt-goals-section { padding: 72px 28px; }
    .abt-story-inner { grid-template-columns: 1fr; gap: 40px; }
    .abt-man-item    { grid-template-columns: 70px 1fr; gap: 24px; padding: 32px 0; }
    .abt-founders-hdr { flex-direction: column; align-items: flex-start; gap: 16px; }
    .abt-founders-editorial { grid-template-columns: 1fr; }
    .abt-founder-img-card--tall { height: 480px; }
    .abt-founder-img-card--mid  { height: 320px; }
    .abt-team-grid   { grid-template-columns: repeat(2, 1fr); }
    .abt-goals-row   { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .abt-hero        { padding: 140px 20px 0; }
    .abt-hero-title  { font-size: clamp(40px, 11vw, 72px); }
    .abt-kpi-item    { padding: 24px 16px; }
    .abt-man-item    { grid-template-columns: 1fr; gap: 6px; padding: 28px 0; }
    .abt-man-num     { text-align: left; font-size: 40px; }
    .abt-team-grid   { grid-template-columns: repeat(1, 1fr); }
    .abt-goals-heading { font-size: clamp(32px, 9vw, 52px); }
    .abt-goal-item   { padding: 28px 24px; }
    .abt-founders-section { padding: 64px 16px; }
    .abt-founders-title { font-size: 30px; }
    .abt-founder-img-card--tall { height: 400px; }
    .abt-founder-img-card--mid  { height: 280px; }
    .abt-fic-name { font-size: 20px; }
    .abt-fic-overlay { padding: 20px 22px; }
}

/* ================================================================
   BLOG PAGE — blog.html
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.blog-hero {
    min-height: 65vh;
    padding-bottom: 96px;
}

/* ── Featured post ───────────────────────────────────────────── */
.blog-featured-section {
    background: var(--white);
    padding: 64px 48px 48px;
}
.blog-featured-inner { max-width: 1200px; margin: 0 auto; }

.blog-feat-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    background: #f5f5f3;
    transition: transform .4s ease;
}
.blog-feat-card:hover { transform: translateY(-4px); }

.blog-feat-img-wrap {
    height: 460px;
    overflow: hidden;
}
.blog-feat-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .6s ease;
}
.blog-feat-card:hover .blog-feat-img-wrap img { transform: scale(1.05); }

.blog-feat-body {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.blog-cat-pill {
    display: inline-block;
    background: var(--red); color: #fff;
    font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px;
    align-self: flex-start;
}
.blog-cat-pill--sm {
    font-size: 9px; padding: 4px 10px;
}
.blog-feat-title {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 800; color: var(--dark);
    line-height: 1.18; letter-spacing: -.025em;
}
.blog-feat-excerpt {
    font-size: 15px; color: rgba(17,17,17,.55);
    line-height: 1.6;
}
.blog-feat-meta {
    display: flex; align-items: center;
    gap: 8px; flex-wrap: wrap;
    font-size: 12px; color: rgba(17,17,17,.4);
    font-weight: 500;
}
.blog-dot { color: rgba(17,17,17,.2); }
.blog-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700;
    color: var(--red); margin-top: 4px;
    letter-spacing: .02em;
}

/* ── Post grid ──────────────────────────────────────────────── */
.blog-grid-section {
    background: var(--white);
    padding: 0 48px 80px;
}
.blog-grid-inner { max-width: 1200px; margin: 0 auto; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 24px;
}

.blog-card {
    border-radius: 16px; overflow: hidden;
    background: #f5f5f3;
    text-decoration: none;
    display: flex; flex-direction: column;
    transition: transform .35s ease;
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card-img-wrap {
    height: 220px; overflow: hidden;
}
.blog-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .55s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }

.blog-card-body {
    padding: 24px;
    display: flex; flex-direction: column;
    gap: 10px; flex: 1;
}
.blog-card-title {
    font-size: 16px; font-weight: 800;
    color: var(--dark); line-height: 1.3;
    letter-spacing: -.015em;
}
.blog-card-excerpt {
    font-size: 13px; color: rgba(17,17,17,.5);
    line-height: 1.55; flex: 1;
}
.blog-card-meta {
    display: flex; align-items: center;
    gap: 6px; font-size: 11px;
    color: rgba(17,17,17,.35); font-weight: 500;
    margin-top: auto;
}

/* ── Newsletter section ──────────────────────────────────────── */
.blog-nl-section {
    background: var(--dark);
    padding: 100px 48px;
}
.blog-nl-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.blog-nl-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800; color: var(--white);
    line-height: 1.1; letter-spacing: -.03em;
    margin: 12px 0;
}
.blog-nl-title em { color: var(--red); font-style: normal; }
.blog-nl-sub {
    font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.6;
}
.blog-nl-inputs {
    display: flex; flex-direction: column; gap: 12px;
}
.blog-nl-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff; font-size: 14px;
    outline: none; transition: border-color .2s;
    box-sizing: border-box;
    font-family: inherit;
}
.blog-nl-input::placeholder { color: rgba(255,255,255,.3); }
.blog-nl-input:focus { border-color: var(--red); }
.blog-nl-btn {
    padding: 16px 32px;
    background: var(--red); color: #fff;
    font-size: 14px; font-weight: 700;
    border: none; border-radius: 10px;
    cursor: pointer; transition: background .2s;
    font-family: inherit;
}
.blog-nl-btn:hover { background: #c4243a; }
.blog-nl-ok { color: #22c55e; font-size: 14px; font-weight: 600; }

/* ================================================================
   BLOG SINGLE PAGE — blog-single.html
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.bs-hero {
    position: relative;
    height: 70vh; min-height: 480px;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.bs-hero-img-wrap {
    position: absolute; inset: 0;
}
.bs-hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.bs-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,.9) 0%,
        rgba(0,0,0,.5) 50%,
        rgba(0,0,0,.1) 100%);
}
.bs-hero-content {
    position: relative; z-index: 2;
    padding: 0 64px 52px;
    width: 100%; max-width: 900px;
    display: flex; flex-direction: column; gap: 14px;
}
.bs-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,.5);
}
.bs-breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.bs-breadcrumb a:hover { color: #fff; }
.bs-title {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 800; color: #fff;
    line-height: 1.12; letter-spacing: -.03em;
}
.bs-meta {
    display: flex; align-items: center; gap: 14px;
}
.bs-author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--red); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800;
    flex-shrink: 0;
}
.bs-meta-text { display: flex; flex-direction: column; gap: 2px; }
.bs-author { font-size: 13px; font-weight: 700; color: #fff; }
.bs-meta-sub { font-size: 11px; color: rgba(255,255,255,.45); }

/* ── Layout ──────────────────────────────────────────────────── */
.bs-layout {
    max-width: 1200px; margin: 0 auto;
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-areas:
        "article sidebar";
    column-gap: 64px;
    align-items: start;
}

/* ── Article ─────────────────────────────────────────────────── */
.bs-article { grid-area: article; min-width: 0; }
.bs-intro {
    font-size: 19px; font-weight: 500;
    color: var(--dark); line-height: 1.65;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(0,0,0,.06);
    letter-spacing: -.01em;
}
.bs-body-heading {
    font-size: 20px; font-weight: 800;
    color: var(--dark); line-height: 1.2;
    letter-spacing: -.02em;
    margin: 44px 0 14px;
    scroll-margin-top: 100px;
}
.bs-body-para {
    font-size: 16px; color: rgba(17,17,17,.7);
    line-height: 1.75;
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.bs-sidebar {
    grid-area: sidebar;
    position: sticky; top: 90px;
    display: flex; flex-direction: column; gap: 20px;
}
.bs-toc-card, .bs-tags-card {
    background: #f5f5f3;
    border-radius: 16px; padding: 28px 24px;
}
.bs-toc-title {
    font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(17,17,17,.4); margin-bottom: 16px;
}
.bs-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bs-toc-list a {
    font-size: 13px; font-weight: 600;
    color: rgba(17,17,17,.6); text-decoration: none;
    line-height: 1.4; transition: color .2s;
    display: block;
}
.bs-toc-list a:hover { color: var(--red); }
.bs-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bs-tag {
    font-size: 11px; font-weight: 600;
    color: rgba(17,17,17,.5); background: rgba(0,0,0,.06);
    padding: 5px 10px; border-radius: 20px;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s, color .2s;
    display: inline-block;
}
.bs-tag:hover {
    background: var(--red);
    color: #fff;
}
.bs-cta-card {
    background: var(--dark);
    border-radius: 16px; padding: 32px 24px;
    display: flex; flex-direction: column; gap: 10px;
}
.bs-cta-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.bs-cta-title {
    font-size: 22px; font-weight: 800;
    color: #fff; line-height: 1.18; letter-spacing: -.02em;
}
.bs-cta-sub { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; }
.bs-cta-btn {
    margin-top: 8px; padding: 14px 20px;
    background: var(--red); color: #fff;
    font-size: 13px; font-weight: 700;
    border: none; border-radius: 10px;
    cursor: pointer; transition: background .2s;
    font-family: inherit;
}
.bs-cta-btn:hover { background: #c4243a; }

/* ── Share bar (lives inside sidebar) ───────────────────────── */
.bs-share-bar {
    background: #f5f5f3;
    border-radius: 16px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bs-share-label {
    font-size: 11px; font-weight: 700;
    color: rgba(17,17,17,.4);
    letter-spacing: .06em; text-transform: uppercase;
}
.bs-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.bs-share-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff; color: rgba(17,17,17,.5);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.bs-share-btn svg { width: 16px; height: 16px; }
.bs-share-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ── Related section ─────────────────────────────────────────── */
.bs-related-section {
    background: var(--white);
    padding: 80px 48px;
    border-top: 1px solid rgba(0,0,0,.07);
}
.bs-related-inner { max-width: 1200px; margin: 0 auto; }
.bs-related-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800; color: var(--dark);
    letter-spacing: -.025em; margin: 10px 0 0;
}
.bs-related-grid { margin-top: 40px; }

/* ================================================================
   CONTACT PAGE — contact.html
   ================================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.ct-hero {
    background: var(--dark2);
    padding: 160px 48px 80px;
    position: relative;
    overflow: hidden;
}
/* footer-style colour blob */
.ct-hero::before {
    content: '';
    position: absolute;
    right: -6%; top: -20%;
    width: 65%; height: 150%;
    border-radius: 44% 52% 48% 40% / 36% 44% 52% 44%;
    background:
        radial-gradient(ellipse at 35% 38%, rgba(228,44,66,.34) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 68%, rgba(80,111,252,.28) 0%, transparent 52%),
        radial-gradient(ellipse at 50% 84%, rgba(80,111,252,.17) 0%, transparent 46%);
    filter: blur(84px);
    mix-blend-mode: screen;
    pointer-events: none; z-index: 0;
}
.ct-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px; align-items: center;
    position: relative; z-index: 2;
}
.ct-hero-info {
    display: flex; flex-direction: column; gap: 0;
}
.ct-hero-title {
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 800; color: #fff;
    line-height: 1.05; letter-spacing: -.035em;
    margin: 16px 0 20px;
}
.ct-hero-sub {
    font-size: 16px; color: rgba(255,255,255,.5);
    line-height: 1.65; max-width: 480px;
    margin-bottom: 40px;
}
.ct-quick-links {
    display: flex; flex-direction: column; gap: 14px;
}
.ct-quick-link {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px; text-decoration: none;
    transition: border-color .2s, background .2s;
}
.ct-quick-link:hover { border-color: var(--red); background: rgba(228,44,66,.06); }
.ct-ql-icon { font-size: 20px; flex-shrink: 0; }
.ct-ql-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.4); margin-bottom: 3px;
}
.ct-ql-val { font-size: 15px; font-weight: 700; color: #fff; }

/* Hire button inside hero */
.ct-hire-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    border: none; border-radius: 100px;
    padding: 16px 36px; font-size: 15px; font-weight: 700;
    cursor: pointer; margin: 24px 0 28px;
    transition: opacity .2s, transform .2s;
}
.ct-hire-btn:hover { opacity: .88; transform: translateY(-1px); }
.ct-hire-btn .arr { font-style: normal; }

/* Social icons row in hero */
.ct-hero-socials {
    display: flex; gap: 12px; margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.ct-hero-social {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.ct-hero-social svg { width: 18px; height: 18px; }
.ct-hero-social:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* Decorative rings (kept for reference, element removed from HTML) */
.ct-hero-deco {
    position: relative; height: 320px;
}
.ct-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.ct-deco-ring--1 { width: 200px; height: 200px; }
.ct-deco-ring--2 { width: 300px; height: 300px; border-color: rgba(228,44,66,.15); }
.ct-deco-ring--3 { width: 400px; height: 400px; border-color: rgba(255,255,255,.04); }
.ct-deco-dot {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 60px rgba(228,44,66,.5);
}

/* ── Main block ──────────────────────────────────────────────── */
.ct-main {
    background: var(--white);
    padding: 100px 48px;
}
.ct-main-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px; align-items: start;
}

/* ── Form ────────────────────────────────────────────────────── */
.ct-form-top-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: rgba(17,17,17,.3); margin-bottom: 14px;
}
.ct-form-title {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800; color: var(--dark);
    line-height: 1.1; letter-spacing: -.03em;
    margin-bottom: 40px;
}
.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ct-field { display: flex; flex-direction: column; gap: 7px; }
.ct-field label {
    font-size: 12px; font-weight: 700;
    color: rgba(17,17,17,.55); letter-spacing: .03em;
}
.ct-input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(0,0,0,.1);
    background: #fafafa;
    font-size: 14px; color: var(--dark);
    outline: none; transition: border-color .2s, background .2s;
    font-family: inherit;
    box-sizing: border-box;
    width: 100%;
}
.ct-input:focus { border-color: var(--red); background: #fff; }
.ct-input option { background: #fff; color: var(--dark); }
.ct-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.ct-submit-btn {
    padding: 18px 32px;
    background: var(--red); color: #fff;
    font-size: 15px; font-weight: 800;
    border: none; border-radius: 12px;
    cursor: pointer; transition: background .2s;
    font-family: inherit; letter-spacing: .01em;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 8px;
}
.ct-submit-btn:hover { background: #c4243a; }
.ct-form-ok {
    display: none;
    flex-direction: column; align-items: center;
    text-align: center; gap: 20px;
    padding: 60px 0;
}
.ct-form-ok svg { width: 56px; height: 56px; }
.ct-form-ok h3 { font-size: 28px; font-weight: 800; color: var(--dark); }
.ct-form-ok p { font-size: 16px; color: rgba(17,17,17,.55); line-height: 1.6; }
.ct-back-btn {
    font-size: 13px; font-weight: 700;
    color: var(--red); text-decoration: none;
}

/* ── Info column ─────────────────────────────────────────────── */
.ct-info-col {
    display: flex; flex-direction: column; gap: 16px;
    position: sticky; top: 90px;
}
.ct-info-card {
    background: #f5f5f3;
    border-radius: 16px; padding: 24px 22px;
    display: flex; align-items: flex-start; gap: 18px;
}
.ct-info-icon {
    width: 44px; height: 44px;
    background: var(--white); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ct-info-icon svg { width: 20px; height: 20px; stroke: var(--red); }
.ct-info-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(17,17,17,.4); margin-bottom: 5px;
}
.ct-info-val {
    font-size: 15px; font-weight: 700; color: var(--dark);
    text-decoration: none; display: block;
}
.ct-info-val:hover { color: var(--red); }
.ct-info-note { font-size: 12px; color: rgba(17,17,17,.4); margin-top: 3px; }

.ct-socials-card {
    background: var(--dark);
    border-radius: 16px; padding: 28px 22px;
}
.ct-social-links { display: flex; flex-direction: column; gap: 10px; }
.ct-social-link {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 16px;
    background: rgba(255,255,255,.05);
    border-radius: 10px; text-decoration: none;
    transition: background .2s;
}
.ct-social-link:hover { background: rgba(228,44,66,.15); }
.ct-social-link svg { width: 18px; height: 18px; color: #fff; flex-shrink: 0; }
.ct-social-link span:nth-child(2) {
    font-size: 13px; font-weight: 700; color: #fff; flex: 1;
}
.ct-social-handle { font-size: 12px; color: rgba(255,255,255,.35); }

/* ── Map section ─────────────────────────────────────────────── */
.ct-map-section {
    background: #0d0d0d;
    padding: 0;
}
.ct-map-inner {
    position: relative;
    height: 580px;
}
/* ── Callback (ზარის მოთხოვნა) section ──────────────────────── */
.ct-callback-section {
    background: var(--white);
    padding: 80px 48px;
    border-top: 1px solid var(--border);
}
.ct-callback-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between; gap: 60px; flex-wrap: wrap;
}
.ct-callback-title {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 800; color: var(--dark);
    line-height: 1.1; letter-spacing: -.03em;
}
.ct-callback-sub {
    margin-top: 10px; color: rgba(17,17,17,.45); font-size: 15px; line-height: 1.55;
}
.ct-callback-form {
    display: flex; gap: 12px; flex: 1; min-width: 320px; flex-wrap: wrap; align-items: center; justify-content: flex-end;
}
.ct-cb-input {
    flex: 1; min-width: 160px; padding: 16px 20px;
    border-radius: 12px; border: 1.5px solid rgba(17,17,17,.12);
    font-family: var(--font); font-size: 15px; color: var(--dark);
    outline: none; transition: border-color .2s;
}
.ct-cb-input:focus { border-color: var(--red); }
.ct-cb-input::placeholder { color: rgba(17,17,17,.35); }
.ct-cb-btn {
    background: var(--red); color: #fff;
    border-radius: 100px; padding: 16px 32px;
    font-weight: 700; font-size: 15px; font-family: var(--font);
    white-space: nowrap; border: none; cursor: pointer;
    transition: opacity .2s, transform .2s;
}
.ct-cb-btn:hover { opacity: .88; transform: translateY(-1px); }
.ct-map-badge {
    position: absolute; bottom: 24px; left: 24px;
    display: flex; align-items: center; gap: 14px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.ct-map-badge-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(228,44,66,.2);
}
.ct-map-badge-title { font-size: 13px; font-weight: 800; color: var(--dark); }
.ct-map-badge-addr { font-size: 11px; color: rgba(17,17,17,.5); margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.ct-faq-section {
    background: #F7F7F5;
    padding: 100px 48px;
}
.ct-faq-inner {
    max-width: 760px; margin: 0 auto;
}
.ct-faq-title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800; color: var(--dark);
    line-height: 1.1; letter-spacing: -.03em;
    margin-bottom: 48px;
}
.ct-faq-list .faq-question {
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.ct-faq-list .faq-answer p { color: rgba(17,17,17,.65); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
    .blog-featured-section, .blog-grid-section, .blog-nl-section { padding-left: 24px; padding-right: 24px; }
    .blog-feat-card { grid-template-columns: 1fr; }
    .blog-feat-img-wrap { height: 300px; }
    .blog-feat-body { padding: 32px 28px; }
    .blog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .blog-nl-inner { grid-template-columns: 1fr; gap: 40px; }

    .bs-hero-content { padding: 0 24px 40px; }
    /* Blog single — mobile reorder */
    .bs-layout {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        padding: 40px 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .bs-sidebar {
        position: static;
        display: contents; /* dissolve: children become direct flex items */
    }
    /* Reorder: TOC → Article → Share → Tags → CTA */
    .bs-toc-card  { order: 0; }
    .bs-article   { order: 1; }
    .bs-share-bar { order: 2; border-radius: 12px; }
    .bs-tags-card { order: 3; }
    .bs-cta-card  { order: 4; }
    .bs-related-section { padding: 64px 24px; }

    .ct-hero { padding: 140px 24px 64px; }
    .ct-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .ct-hero-deco { display: none; }
    .ct-callback-section { padding: 60px 24px; }
    .ct-callback-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
    .ct-callback-form { width: 100%; justify-content: flex-start; }
    .ct-callback-title { font-size: clamp(22px, 6vw, 34px); }
    .ct-main { padding: 72px 24px; }
    .ct-main-inner { grid-template-columns: 1fr; gap: 48px; }
    .ct-info-col { position: static; }
    .ct-faq-section { padding: 72px 24px; }
    .ct-map-inner { height: 300px; }
}
@media (max-width: 600px) {
    .blog-featured-section { padding: 40px 16px 32px; }
    .blog-grid-section { padding: 0 16px 56px; }
    .blog-grid { grid-template-columns: 1fr; gap: 14px; }
    .blog-feat-title { font-size: 20px; }
    .blog-feat-body { padding: 24px 20px; }
    .blog-nl-section { padding: 64px 16px; }

    .bs-hero { height: 60vh; min-height: 380px; }
    .bs-hero-content { padding: 0 16px 32px; }
    .bs-title { font-size: 24px; }
    .bs-layout { padding: 32px 16px; }
    .bs-related-section { padding: 48px 16px; }

    .ct-hero { padding: 120px 16px 48px; }
    .ct-hero-title { font-size: 38px; }
    .ct-main { padding: 56px 16px; }
    .ct-form-row-2 { grid-template-columns: 1fr; }
    .ct-faq-section { padding: 56px 16px; }
    .ct-callback-section { padding: 48px 16px; }
    .ct-cb-input, .ct-cb-btn { width: 100%; }
    .ct-callback-form { flex-direction: column; }
}


/* ================================================================
   ABOUT — EQUAL FOUNDERS GRID
   ================================================================ */
.abt-founders-equal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.abt-founder-eq-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.abt-founder-eq-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--dark2);
}
.abt-founder-eq-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block;
    filter: grayscale(1);
    transition: transform .6s ease, filter .4s ease;
}
.abt-founder-eq-card:hover .abt-founder-eq-img img {
    transform: scale(1.04);
    filter: grayscale(0);
}

.abt-founder-eq-name {
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.025em;
    line-height: 1.15;
    margin: 0 0 6px;
}

.abt-founder-eq-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(17,17,17,.4);
}


/* ================================================================
   ABOUT — CAREER APPLICATION FORM
   ================================================================ */
.abt-career-section {
    background: #f7f7f6;
    padding: 120px 48px;
}

.abt-career-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.abt-career-hdr {
    position: static;
}

.abt-career-title {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.035em;
    line-height: 1.0;
    margin: 12px 0 18px;
}
.abt-career-title .t-red { color: var(--red); }

.abt-career-sub {
    font-size: 15px;
    color: rgba(17,17,17,.45);
    line-height: 1.65;
    max-width: 320px;
}

/* Form layout */
.abt-career-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-cf-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.abt-cf-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.abt-cf-field > label:first-child {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(17,17,17,.45);
}

.abt-cf-input {
    width: 100%;
    background: #fff;
    border: 1.5px solid rgba(17,17,17,.12);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--dark);
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    box-sizing: border-box;
}
.abt-cf-input::placeholder { color: rgba(17,17,17,.28); }
.abt-cf-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(228,44,66,.1);
}

.abt-cf-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* File upload */
.abt-cf-file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: #fff;
    border: 1.5px dashed rgba(17,17,17,.2);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(17,17,17,.5);
    transition: border-color .2s, background .2s;
}
.abt-cf-file-label:hover {
    border-color: var(--red);
    background: rgba(228,44,66,.03);
    color: var(--dark);
}
.abt-cf-file-label svg {
    flex-shrink: 0;
    color: rgba(17,17,17,.35);
    transition: color .2s;
}
.abt-cf-file-label:hover svg { color: var(--red); }

/* Submit button */
.abt-cf-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    align-self: flex-start;
    transition: background .2s, transform .15s;
    margin-top: 8px;
}
.abt-cf-submit:hover { background: #c42038; transform: translateY(-1px); }
.abt-cf-submit:active { transform: translateY(0); }
.btn-spinner {
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success state */
.abt-cf-ok {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: 24px;
    border: 1.5px solid rgba(34,197,94,.2);
}
.abt-cf-ok.is-visible { display: flex; }
.abt-cf-ok svg { width: 52px; height: 52px; }
.abt-cf-ok h3 {
    font-size: 22px; font-weight: 800;
    color: var(--dark); margin: 0;
}
.abt-cf-ok p {
    font-size: 15px; color: rgba(17,17,17,.5);
    line-height: 1.65; margin: 0;
}


/* ================================================================
   PAGINATION
   ================================================================ */
.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 0 8px;
}
.pager-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.12);
    background: #fff;
    font-size: 17px;
    color: var(--dark);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s, color .2s;
    line-height: 1;
}
.pager-btn:hover:not(:disabled) {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.pager-btn:disabled { opacity: .3; cursor: default; }
.pager-info {
    font-size: 13px; font-weight: 700;
    color: rgba(17,17,17,.4);
    letter-spacing: .05em;
    min-width: 56px; text-align: center;
}


/* ================================================================
   PORTFOLIO-DETAIL — CLIENT LOGO + WEBSITE
   ================================================================ */
.pd-client-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.pd-client-logo {
    height: 40px; width: auto;
    max-width: 140px;
    object-fit: contain;
    border-radius: 6px;
}
.pd-client-website {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px; font-weight: 700;
    color: var(--red);
    text-decoration: none;
    border: 1.5px solid rgba(228,44,66,.25);
    border-radius: 100px;
    padding: 7px 16px;
    transition: background .2s, color .2s;
}
.pd-client-website:hover {
    background: var(--red);
    color: #fff;
}
.pd-client-website svg { flex-shrink: 0; }


/* ── Responsive: founders equal + career ──────────────────────── */
@media (max-width: 960px) {
    .abt-founders-equal {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .abt-hero-stats { gap: 28px; padding-top: 28px; margin-top: 28px; }
    .abt-hero-stat-num { font-size: 30px; }
    .abt-career-section { padding: 80px 24px; }
    .abt-career-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .abt-career-hdr { position: static; }
    .abt-cf-row2 { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 600px) {
    .abt-founders-equal {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .abt-hero-stats { flex-direction: column; gap: 20px; }
    .abt-hero-stat-num { font-size: 26px; }
    .abt-career-section { padding: 64px 16px; }
    .abt-career-title { font-size: 36px; }
    .abt-cf-submit { width: 100%; align-self: stretch; }
}
