/* =========================================================
   DESIGN TOKENS — every color and font used on the page is
   declared once here and referenced everywhere below.
========================================================= */
:root {
    /* Fonts — one family for headings, one for body copy (same face, kept as two tokens so they can be swapped independently later) */
    --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

    /* Colors */
    --color-ink: #0a0a0a;
    /* headings, primary dark text */
    --color-text: #1a1a1a;
    /* nav links, body-adjacent text */
    --color-muted: #4a4a4a;
    /* paragraph / sub text */
    --color-red: #ff4757;
    /* brand accent - enhanced */
    --color-red-soft: #ff6b7a;
    /* accent gradient partner */
    --color-red-tint: #fff0f2;
    /* light accent chip bg */
    --color-purple: #7c3aed;
    /* secondary accent */
    --color-purple-soft: #a78bfa;
    --color-purple-tint: #f5f3ff;
    --color-blue: #3b82f6;
    /* tertiary accent */
    --color-blue-soft: #60a5fa;
    --color-blue-tint: #eff6ff;
    --color-bg: #fafafa;
    /* page background - cleaner */
    --color-frame-bg: #f0f0f0;
    /* hero card background */
    --color-white: #ffffff;
    --color-black: #0f0f0f;
    /* primary button bg */
    --color-black-hover: #000000;
    --color-border: #e5e5e5;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

    --radius-full: 100px;
}

* {
    box-sizing: border-box;
}

/* Focus visible styles for keyboard navigation accessibility */
:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: 2px;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

/* =========================================================
   FIXED / FLOATING UI — these sit outside the hero frame so
   they are never clipped, and stay in place while the page scrolls
========================================================= */

/* ---------- Settings gear ---------- */
.gear {
    position: fixed;
    top: 40px;
    left: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform .2s ease, background .2s ease;
}

.gear:hover {
    background: var(--color-black-hover);
    transform: translateY(-1px);
}

.gear svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-white);
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    right: 40px;
    bottom: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-black-hover);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
}

/* ---------- Scroll for more (inside hero section) ---------- */
.scroll-pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--color-bg);
    border: 1px solid var(--color-border);

    /* Increase width */
    min-width: 260px;
    /* Adjust as needed */
    padding: 14px 30px;

    /* Rounded only at the top */
    border-radius: 30px 30px 0 0;

    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-ink);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.scroll-pill .arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-red-tint);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-pill .arrow svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-red);
}

/* =========================================================
   PAGE LAYOUT
========================================================= */
.stage {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding: 24px;
}

.frame {
    position: relative;
    background: var(--color-frame-bg);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* ---------- Background glow (desktop) ---------- */
.glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 900px 700px at 50% 100%, rgba(210, 210, 206, 0.9) 0%, rgba(233, 233, 231, 0) 60%),
        linear-gradient(180deg, #f2f2f0 0%, var(--color-frame-bg) 100%);
}

.glow::after {
    content: "";
    position: absolute;
    top: -10%;
    right: 6%;
    width: 38%;
    height: 130%;
    background:
        radial-gradient(closest-side, rgba(124, 58, 237, 0.8), rgba(118, 75, 162, 0.5) 45%, rgba(124, 58, 237, 0) 72%);
    filter: blur(3px);
    transform: rotate(8deg);
    opacity: 0.9;
}

.glow::before {
    content: "";
    position: absolute;
    bottom: -15%;
    right: 2%;
    width: 32%;
    height: 70%;
    background: radial-gradient(closest-side, rgba(255, 71, 87, 0.7), rgba(255, 71, 87, 0) 70%);
    opacity: 0.75;
}

/* ---------- Nav ---------- */
nav {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-full);
    padding: 12px 16px 12px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

nav:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 2px solid var(--color-purple);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a.active {
    color: var(--color-purple);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-text);
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 16px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    list-style: none;
    margin: 0;
    border: 1px solid var(--color-border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    position: relative;
}

.dropdown-menu li a:hover {
    background: var(--color-purple-tint);
    color: var(--color-purple);
}

.dropdown-menu li a::after {
    display: none;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.buy-btn {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-black);
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-btn svg {
    stroke: var(--color-white);
    width: 20px;
    height: 20px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-purple);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eyebrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: var(--font-heading);
    font-size: 66px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin: 26px 0 0;
    color: var(--color-ink);
    background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-visual {
    position: relative;
    width: 460px;
    height: 270px;
    margin: 30px auto 0;
    overflow: visible;
}

.pill-graphic {
    position: absolute;
    left: 50%;
    top: 75px;
    transform: translateX(-50%);
    width: 270px;
    height: 82px;
    z-index: 3;
    overflow: hidden;
    /* left: 0px;
    top: 30px; */

    background: var(--gradient-accent);
    border-radius: 999px;

    box-shadow:
        0 20px 55px rgba(255, 71, 87, .55),
        0 0 100px rgba(255, 71, 87, .28);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.02);
    }
}

.chip {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 18px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18), 0 4px 12px rgba(0, 0, 0, .10);
}

.chip:hover {
    transform: translateY(-8px) rotate(var(--rotate)) scale(1.1) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.chip svg {
    width: 42px;
    height: 42px;
}

/*
  hero-visual: 460px wide, 270px tall
  pill centered → x: 95–365,  y: 75–157

  chip-1 (green)  → INSIDE pill, clipped at top by overflow:hidden
  chip-2 (purple) → IN FRONT: right side of pill
  chip-3 (blue)   → IN FRONT: bottom-left, clear of pill
*/

/* chip-1 is relative to pill-graphic (270x82) */
.chip-1 {
    top: -15px;
    left: 20px;
    transform: rotate(-28deg);
    z-index: 1;
    --rotate: -28deg;
}

/* Blue — bottom-left, fully below pill */
.chip-3 {
    top: 146px;
    left: 170px;
    transform: rotate(-10deg);
    z-index: 4;
    --rotate: -10deg;
}

/* Purple — overlaps pill right end, clearly in front */
.chip-2 {
    top: 90px;
    left: 262px;
    right: auto;
    transform: rotate(-14deg);
    z-index: 4;
    --rotate: -14deg;
}

/* Work-single page specific chip positions */
.work-single-hero .chip-1 {
    top: 20px;
    left: 256px;
    transform: rotate(-25deg);
}

.work-single-hero .chip-2 {
    top: 100px;
    right: 14px;
    left: 220px;
    transform: rotate(-15deg);
}

.work-single-hero .chip-3 {
    top: 90px;
    left: 120px;
    transform: rotate(-10deg);
}

/* Work-single page specific pill-graphic */
.work-single-hero .pill-graphic {
    left: 0px;
    top: 30px;
    transform: none;
}

.sub {
    max-width: 860px;
    margin: 44px auto 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-muted);
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 30px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-purple-tint);
    border-color: var(--color-purple);
    color: var(--color-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

/* ---------- Contact Page Specific Styles ---------- */
.contact-page .nav-links a.active {
    color: var(--color-purple);
}

.contact-page .nav-links a.active::after {
    background: var(--gradient-primary);
}

.contact-page .mobile-menu a.active {
    color: var(--color-purple-soft);
}

.contact-page .hero-visual {
    display: inline-block;
    vertical-align: middle;
    width: 270px;
    height: 82px;
    margin: 0 0 0 20px;
    position: relative;
    top: -12px;
    /* align vertically with text baseline */
}

.contact-page .pill-graphic {
    top: 10px;
    left: 120px;
    transform: none;
}

.contact-page .chip-2 {
    top: 15px;
    left: 167px;
}

.contact-page .chip-3 {
    top: 80px;
    left: 70px;
}

.contact-page .sub {
    margin-top: 80px;
    /* give more space for the floating bottom chip */
}


/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 760px) {
    .stage {
        padding: 12px;
    }

    .frame {
        border-radius: 24px;
        min-height: auto;
    }

    .glow::after {
        right: -10%;
        top: 8%;
        width: 70%;
        height: 38%;
        transform: rotate(0deg);
    }

    .glow::before {
        display: none;
    }

    .gear {
        width: 44px;
        height: 44px;
        top: 70px;
        left: 20px;
    }

    .gear svg {
        width: 18px;
        height: 18px;
    }

    .back-to-top {
        width: 46px;
        height: 46px;
        right: 18px;
        bottom: 18px;
    }

    .scroll-pill {
        padding: 12px 18px;
        font-size: 13px;
        bottom: 0;
    }

    nav {
        padding: 8px 8px 8px 18px;
        border-radius: var(--radius-full);
    }

    .logo {
        font-size: 17px;
    }

    .logo-mark {
        width: 22px;
        height: 22px;
    }

    .nav-links {
        display: none;
    }

    .buy-btn {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 34px;
    }

    .eyebrow {
        font-size: 12px;
        padding: 8px 16px;
    }

    h1 {
        font-size: 34px;
        margin-top: 18px;
        letter-spacing: -0.02em;
    }

    .hero-visual {
        margin-top: 26px;
        width: 320px;
        height: 200px;
    }

    .pill-graphic {
        width: 180px;
        height: 70px;
        top: 30px;
    }

    .chip {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .chip svg {
        width: 28px;
        height: 28px;
    }

    .chip-1 {
        top: -10px;
        left: 16px;
        transform: rotate(-25deg);
    }

    .chip-2 {
        top: 49px;
        right: 14px;
        left: 170px;
        transform: rotate(-15deg);
    }

    .chip-3 {
        top: 93px;
        left: 100px;
        transform: rotate(-10deg);
    }

    .sub {
        font-size: 14px;
        margin-top: 30px;
        padding: 0 6px;
    }

    .cta-row {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 26px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 16px 20px;
        text-align: center;
    }

    /* Contact page overrides for mobile */
    .contact-page .hero h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 32px;
        line-height: 1.1;
    }

    .contact-page .hero-visual {
        display: block;
        margin: 15px auto 0 !important;
        position: relative;
        top: 0;
        width: 180px;
        height: 70px;
    }

    .contact-page .pill-graphic {
        top: 0;
        left: 100px;
        width: 180px;
        height: 70px;
        transform: none;
    }

    .contact-page .chip-2 {
        top: 10px;
        left: 130px;
    }

    .contact-page .chip-3 {
        top: 65px;
        left: 60px;
    }

    .work-single-hero .chip-1 {
        top: -10px;
        left: 46px;
        transform: rotate(-25deg);
    }

    .work-single-hero .chip-2 {
        top: 6px;
        right: 14px;
        left: 170px;
        transform: rotate(-15deg);
    }

    .work-single-hero .chip-3 {
        top: 70px;
        left: 100px;
        transform: rotate(-10deg);
    }

    .work-single-hero .pill-graphic {
        top: 0px;
        left: 0px;
        width: 180px;
        height: 70px;
        transform: none;
    }

    .contact-page .sub {
        margin-top: 70px;
    }
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.96);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-menu a.active {
    color: var(--color-red-soft);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2a2a2a;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu .close-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-white);
}

.mobile-menu .buy-btn-mobile {
    margin-top: 10px;
    background: var(--color-red);
    color: var(--color-white);
}

/* Mobile dropdown styles */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 6px !important;
}

.mobile-dropdown-toggle::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--color-white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    visibility: hidden;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
}

.mobile-dropdown-menu a {
    font-size: 20px;
    padding: 8px 0;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.mobile-dropdown-menu a:hover {
    color: var(--color-purple-soft);
}

/* =========================================================
   SCROLL-REVEAL ANIMATION
   Elements start faded + shifted down, and settle into place
   the first time they enter the viewport.
========================================================= */
.reveal {
    opacity: 0;
    /* Starting position is handled by the keyframes, no transform needed here initially */
    will-change: opacity, transform;
}

.reveal.in-view {
    animation: revealAnim 0.8s cubic-bezier(.16, .8, .24, 1) both;
}

@keyframes revealAnim {
    0% {
        opacity: 0;
        transform: translateY(160px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   PAGE-LOAD ANIMATION
   Elements animate from below on page refresh
========================================================= */
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    animation: slideUpAnim 1s cubic-bezier(.16, .8, .24, 1) forwards;
    animation-play-state: paused;
    animation-delay: var(--anim-delay, 0s);
}

.slide-up.animate {
    animation-play-state: running;
}

@keyframes slideUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide-up {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* =========================================================
   ABOUT SECTION
========================================================= */
.about {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px 0 50px;
}

.about-inner {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 28px;
    align-items: start;
}

/* ---------- Left column ---------- */
.about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eyebrow-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ece9ff;
    color: #5b3df0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 18px 9px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    margin-left: 90px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5b3df0;
    display: inline-block;
}

.dot-purple {
    background: #a78bfa;
}

.about-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
}

.about-heading .line {
    display: block;
}

.line-solid {
    color: var(--color-ink);
}

.line-ghost {
    background: linear-gradient(180deg, #b9b9b7 0%, rgba(185, 185, 183, 0.15) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Dark globe card ---------- */
.globe-card {
    position: relative;
    width: 100%;
    background: radial-gradient(120% 100% at 50% 0%, #262626 0%, #141414 55%, #0b0b0b 100%);
    border-radius: 32px;
    padding: 44px 32px 0;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
    max-height: 600px;
}

.pill-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #d8d8d8;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.based-in {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--color-white);
    margin: 20px 0 0;
}

.based-in .accent {
    color: #8b6bff;
}

.btn-start {
    margin: 24px 0 0;
    background: var(--color-white);
    color: var(--color-ink);
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.btn-start:hover {
    background: #eee;
    transform: translateY(-1px);
}

/* ---------- Globe graphic (CSS-generated, no external image) ---------- */
.globe {
    position: relative;
    width: 100%;
    max-width: none;
    aspect-ratio: 1.7 / 1;
    margin: 38px 0 0;
    overflow: hidden;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
}

.globe-sphere {
    position: absolute;
    left: 50%;
    bottom: -58%;
    width: 130%;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 38% 30%, #1e3a8a 0%, #172554 32%, #020617 62%, #000000 100%);
    box-shadow: inset 0 20px 60px rgba(0, 0, 0, 0.8);
}

.globe-dots {
    position: absolute;
    left: 50%;
    bottom: -58%;
    width: 130%;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background-image: radial-gradient(rgba(134, 239, 172, 0.9) 1.2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.8;
    mix-blend-mode: screen;
    -webkit-mask-image:
        radial-gradient(circle at 50% 42%, black 0%, black 60%, transparent 62%),
        radial-gradient(140px 90px at 30% 40%, black 50%, transparent 65%),
        radial-gradient(160px 80px at 55% 30%, black 50%, transparent 65%),
        radial-gradient(120px 140px at 70% 55%, black 50%, transparent 65%),
        radial-gradient(100px 70px at 40% 60%, black 50%, transparent 65%),
        radial-gradient(80px 50px at 25% 55%, black 50%, transparent 65%),
        radial-gradient(90px 60px at 60% 45%, black 50%, transparent 65%);
    -webkit-mask-composite: source-in, source-over, source-over, source-over, source-over, source-over, source-over;
    mask-composite: intersect, add, add, add, add, add, add;
    mask-image:
        radial-gradient(circle at 50% 42%, black 0%, black 60%, transparent 62%),
        radial-gradient(140px 90px at 30% 40%, black 50%, transparent 65%),
        radial-gradient(160px 80px at 55% 30%, black 50%, transparent 65%),
        radial-gradient(120px 140px at 70% 55%, black 50%, transparent 65%),
        radial-gradient(100px 70px at 40% 60%, black 50%, transparent 65%),
        radial-gradient(80px 50px at 25% 55%, black 50%, transparent 65%),
        radial-gradient(90px 60px at 60% 45%, black 50%, transparent 65%);
}

.globe-rim {
    position: absolute;
    left: 50%;
    bottom: -58%;
    width: 130%;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 0 -6px 40px rgba(180, 180, 180, 0.25) inset;
    pointer-events: none;
}

/* ---------- Right column ---------- */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 220px;
}

.stat-card,
.quote-card {
    background: var(--color-white);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-height: 300px;
}

.stat-card {
    padding: 32px 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.stat-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-ink);
    margin: 0;
    max-width: 340px;
}

.stat-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 28px;
}

.trustpilot-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--color-ink);
}

.tp-star {
    color: #00b67a;
}

.tp-stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.tp-stars span {
    width: 20px;
    height: 20px;
    background: #0c0c0c;
    color: #00b67a;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 64px;
    line-height: 1;
    color: #e4e4e2;
    letter-spacing: -0.02em;
}

.quote-card {
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: stretch;
    min-height: 250px;
}

.quote-image {
    flex: 0 0 132px;
    width: 132px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(165deg, #ff6a3d 0%, #d1361c 45%, #240a05 100%);
}

.quote-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.quote-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 4px 6px 0;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 0.6;
    color: #d8d8d6;
    margin-bottom: 10px;
    display: block;
}

.quote-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-ink);
    font-weight: 600;
    margin: 0 0 16px;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
}

.quote-author strong {
    color: var(--color-ink);
    font-weight: 700;
}

.quote-author .sep {
    margin: 0 8px;
    color: var(--color-border);
}

/* =========================================================
   ABOUT — RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .about-heading {
        font-size: 46px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-right {
        flex-direction: row;
    }

    .stat-card,
    .quote-card {
        flex: 1;
    }

    .quote-card {
        flex-direction: column;
    }

    .quote-image {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 760px) {
    .about {
        padding: 60px 25px 0;
    }

    .about-inner {
        gap: 20px;
    }

    .about-heading {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .eyebrow-dot {
        font-size: 12px;
        padding: 8px 14px 8px 12px;
        margin-bottom: 20px;
        margin-left: 10px;
    }

    .globe-card {
        border-radius: 24px;
        padding: 30px 20px 0;
    }

    .based-in {
        font-size: 20px;
    }

    .btn-start {
        width: 100%;
        padding: 14px;
    }

    .globe {
        width: 100%;
        margin-top: 28px;
    }

    .about-right {
        flex-direction: column;
        gap: 16px;
        margin-top: 0;
    }

    .stat-card {
        min-height: auto;
        padding: 26px 22px 22px;
    }

    .stat-text {
        max-width: none;
        padding-top: 0;
    }

    .stat-number {
        font-size: 48px;
    }

    .quote-card {
        flex-direction: row;
        padding: 16px;
    }

    .quote-image {
        flex: 0 0 96px;
        width: 96px;
        height: auto;
    }

    .quote-text {
        font-size: 16px;
    }

    .tag-small {
        padding: 9px 18px 9px 0;
    }
}

/* =========================================================
   TEAM SECTION
========================================================= */
.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px 100px 50px;
}

.team-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 28px 0 24px;
    color: var(--color-ink);
}

.team-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--color-white);
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(165deg, #667eea 0%, #764ba2 100%);
}

.team-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-ink);
    margin: 0 0 8px;
}

.team-role {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-purple);
    margin: 0 0 12px;
}

.team-bio {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-muted);
    margin: 0;
}

/* Team responsive */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .team-section {
        padding: 60px 25px 80px 25px;
    }

    .team-heading {
        font-size: 36px;
    }

    .team-description {
        font-size: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 24px 20px;
    }
}

/* =========================================================
   CORE VALUES SECTION
========================================================= */
.core-values-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px 100px 50px;
}

.core-values-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.core-values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.core-values-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 28px 0 24px;
    color: var(--color-ink);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--color-white);
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-ink);
    margin: 0 0 16px;
}

.value-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
}

/* Core Values responsive */
@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .core-values-section {
        padding: 60px 25px 80px 25px;
    }

    .core-values-heading {
        font-size: 36px;
    }

    .value-card {
        padding: 32px 24px;
    }

    .value-card h3 {
        font-size: 20px;
    }

    .value-card p {
        font-size: 15px;
    }
}

/* =========================================================
   SERVICES SECTION
========================================================= */
.services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 50px 80px 50px;
}

.services-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.services-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 28px 0 24px;
}

.services-heading .line {
    display: block;
}

.services-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
    max-width: 520px;
}

.services-image {
    margin-top: 32px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 28px 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--color-purple);
}

.service-card-dark {
    background: var(--gradient-dark);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.service-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.3);
    border-color: var(--color-purple-soft);
}

.service-card-dark h3,
.service-card-dark p,
.service-card-dark .service-number {
    color: var(--color-white);
}

.service-card-dark .tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-ink);
    margin: 0;
    letter-spacing: -0.01em;
}

.service-number {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-muted);
}

.service-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-muted);
    margin: 0 0 16px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    color: var(--color-muted);
    padding: 6px 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
}

/* Services responsive */
@media (max-width: 1100px) {
    .services-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-heading {
        font-size: 46px;
    }

    .services-description {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .services {
        padding: 40px 25px 60px 25px;
    }

    .services-heading {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .services-description {
        font-size: 16px;
    }

    .service-card {
        padding: 22px 24px;
    }

    .card-header h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 15px;
    }
}

/* =========================================================
   TRUSTED BY SECTION
========================================================= */
.trusted-by {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 50px 0 50px;
    background: var(--color-bg);
}

.trusted-by-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--color-bg);
    border-radius: 32px;
    padding: 50px 60px;
}

.trusted-by-text {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    background: var(--color-bg);
    color: var(--color-ink);
    letter-spacing: -0.02em;
}

.logo-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 90px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-300%);
    }
}

@media (max-width: 760px) {
    .trusted-by {
        padding: 30px 25px 40px;
    }

    .trusted-by-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 35px 25px;
        border-radius: 24px;
    }

    .trusted-by-text {
        font-size: 24px;
    }

    .logo-carousel {
        width: 100%;
    }

    .logo-track {
        gap: 40px;
        animation-duration: 15s;
    }

    .hub {
        display: none;
    }

    .logo-item {
        width: 120px;
        height: 55px;
    }
}


/* =========================================================
   FEATURED WORKS SECTION
========================================================= */
.featured-works {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 50px 80px 50px;
}

.featured-works-inner {
    display: flex;
    flex-direction: column;
}

.tag-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #5b3df0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 18px 9px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 140px;
}

.featured-works-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin: 0 0 50px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.work-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.work-card {
    background: var(--color-white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--color-purple);
}

.work-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.work-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-image-container:hover img {
    transform: scale(1.1);
}

.curtain-left,
.curtain-right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: transform 0.8s ease;
    pointer-events: none;
}

/* Left diagonal half */
.curtain-left {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: translate(0, 0);
}

/* Right diagonal half */
.curtain-right {
    left: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transform: translate(0, 0);
}

.work-image-container:hover .curtain-left {
    transform: translate(-100%, -100%);
}

.work-image-container:hover .curtain-right {
    transform: translate(100%, 100%);
}

.work-showcase-frame {
    width: 100%;
    height: 100%;
    position: relative;
}

.work-showcase-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.work-content {
    padding: 32px 36px;
}

.work-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.work-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    animation: dotCycle 4s infinite;
}

.work-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.work-dots .dot:nth-child(2) {
    animation-delay: 1s;
}

.work-dots .dot:nth-child(3) {
    animation-delay: 2s;
}

.work-dots .dot:nth-child(4) {
    animation-delay: 3s;
}

@keyframes dotCycle {

    0%,
    20% {
        background: var(--color-border);
    }

    25%,
    45% {
        background: #8b6bff;
    }

    50%,
    100% {
        background: var(--color-border);
    }
}

.work-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-ink);
    margin: 0 0 28px;
    letter-spacing: -0.01em;
}

.work-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.work-details>div h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    color: var(--color-muted);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.work-details>div p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

/* Featured Works responsive */
@media (max-width: 1100px) {
    .featured-works-heading {
        font-size: 46px;
    }

    .work-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 760px) {
    .featured-works {
        padding: 50px 25px 60px 25px;
    }

    .featured-works-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-image-container {
        height: 300px;
    }

    .work-content {
        padding: 24px;
    }

    .work-content h3 {
        font-size: 22px;
    }

    .work-details>div p {
        font-size: 14px;
    }
}

/* =========================================================
   PROCESS SECTION
========================================================= */
.process-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 50px 80px 50px;
}

.process-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.process-header {

    flex-direction: column;
    gap: 32px;
}

.process-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 76px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin: 0;
}

.process-navigation {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-arrow:hover {
    transform: scale(1.05);
    background: var(--color-bg);
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-ink);
}

.process-cards-wrapper {
    overflow: hidden;
    position: relative;
}

.process-cards-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.process-card {
    flex: 0 0 100%;
    background: var(--color-white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--color-purple);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
}

.process-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-ink);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.process-card p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0 0 24px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.duration {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    color: var(--color-red);
    background: var(--color-red-tint);
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-muted);
}

/* Process responsive */
@media (max-width: 1100px) {
    .process-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-heading {
        font-size: 46px;
    }
}

@media (max-width: 760px) {
    .process-section {
        padding: 50px 25px 60px 25px;
    }

    .process-heading {
        font-size: 32px;
    }

    .process-card {
        padding: 24px;
    }

    .process-card h3 {
        font-size: 20px;
    }

    .process-card p {
        font-size: 14px;
    }
}

/* =========================================================
   BENEFITS SECTION
========================================================= */
.benefits {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 50px 80px 50px !important;
}

.benefits-inner {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.benefits-header {
    text-align: left;
    margin-bottom: 60px;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #5b3df0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 18px 9px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefits-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #222;
    margin: 0;
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
}

.benefit-card {
    background: var(--color-white);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--color-purple);
}

.benefit-visual {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
    position: relative;
    padding: 0;
}

.benefit-visual.visual-center {
    align-items: center;
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #111;
}

.benefit-content p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Card 1: Progress Bars */
.progress-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    padding-left: 0;
    margin-top: -150px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.progress-bar {
    flex: 1;
    height: 20px;
    border-radius: 10px;
    min-width: 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #e8e8e8;
    border-radius: 10px;
    width: 0;
    animation: fillProgress 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes fillProgress {
    from {
        width: 0;
    }

    to {
        width: var(--target-width);
    }
}

.progress-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e8e8e8;
    padding: 6px 12px;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
    flex-shrink: 0;
}

.progress-pill svg {
    width: 14px;
    height: 14px;
    stroke: #555;
}

/* Card 2: Check Boxes */
.check-boxes {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
}

.check-line {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    transform: translateY(-50%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.check-box {
    position: relative;
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.check-box svg {
    width: 32px;
    height: 32px;
    stroke: #111;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
}

.reveal.in-view .check-box svg {
    animation: drawCheck 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal.in-view .check-box:nth-child(2) svg {
    animation-delay: 0.4s;
}

.reveal.in-view .check-box:nth-child(3) svg {
    animation-delay: 0.6s;
}

.reveal.in-view .check-box:nth-child(4) svg {
    animation-delay: 0.8s;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Card 3: Shield */
.shield-graphic {
    position: relative;
    width: 140px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
}

.padlock {
    position: relative;
    width: 48px;
    height: 48px;
    background: #fbfbfb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.padlock svg {
    width: 20px;
    height: 20px;
    stroke: #222;
}

/* Card 4: UI Mockup */
.ui-mockup {
    position: relative;
    width: 100%;
    max-width: 300px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mockup-chat {
    background: #ffffff;
    padding: 20px 16px;
    border-radius: 20px 20px 4px 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.chat-line {
    height: 6px;
    background: #111;
    border-radius: 3px;
}

.chat-line.long {
    width: 100%;
}

.chat-line.medium {
    width: 70%;
}

.chat-line.short {
    width: 40%;
}

.mockup-window {
    background: #f4f4f4;
    border-radius: 16px;
    padding: 8px;
    width: 100%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 4px;
}

.mockup-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    color: #111;
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.m-line {
    height: 4px;
    background: #d4d4d4;
    border-radius: 2px;
    width: 80%;
}

.m-line.short {
    width: 40%;
}

.mockup-body {
    height: 64px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.mockup-check {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.mockup-check svg {
    width: 20px;
    height: 20px;
    stroke: #111;
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .benefits {
        padding: 40px 25px 60px 25px !important;
    }

    .benefits-heading {
        font-size: 32px;
    }

    .benefit-card {
        padding: 28px;
    }
}

/* =========================================================
   FEATURES SECTION (NETWORK DIAGRAM)
========================================================= */
.features-section {
    padding: 50px 40px;
    background: var(--color-bg);
    overflow: hidden;
}

.features-header {
    text-align: left;
    margin-bottom: 80px;
    padding-left: 70px;
}

.features-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-ink);
    margin: 0;
    letter-spacing: -0.02em;
}

.network-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1000 / 700;
    margin: 0 auto;
}

.network-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.track {
    stroke: #e4e4e7;
    stroke-width: 2;
    fill: none;
}

.signal {
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 60 1000;
    animation: signalAnim 4s infinite linear;
}

.signal.s1 {
    animation-delay: 0s;
}

.signal.s2 {
    animation-delay: 0s;
}

.signal.s3 {
    animation-delay: 0s;
}

.signal.s4 {
    animation-delay: 0s;
}

.signal.s5 {
    animation-delay: 0s;
}

.signal.s6 {
    animation-delay: 0s;
}

@keyframes signalAnim {
    0% {
        stroke-dashoffset: 40;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    80% {
        stroke-dashoffset: -350;
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        stroke-dashoffset: -400;
        opacity: 0;
    }
}

.feat-card {
    position: absolute;
    width: 32%;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(0, 0, 0, 0.03);
    z-index: 2;
    transition: transform 0.3s;
}

.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.feat-card.tl {
    top: 0;
    left: 0;
}

.feat-card.ml {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.feat-card.bl {
    bottom: 0;
    left: 0;
}

.feat-card.tr {
    top: 0;
    right: 0;
}

.feat-card.mr {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.feat-card.br {
    bottom: 0;
    right: 0;
}

.feat-card:hover.ml,
.feat-card:hover.mr {
    transform: translateY(-50%) scale(1.02);
}

.feat-icon {
    width: 44px;
    height: 44px;
    background: #1c1c1c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feat-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.feat-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111;
}

.feat-card p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ff5a3c, #ef3d24);
    border-radius: 32px;
    width: 16%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(239, 61, 36, 0.35);
    z-index: 3;
    gap: 8px;
}

.hub-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-text {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 20px);
}

/* Responsive Fallback */
@media (max-width: 800px) {
    .network-wrapper {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .network-svg {
        display: none;
    }

    .hub {
        display: none;
    }

    .feat-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 400px;
    }
}

/* =========================================================
   TOOLS SECTION
========================================================= */
.tools-section {
    padding: 0 40px;
    background: var(--color-bg);
    overflow: hidden;
}

.tools-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Center content ---- */
.tools-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 520px;
}

.tools-heading {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--color-ink);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 20px 0 24px;
}

.tools-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0 0 36px;
}

.tools-cta {
    background: var(--color-black);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tools-cta:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* ---- Floating Tool Cards ---- */
.tool-card {
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10), 0 8px 16px rgba(0, 0, 0, 0.05);
    z-index: 3;
    animation: toolFloat 5s ease-in-out infinite;
}

.tool-card svg {
    width: 60px;
    height: 60px;
}

/* Positions and rotations */
.tool-card.tc-1 {
    top: 5%;
    left: 4%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.tool-card.tc-2 {
    top: 8%;
    right: 7%;
    transform: rotate(12deg);
    animation-delay: -1.2s;
}

.tool-card.tc-3 {
    top: 40%;
    left: 1%;
    transform: rotate(-22deg);
    animation-delay: -2.5s;
}

.tool-card.tc-4 {
    top: 35%;
    right: 3%;
    transform: rotate(18deg);
    animation-delay: -0.7s;
}

.tool-card.tc-5 {
    bottom: 8%;
    left: 8%;
    transform: rotate(-10deg);
    animation-delay: -3.5s;
}

.tool-card.tc-6 {
    bottom: 10%;
    right: 6%;
    transform: rotate(20deg);
    animation-delay: -1.8s;
}

@keyframes toolFloat {
    0% {
        translate: 0 0;
    }

    30% {
        translate: 0 -14px;
    }

    60% {
        translate: 0 -6px;
    }

    80% {
        translate: 0 -18px;
    }

    100% {
        translate: 0 0;
    }
}

@media (max-width: 900px) {
    .tool-card {
        display: none;
    }

    .tools-inner {
        min-height: auto;
    }

    .features-header {
        text-align: left;
        margin-bottom: 80px;
        padding-left: 0;
    }
}

/* =========================================================
   TEAM SECTION
========================================================= */
.team-section {
    position: relative;
    background: #000;
    padding: 120px 40px 140px;
    overflow: hidden;
}

/* Tubelight bar — the light source at top center */
.team-tubelight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 4px 4px;
    box-shadow:
        0 0 30px 15px rgba(255, 255, 255, 0.9),
        0 0 80px 40px rgba(255, 255, 255, 0.5),
        0 0 150px 80px rgba(255, 255, 255, 0.3);
    z-index: 3;
}

/* Spotlight cone — sharp trapezoid of light from the tubelight */
/* .team-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 500px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,.30),
        rgba(255,255,255,.12),
        transparent
    );

    clip-path: polygon(
        20% 0%,
        80% 0%,
        140% 100%, 
        -40% 100% 
    );
} */

.team-inner {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    z-index: 1;
}

.team-header {
    text-align: center;
    margin-bottom: 70px;
}

.team-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(120, 60, 255, 0.18);
    color: #c4b5fd;
    border: 1px solid rgba(120, 60, 255, 0.3);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.team-heading {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0;
}

/* Grid layout — featured left, 2x2 right */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: stretch;
}

/* Featured card */
.team-featured {
    background: #141414;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.6);
}

.featured-photo {
    flex: 1;
    overflow: hidden;
    min-height: 380px;
    max-height: 420px;
}

.featured-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.featured-info {
    padding: 24px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.featured-name-block h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    min-width: 100px;
}

.featured-name-block p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Social containers */
.featured-socials,
.small-socials {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Social buttons — team section only */
.team-section .social-btn {
    width: 38px;
    height: 38px;
    background: #282828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    min-width: unset;
    padding: 0;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.team-section .social-btn:hover {
    background: #444;
    transform: translateY(-2px);
    border-color: transparent;
}

.team-section .social-btn svg {
    width: 17px;
    height: 17px;
    color: #fff;
    flex-shrink: 0;
}

.team-section .social-btn.sm {
    width: 34px;
    height: 34px;
}

.team-section .social-btn.sm svg {
    width: 15px;
    height: 15px;
}

/* Right 2x2 grid */
.team-grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Small team cards */
.team-small {
    background: #141414;
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-small:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
}

.small-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.small-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.small-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.small-socials {
    display: flex;
    gap: 6px;
}

.team-small h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
}

.team-small p {
    font-family: var(--font-body);
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 860px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-grid-right {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .team-grid-right {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   STATISTICS SECTION (within team section)
========================================================= */
.statistics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 100px;
    padding-top: 60px;
    padding-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.statistics-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 60px;
}

.statistic-button {
    background: rgba(120, 60, 255, 0.18);
    color: #c4b5fd;
    border: 1px solid rgba(120, 60, 255, 0.3);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s, border-color 0.2s;
}

.statistic-button:hover {
    background: rgba(120, 60, 255, 0.25);
    border-color: rgba(120, 60, 255, 0.4);
}

.statistics-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
}

.statistics-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 50px;
}

.statistics-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #999;
    margin: 0;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: visible;
    display: flex;
    align-items: center;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
    border-radius: 2px;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    50% {
        width: 100%;
    }

    51% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.progress-navigation {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.progress-navigation .arrow {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}

.progress-navigation .arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.growth-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.1em;
    margin: 0 0 8px;
}

.growth-number {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
    margin-top: 60px;
}

.growth-number .count-up {
    color: #ffffff;
}

.growth-number .k-suffix {
    color: #a78bfa;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .statistics-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 60px;
        padding-top: 40px;
    }

    .statistics-heading {
        font-size: 36px;
    }

    .growth-number {
        font-size: 48px;
    }

    .progress-container {
        width: 70%;
        margin-right: 70px;
    }

    .progress-navigation {
        right: -70px;
        padding-right: 5px;
    }

    .awards-content {
        margin-top: 0;
    }
}

/* =========================================================
   TESTIMONIALS SECTION (within team section)
========================================================= */
.testimonials-content {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-tag {
    background: rgba(120, 60, 255, 0.18);
    color: #c4b5fd;
    border: 1px solid rgba(120, 60, 255, 0.3);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.testimonials-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 0;
    line-height: 1.2;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-item.active {
    display: flex;
    gap: 60px;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    flex: 1;
    padding-right: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.star,
.star-half {
    font-size: 24px;
    color: #fbbf24;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px;
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.author-title {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-image {
    flex: 0 0 400px;
    height: 500px;
    overflow: hidden;
    border-radius: 24px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-counter {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .testimonials-heading {
        font-size: 32px;
    }

    .testimonial-item.active {
        flex-direction: column;
        gap: 30px;
    }

    .testimonial-content {
        padding-right: 0;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-image {
        flex: none;
        width: 100%;
        height: 350px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-title {
        font-size: 14px;
    }

    .awards-content {
        margin-top: 0;
    }

}

/* =========================================================
   AWARDS SECTION (within team section)
========================================================= */
.awards-content {
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.awards-header {
    margin-bottom: 40px;
    text-align: center;
}

.awards-tag {
    background: rgba(120, 60, 255, 0.18);
    color: #c4b5fd;
    border: 1px solid rgba(120, 60, 255, 0.3);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.awards-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: background 0.2s, border-color 0.2s;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.award-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.award-logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.award-details {
    flex: 1;
    min-width: 0;
}

.award-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.award-category {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.award-year {
    flex-shrink: 0;
}

.award-year p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .awards-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .awards-header {
        margin-bottom: 24px;
        min-width: 300px;
    }

    .awards-tag {
        font-size: 12px;
        padding: 6px 14px;
    }

    .awards-list {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 10px;
    }

    .award-item {
        padding: 16px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .award-details {
        flex: 1;
        min-width: 0;
        width: calc(100% - 70px);
    }

    .award-name {
        font-size: 15px;
        line-height: 1.3;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        width: 100%;
    }

    .award-category {
        font-size: 12px;
        line-height: 1.4;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .award-name {
        font-size: 14px;
    }

    .award-category {
        font-size: 11px;
    }
}

/* =========================================================
   PRICING SECTION
========================================================= */
.pricing-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px 100px 50px;
}

.pricing-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.text-red {
    color: var(--color-red);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 20px;
}

.text-center {
    text-align: center;
}

.pricing-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
    color: var(--color-ink);
    text-align: left;
}

.pricing-heading .toggle-switch {
    width: 80px;
    height: 44px;
    margin: 0 8px;
    vertical-align: middle;
}

.pricing-heading .toggle-slider {
    width: 36px;
    height: 36px;
    top: 4px;
    left: 4px;
}

.pricing-heading .toggle-switch.active .toggle-slider {
    transform: translateX(36px);
}

.pricing-heading .billing-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 52px;
    color: var(--color-red);
    margin: 0;
    vertical-align: middle;
}

.pricing-heading .billing-label:not(.active) {
    color: var(--color-muted);
}

.toggle-switch {
    position: relative;
    background: var(--color-border);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.toggle-switch:hover {
    background: #d4d4d2;
}

.toggle-switch.active {
    background: var(--color-red);
}

.toggle-slider {
    position: absolute;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.billing-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-muted);
    transition: color 0.2s ease;
}

.billing-label.active {
    color: var(--color-red);
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1000px;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: var(--color-purple);
}

.pricing-card-dark {
    background: var(--gradient-dark);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.pricing-card-dark h3,
.pricing-card-dark .plan-subtitle,
.pricing-card-dark .price-amount,
.pricing-card-dark .price-period,
.pricing-card-dark .whats-included-title,
.pricing-card-dark .whats-included-desc,
.pricing-card-dark .pricing-features li span {
    color: var(--color-white);
}

.pricing-card-dark .pricing-features li svg {
    color: var(--color-white);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-card-dark .pricing-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--color-ink);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.plan-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-muted);
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

.price-amount {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 48px;
    color: var(--color-ink);
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-muted);
    font-weight: 500;
}

.pricing-btn {
    width: 100%;
    background: var(--color-white);
    color: var(--color-ink);
    border: 2px solid var(--color-border);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.pricing-btn:hover {
    background: var(--color-bg);
    border-color: var(--color-ink);
    transform: translateY(-2px);
}

.pricing-btn-primary {
    background: var(--color-white);
    color: var(--color-ink);
    border-color: var(--color-white);
}

.pricing-card-dark .pricing-btn-primary {
    background: var(--color-white);
    color: var(--color-ink);
    border-color: var(--color-white);
}

.pricing-btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.whats-included {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-card-dark .whats-included {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.whats-included-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-ink);
    margin: 0 0 8px;
}

.whats-included-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-muted);
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.4;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-red);
    stroke-width: 2.5;
}

/* Pricing responsive */
@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pricing-heading {
        font-size: 42px;
    }
}

@media (max-width: 760px) {
    .pricing-section {
        padding: 50px 25px 70px 25px;
    }

    .pricing-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .billing-toggle {
        gap: 12px;
    }

    .billing-label {
        font-size: 14px;
    }

    .toggle-switch {
        width: 48px;
        height: 26px;
    }

    .toggle-slider {
        width: 20px;
        height: 20px;
    }

    .toggle-switch.active .toggle-slider {
        transform: translateX(22px);
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card-header h3 {
        font-size: 22px;
    }

    .price-amount {
        font-size: 40px;
    }

    .price-period {
        font-size: 14px;
    }

    .pricing-features li {
        font-size: 14px;
    }
}

/* =========================================================
   FAQ SECTION
========================================================= */
.faq-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px 100px 50px;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 28px 0 0;
    color: var(--color-ink);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: padding 0.3s ease;
}

.faq-question p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-ink);
    margin: 0;
    letter-spacing: -0.01em;
}

.faq-toggle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-red);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-red-tint);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--color-red);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
}

/* FAQ responsive */
@media (max-width: 760px) {
    .faq-section {
        padding: 50px 25px 70px 25px;
    }

    .faq-heading {
        font-size: 32px;
    }

    .faq-question p {
        font-size: 18px;
    }

    .faq-toggle {
        font-size: 24px;
        width: 32px;
        height: 32px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px 100px 50px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background: var(--color-frame-bg);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

/* Contact page override - remove background to match page */
.contact-page .contact-section {
    background: transparent;
    border-radius: 0;
}

.contact-page .contact-section::before {
    display: none;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('https://images.unsplash.com/photo-1557683316-973673baf926?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.contact-left {
    flex: 1;
    min-width: 0;
}

.contact-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 28px 0 40px;
    color: var(--color-ink);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--color-red-tint);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-red);
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-muted);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-ink);
    margin: 0;
}

.contact-right {
    flex: 1;
    min-width: 0;
}

.contact-form-card {
    background: var(--color-white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.form-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 26px;
    color: var(--color-ink);
    margin: 0 0 32px;
    letter-spacing: -0.01em;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-ink);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(239, 61, 36, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-label:hover {
    border-color: var(--color-red);
    background: var(--color-red-tint);
}

.file-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-red);
}

.file-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-ink);
}

.file-name {
    display: block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-muted);
}

.submit-btn {
    width: 100%;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.submit-btn:hover {
    background: var(--color-black-hover);
    transform: translateY(-2px);
}

/* Contact responsive */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-heading {
        font-size: 42px;
    }
}

@media (max-width: 760px) {
    .contact-section {
        padding: 50px 25px 70px 25px;
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-form-card {
        padding: 28px 20px;
        width: 100%;
    }

    .form-heading {
        font-size: 22px;
    }

    .contact-right {
        flex: 1;
        min-width: 100%;
    }
}

/* =========================================================
   NEW CONTACT SECTION DESIGN (Contact Page Only)
========================================================= */
.contact-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid var(--color-border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--color-purple);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-purple-tint);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
    background: var(--color-purple);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-purple);
    transition: stroke 0.3s ease;
}

.contact-card:hover .contact-card-icon svg {
    stroke: var(--color-white);
}

.contact-card-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-muted);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card-value {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-ink);
    margin: 0;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0 0 40px;
    max-width: 480px;
}

/* Contact Page Social Buttons */
.contact-social-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 160px;
}

.contact-social-text {
    color: var(--color-ink);
}

.contact-social-text.facebook-text {
    color: #ff6b35;
}

.contact-social-icon-circle {
    width: 36px;
    height: 36px;
    background: #4a4a4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-social-icon-circle svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.contact-social-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* New Contact Section Responsive */
@media (max-width: 900px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 760px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-form-card {
        padding: 28px 24px;
    }

    .contact-social-buttons {
        flex-direction: column;
    }

    .contact-social-btn {
        width: 100%;
        justify-content: space-between;
    }
}

/* =========================================================
   MAP SECTION
========================================================= */
.map-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-inner {
    width: 100%;
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
    background: var(--color-bg);
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden;
}

.footer-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 200px;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 16px;
}

.footer-logo-icon {
    width: 64px;
    height: 64px;
    background: var(--color-black);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--color-ink) 50%, var(--color-bg) 50%);
    border: 2px solid var(--color-ink);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-ink);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.footer-subheading {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-muted);
    margin: 0 0 32px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer .social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 150px;
    justify-content: flex-start;
    width: auto;
    height: auto;
    box-shadow: none;
}

.footer .social-btn:hover {
    background: var(--color-bg);
    border-color: var(--color-ink);
    transform: translateY(-2px);
}

.footer .social-btn svg {
    width: 18px;
    height: 18px;
    color: var(--color-black);
    flex-shrink: 0;
}

.footer .social-btn span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-ink);
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.footer-nav {
    display: flex;
    gap: 32px;
    margin-right: 40px;
}

.footer-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--color-ink);
}

.footer-copyright p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
}

.footer-back {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 50px;
    margin-right: 70px;
}

.footer-back button {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-muted);
    cursor: pointer;
    display: felx;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    padding: 0;
}

.footer-back button:hover {
    color: var(--color-ink);
}

.footer-back button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Footer responsive */
@media (max-width: 760px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-bg-text {
        font-size: 120px;
    }

    .footer-heading {
        font-size: 20px;
    }

    .footer-subheading {
        font-size: 14px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}

/* =========================================================
   DELAY SECTION — Why Delay Hurts
========================================================= */
.delay-section {
    padding: 100px 50px;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #fafafa 0%, #fafafa 40%, rgba(124, 58, 237, 0.15) 100%);
}

.delay-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.delay-header {
    margin-bottom: 60px;
}

.delay-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--color-ink);
}

.delay-sub {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
    max-width: 600px;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 280px;
}

.progress-bar {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.progress-category {
    flex-shrink: 0;
    min-width: 180px;
}

.progress-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-ink);
}

.progress-percent {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--color-ink);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e5e5;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #d4d4d4;
    border-radius: 3px;
    transition: width 1s ease-out;
}

.progress-category {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Delay section responsive */
@media (max-width: 760px) {
    .delay-section {
        padding: 60px 25px;
        background: linear-gradient(to right, #fafafa 0%, #fafafa 70%, rgba(124, 58, 237, 0.05) 100%);
    }

    .delay-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .delay-sub {
        font-size: 15px;
    }

    .progress-bars {
        gap: 24px;
    }

    .progress-label {
        font-size: 14px;
    }

    .progress-percent {
        font-size: 20px;
    }
}

/* =========================================================
   BLOG PAGES — extends style.css design tokens.
   Load AFTER style.css.
========================================================= */

/* ---------- Compact hero (shared by blog.html + blog-single.html) ---------- */
.blog-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 24px 90px;
}

.blog-hero-inner h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--color-ink);
    background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb {
    margin-top: 26px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-muted);
}

.breadcrumb a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--color-ink);
}

.breadcrumb .sep {
    margin: 0 10px;
    color: var(--color-border);
}

.breadcrumb .current {
    color: var(--color-ink);
    font-weight: 600;
}

@media (max-width: 760px) {
    .blog-hero-inner {
        padding: 40px 20px 60px;
    }

    .blog-hero-inner h1 {
        font-size: 36px;
    }

    .breadcrumb {
        font-size: 14px;
        margin-top: 18px;
    }
}

/* =========================================================
   BLOG LISTING SECTION
========================================================= */
.blog-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px 110px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 70px;
    align-items: start;
}

/* ---------- Post list ---------- */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.blog-list-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.blog-thumb {
    flex: 0 0 210px;
    width: 210px;
    height: 210px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-list-item:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-list-content {
    padding-top: 8px;
}

.blog-category {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-muted);
    margin: 0 0 10px;
}

.blog-list-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    margin: 0 0 26px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.read-more-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
}

.read-more-btn:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* ---------- Sidebar ---------- */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.search-box input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-ink);
    padding: 12px 0;
}

.search-box input::placeholder {
    color: var(--color-muted);
}

.search-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
    transition: transform 0.2s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

.search-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-white);
}

.sidebar-block h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    margin: 0 0 20px;
}

.recent-post-list,
.category-list {
    display: flex;
    flex-direction: column;
}

.recent-post-item,
.category-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.recent-post-item a {
    color: var(--color-ink);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.recent-post-item a:hover {
    color: var(--color-purple);
}

.recent-post-item .post-date {
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-item a {
    color: var(--color-ink);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.category-item a:hover {
    color: var(--color-purple);
}

.category-item .count {
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 14px;
    flex-shrink: 0;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-chip {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text);
    padding: 10px 18px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--color-white);
}

.tag-chip:hover {
    border-color: var(--color-purple);
    color: var(--color-purple);
    background: var(--color-purple-tint);
}

/* ---------- Blog listing responsive ---------- */
@media (max-width: 1100px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .blog-sidebar {
        max-width: 480px;
    }
}

@media (max-width: 760px) {
    .blog-section {
        padding: 50px 25px 70px;
    }

    .blog-list {
        gap: 36px;
    }

    .blog-list-item {
        flex-direction: column;
        gap: 20px;
    }

    .blog-thumb {
        width: 100%;
        height: 220px;
        flex-basis: auto;
    }

    .blog-list-content h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .sidebar-block h3 {
        font-size: 22px;
    }

    .blog-sidebar {
        max-width: none;
        gap: 36px;
    }
}

/* =========================================================
   SINGLE POST PAGE
========================================================= */
.post-article {
    max-width: 760px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-category-badge {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    color: var(--color-purple);
    background: var(--color-purple-tint);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-meta .post-date {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-muted);
}

.post-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin: 0 0 36px;
}

.post-featured-image {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 44px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-body p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 0 26px;
}

.post-body p:first-of-type {
    font-size: 19px;
    color: var(--color-ink);
    font-weight: 500;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-ink);
    text-decoration: none;
    margin-top: 12px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.back-to-blog svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.back-to-blog:hover {
    color: var(--color-purple);
}

.back-to-blog:hover svg {
    transform: translateX(-4px);
}

.post-not-found {
    text-align: center;
    padding: 60px 20px;
}

.post-not-found h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 32px;
    color: var(--color-ink);
    margin: 0 0 16px;
}

.post-not-found p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-muted);
    margin: 0 0 28px;
}

@media (max-width: 760px) {
    .post-title {
        font-size: 30px;
        margin-bottom: 26px;
    }

    .post-featured-image {
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .post-body p {
        font-size: 16px;
    }

    .post-body p:first-of-type {
        font-size: 17px;
    }
}