:root {
    --text-primary: #f4f4f5;
    --text-secondary: #b5b5c0;
    --text-tertiary: #9e9ea7;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-border: rgba(255, 255, 255, 0.06);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --accent: #e4e4e7;
    --bg: #09090b;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) #09090b;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--sb-track, #09090b);
    transition: background 0.15s ease;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

::-webkit-scrollbar-corner {
    background: var(--sb-track, #09090b);
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

#bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

#bg-video.visible {
    opacity: 1;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('/images/1.jpg') center/cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9, 9, 11, 0.65) 0%, rgba(9, 9, 11, 0.98) 100%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.content-mid {
    flex: 0 0 auto;
    max-width: 400px;
    animation: fadeUp 0.9s var(--ease) 0.22s both;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    animation: fadeDown 0.8s var(--ease) both;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo {
    text-decoration: none;
}

.logo h1 {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--text-secondary);
    stroke-width: 1.5;
    transition: stroke 0.3s var(--ease);
}

.logo:hover svg {
    stroke: var(--text-primary);
}

.glass-pill {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 999px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    overflow: hidden;
}

.nav-links {
    display: flex;
    gap: 0;
}

.nav-link, .btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 0;
    transition: color 0.4s var(--ease), background 0.4s var(--ease);
    letter-spacing: 0.01em;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:active {
    background: rgba(255, 255, 255, 0.03);
    transition-duration: 0.05s;
}

.nav-link svg, .btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
    transition: opacity 0.4s var(--ease);
}

.nav-link:hover svg {
    opacity: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 3rem;
    gap: 0;
}

.content-left {
    flex: 0 0 auto;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.tagline svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.main-heading {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.heading-dim {
    color: var(--text-tertiary);
}

.content-right {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    animation: fadeUp 0.9s var(--ease) 0.3s both;
}

.description {
    color: var(--text-secondary);
    text-align: right;
    font-size: 0.875rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
}

.cta-buttons {
    display: flex;
    gap: 0;
}

.btn {
    padding: 0.65rem 1.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.btn-outline {
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--surface-hover);
    color: var(--text-primary);
}

.btn-solid {
    background: var(--text-primary);
    color: var(--bg);
    border: 1px solid transparent;
    font-weight: 500;
}

.btn-solid svg {
    stroke: var(--bg);
}

.btn-solid:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(244, 244, 245, 0.08);
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealUp {
    from { transform: translateY(105%); }
    to   { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reveal-wrap {
    display: block;
    overflow: hidden;
    line-height: 1.05;
}

.reveal-inner {
    display: block;
    animation: revealUp 0.9s var(--ease) both;
}

.reveal-fade {
    animation: fadeIn 0.7s var(--ease) both;
}

@media (max-width: 1024px) {
    .container {
        padding: 1.75rem 1.5rem;
    }
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .content-mid {
        flex: unset;
        max-width: 560px;
    }
    .content-right {
        align-items: flex-start;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1.25rem;
    }
    .navbar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    .nav-left,
    .nav-right {
        width: 100%;
    }
    .glass-pill {
        border-radius: 14px;
    }
    .nav-left .glass-pill,
    .nav-right .glass-pill {
        width: 100%;
    }
    .nav-link {
        flex: 1;
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.6rem 0.75rem;
    }
    .main-heading {
        font-size: clamp(2.75rem, 11vw, 3.75rem);
    }
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 2.5rem;
        gap: 2rem;
    }
    .content-left {
        width: 100%;
    }
    .content-mid {
        max-width: 100%;
    }
    .content-right {
        width: 100%;
        align-items: flex-start;
    }
    .description {
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.75;
    }
    .cta-group {
        align-items: stretch;
        width: 100%;
    }
    .cta-buttons.glass-pill {
        flex-direction: row;
        width: 100%;
        border-radius: 14px;
    }
    .cta-buttons .btn {
        flex: 1;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    .tagline {
        font-size: 0.7rem;
        margin-bottom: 1.25rem;
    }
    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    .social-link svg {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.25rem 1rem;
    }
    .nav-links .nav-link svg {
        display: none;
    }
    .nav-link {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    .cta-buttons .btn {
        font-size: 0.75rem;
        padding: 0.55rem 0.5rem;
    }
    .cta-buttons .btn svg {
        display: none;
    }
    .tagline {
        margin-bottom: 1.25rem;
    }
    .main-heading {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }
    .description {
        font-size: 0.85rem;
    }
}

.about-section {
    position: relative;
    z-index: 1;
    background: #000;
    min-height: 100vh;
    padding: 5rem;
    display: flex;
    align-items: flex-start;
}

.about-inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-left {
    position: sticky;
    top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-heading {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.about-left-extras {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.about-left-extras.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-profile-pic {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-location {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    font-weight: 400;
}

.about-location svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.about-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.about-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.social-link:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.social-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.3s var(--ease);
}

.social-link:hover svg {
    stroke: #fff;
}

.about-left-note {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    font-weight: 300;
    max-width: 320px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding-top: 1rem;
}

.about-intro {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.85;
    font-weight: 300;
    max-width: 600px;
}

.about-intro strong {
    color: #fff;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.about-details {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-card {
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.service-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    font-weight: 300;
}

.about-quote {
    padding: 2rem 0 2rem 1.75rem;
    border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.about-quote p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.75;
    font-weight: 300;
}

.about-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-style: normal;
    font-weight: 400;
}

.about-tags-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.about-tag {
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.about-tag:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Education History */
.edu-section {
    margin-top: 0.5rem;
}

.edu-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.25rem;
}

.edu-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.edu-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.edu-logo-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.edu-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.edu-logo-placeholder {
    width: 26px;
    height: 26px;
    opacity: 0.2;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.edu-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(100%) brightness(0.85);
    transition: filter 0.3s var(--ease);
    padding: 8px;
}

.edu-card:hover .edu-logo-img {
    filter: grayscale(100%) brightness(1);
}

.edu-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.edu-period {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.edu-name {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
}

.edu-subjects {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
}

.edu-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    font-weight: 300;
    margin: 0.25rem 0 0;
}

@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-left {
        position: static;
        gap: 1.5rem;
    }
    .about-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 1.25rem;
        min-height: auto;
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-left {
        position: static;
        gap: 1.25rem;
    }
    .about-left-extras {
        gap: 1.5rem;
    }
    .about-profile-pic {
        width: 88px;
        height: 88px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .about-content {
        gap: 2.5rem;
        padding-top: 0;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1.75rem 0;
    }
    .about-services {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .service-card {
        padding: 1.5rem;
        border-radius: 14px;
    }
    .about-intro {
        font-size: 1rem;
        line-height: 1.8;
    }
    .about-details {
        font-size: 0.875rem;
        line-height: 1.75;
    }
    .about-quote {
        padding: 1.25rem 0 1.25rem 1.25rem;
    }
    .about-quote p {
        font-size: 1rem;
    }
    .about-tags {
        gap: 0.4rem;
    }
    .about-tag {
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
    }
    .about-heading {
        font-size: clamp(3rem, 12vw, 4rem);
    }
    .about-location,
    .about-status {
        font-size: 0.8rem;
    }
    .about-left-note {
        font-size: 0.8rem;
        max-width: 100%;
    }
    .stat-number {
        font-size: 1.75rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .edu-card {
        gap: 1rem;
        padding: 1.25rem;
    }
    .edu-logo-wrap {
        width: 52px;
        height: 52px;
        border-radius: 8px;
    }
    .edu-logo-img {
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 2rem 1rem;
    }
    .about-heading {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    .about-inner {
        gap: 1.25rem;
    }
    .about-content {
        gap: 1.5rem;
    }
    .about-stats {
        gap: 0.5rem;
        padding: 1.25rem 0;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
    .about-intro {
        font-size: 0.9rem;
    }
    .about-profile-pic {
        width: 64px;
        height: 64px;
    }
    .service-card {
        padding: 1.25rem;
    }
    .service-icon {
        margin-bottom: 0.5rem;
    }
    .about-left-note {
        display: none;
    }
}

.zsm-section {
    position: relative;
    z-index: 1;
    background: #050506;
    min-height: 100vh;
    padding: 5rem;
    display: flex;
    align-items: flex-start;
}

.zsm-logo{
    width: 80px;
    height: 80px;
    margin-top: 150px;
}

.zsm-inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.zsm-left {
    position: sticky;
    top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.zsm-heading {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.zsm-left-extras {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.zsm-left-extras.visible {
    opacity: 1;
    transform: translateY(0);
}

.zsm-left-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    font-weight: 400;
}

.zsm-left-tagline svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.zsm-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: var(--text-primary);
    color: var(--bg);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.01em;
    width: fit-content;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.zsm-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.08);
}

.zsm-cta svg {
    width: 14px;
    height: 14px;
    stroke: var(--bg);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s var(--ease);
}

.zsm-cta:hover svg {
    transform: translateX(3px);
}

.zsm-left-note {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    font-weight: 300;
    max-width: 320px;
}

.zsm-content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding-top: 1rem;
}

.zsm-intro {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.85;
    font-weight: 300;
    max-width: 600px;
}

.zsm-intro strong {
    color: #fff;
    font-weight: 500;
}

.zsm-service-rows {
    display: flex;
    flex-direction: column;
}

.zsm-service-row {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s var(--ease);
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.zsm-service-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.zsm-row-num {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    width: 24px;
}

.zsm-row-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.zsm-row-title {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    transition: color 0.3s var(--ease);
}

.zsm-row-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    font-weight: 300;
}

.zsm-row-arrow {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.2);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    transition: stroke 0.3s var(--ease), transform 0.3s var(--ease);
}

.zsm-service-row:hover .zsm-row-arrow {
    stroke: rgba(255, 255, 255, 0.6);
    transform: translateX(3px);
}

.zsm-service-row:hover .zsm-row-title {
    color: #fff;
}

.zsm-checklist-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.zsm-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
}

.zsm-check-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.zsm-check-item svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,0.3);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.zsm-stats-strip {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.zsm-strip-stat {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.zsm-strip-stat + .zsm-strip-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.zsm-strip-num {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.zsm-strip-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 300;
}

/* ---- Personal Edge callout ---- */
.personal-edge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.edge-icon {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.edge-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ---- Comparison Section ---- */
.comparison-section {
    position: relative;
    z-index: 1;
    background: #050506;
    min-height: 100vh;
    padding: 5rem;
    display: flex;
    align-items: flex-start;
}

.comparison-inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.comparison-left {
    position: sticky;
    top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.comparison-heading {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.comparison-left-extras {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.comparison-left-extras.visible {
    opacity: 1;
    transform: translateY(0);
}

.comparison-left-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

.comparison-left-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    font-weight: 400;
}

.comparison-left-tagline svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-card {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.comparison-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.comparison-card-num {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.comparison-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.comparison-card-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.comparison-verdict {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #ef4444;
}

.comparison-verdict svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    flex-shrink: 0;
}

.comparison-verdict.verdict-good {
    color: #22c55e;
}

/* ---- Lead Magnet Section ---- */
.leadmagnet-section {
    position: relative;
    z-index: 1;
    background: #000;
    min-height: 100vh;
    padding: 5rem;
    display: flex;
    align-items: flex-start;
}

.leadmagnet-inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.leadmagnet-left {
    position: sticky;
    top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.leadmagnet-heading {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.leadmagnet-left-extras {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.leadmagnet-left-extras.visible {
    opacity: 1;
    transform: translateY(0);
}

.leadmagnet-left-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

.leadmagnet-left-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    font-weight: 400;
}

.leadmagnet-left-tagline svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-tertiary);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.leadmagnet-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.leadmagnet-offers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.leadmagnet-offer {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.leadmagnet-offer:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.leadmagnet-offer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.leadmagnet-offer-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--text-secondary);
    stroke-width: 1.5;
}

.leadmagnet-offer-title {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.35rem;
}

.leadmagnet-offer-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    font-weight: 300;
}

.leadmagnet-form {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.leadmagnet-form-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.leadmagnet-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.leadmagnet-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font);
    font-size: 0.875rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.leadmagnet-input::placeholder {
    color: var(--text-tertiary);
}

.leadmagnet-input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.leadmagnet-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.leadmagnet-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    background: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: opacity 0.3s var(--ease), transform 0.15s var(--ease);
}

.leadmagnet-btn:hover {
    opacity: 0.9;
}

.leadmagnet-btn:active {
    transform: scale(0.97);
}

.leadmagnet-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #000;
    stroke-width: 1.5;
}

.leadmagnet-form-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 300;
}

.leadmagnet-form-msg {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    min-height: 1.25rem;
}

.leadmagnet-form-msg.success {
    color: #22c55e;
}

.leadmagnet-form-msg.error {
    color: #ef4444;
}

.faq-section {
    position: relative;
    z-index: 1;
    background: #000;
    min-height: 100vh;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.faq-inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-heading {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.faq-left-extras {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.faq-left-extras.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-left-note {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.65;
    font-weight: 300;
    max-width: 320px;
}

.faq-left-link {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-content {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-tertiary);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease), color 0.2s ease;
}

.faq-item[open] > .faq-summary::after {
    transform: rotate(45deg);
    color: var(--text-primary);
}

.faq-item[open] > .faq-summary {
    color: #fff;
}

.faq-answer {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    font-weight: 300;
    padding-bottom: 1.5rem;
    max-width: 600px;
}

.faq-inline-link {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-footer-image {
    width: calc(100% + 10rem);
    margin-left: -5rem;
    margin-right: -5rem;
    margin-bottom: -5rem;
    margin-top: auto;
    padding-top: 5rem;
    line-height: 0;
}

.faq-footer-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq-left {
        position: static;
        gap: 1.5rem;
    }
    .faq-content {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.25rem;
        min-height: auto;
    }
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .faq-left {
        gap: 1.25rem;
    }
    .faq-heading {
        font-size: clamp(3rem, 12vw, 4rem);
    }
    .faq-left-note {
        font-size: 0.8rem;
        max-width: 100%;
    }
    .faq-summary {
        padding: 1.25rem 0;
        font-size: 0.9375rem;
    }
    .faq-answer {
        font-size: 0.875rem;
        max-width: 100%;
    }
    .faq-footer-image {
        width: calc(100% + 2.5rem);
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        margin-bottom: -3rem;
        padding-top: 3rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2rem 1rem;
    }
    .faq-inner {
        gap: 1.25rem;
    }
    .faq-heading {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    .faq-summary {
        padding: 1rem 0;
        font-size: 0.875rem;
    }
    .faq-answer {
        font-size: 0.8125rem;
        line-height: 1.75;
        padding-bottom: 1.25rem;
    }
    .faq-footer-image {
        width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: -2rem;
        padding-top: 2rem;
    }
}

@media (max-width: 1024px) {
    .zsm-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .zsm-left {
        position: static;
        gap: 1.5rem;
    }
    .zsm-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .zsm-section {
        padding: 3rem 1.25rem;
        min-height: auto;
    }
    .zsm-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .zsm-left {
        position: static;
        gap: 1.25rem;
    }
    .zsm-left-extras {
        gap: 1.5rem;
    }
    .zsm-content {
        gap: 2.5rem;
        padding-top: 0;
    }
    .zsm-intro {
        font-size: 1rem;
        line-height: 1.8;
    }
    .zsm-checklist {
        grid-template-columns: 1fr;
    }
    .zsm-stats-strip {
        flex-direction: column;
        border-radius: 14px;
    }
    .zsm-strip-stat {
        padding: 1.25rem 1.5rem;
    }
    .zsm-strip-stat + .zsm-strip-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .zsm-service-row {
        padding: 1.25rem 0;
        gap: 1rem;
        align-items: flex-start;
    }
    .zsm-row-num {
        padding-top: 0.15rem;
    }
    .zsm-row-arrow {
        margin-top: 0.2rem;
    }
    .zsm-heading {
        font-size: clamp(3rem, 12vw, 4rem);
    }
    .zsm-cta {
        border-radius: 14px;
        padding: 0.8rem 1.75rem;
        font-size: 0.8rem;
    }
    .zsm-left-tagline {
        font-size: 0.8rem;
    }
    .zsm-left-note {
        font-size: 0.8rem;
        max-width: 100%;
    }
    .zsm-logo {
        width: 56px;
        height: 56px;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .zsm-section {
        padding: 2rem 1rem;
    }
    .zsm-heading {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    .zsm-inner {
        gap: 1.25rem;
    }
    .zsm-content {
        gap: 1.5rem;
    }
    .zsm-stats-strip {
        border-radius: 8px;
    }
    .zsm-strip-stat {
        padding: 1rem 1.25rem;
    }
    .zsm-strip-num {
        font-size: 1.5rem;
    }
    .zsm-intro {
        font-size: 0.9rem;
    }
    .zsm-service-row {
        padding: 1rem 0;
    }
    .zsm-row-desc {
        font-size: 0.75rem;
    }
    .zsm-logo {
        width: 48px;
        height: 48px;
        margin-top: 0.5rem;
    }
}

.history-section {
    position: relative;
    z-index: 1;
    background: #1A1A1A;
    min-height: 450vh;
}

.history-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
}

.history-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    position: relative;
}

.history-heading {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #e0e0e0;
}

.history-heading-dim {
    color: #3a3a3a;
    transition: opacity 0.35s var(--ease);
}

.history-heading-dim.swap {
    opacity: 0;
}

.history-scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.5s var(--ease);
}

.history-scroll-hint svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.history-image-wrap {
    flex: 1;
    position: relative;
    will-change: transform, opacity;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.history-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42.5%;
    display: block;
    will-change: transform;
    filter: grayscale(100%);
}

.history-image-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2.5rem 2.5rem;
    background: linear-gradient(to top, rgba(15, 10, 5, 0.95) 0%, transparent 100%);
    will-change: opacity;
}

.history-image-name h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: -0.02em;
}

.history-image-name span {
    font-size: 0.8125rem;
    color: #5a5a5a;
    font-weight: 300;
}

.history-info {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    will-change: transform, opacity;
    pointer-events: none;
}

.history-projects {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    will-change: transform, opacity;
    pointer-events: none;
}

.project-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(40px);
}

.project-card.active {
    opacity: 1;
    transform: translateY(0);
}

.project-num {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.project-desc {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.7;
    font-weight: 300;
    max-width: 480px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.project-tag {
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.7rem;
    color: #888888;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.project-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.project-counter-bar {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    max-width: 120px;
}

.project-counter-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #888888;
    transition: width 0.4s var(--ease);
}

.project-counter-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.history-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.history-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding: 0 0 1.75rem 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #888888;
    border: 2px solid #1A1A1A;
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888888;
    letter-spacing: 0.08em;
    white-space: nowrap;
    padding-top: 0.1rem;
    min-width: 48px;
    flex-shrink: 0;
}

.timeline-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.timeline-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e0e0e0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.timeline-desc {
    font-size: 0.8125rem;
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 300;
}

.history-skills {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.history-skills-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.skills-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.skills-group-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    min-width: 48px;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.skill-tag {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.skill-tag.strong {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #888888;
    background: rgba(255, 255, 255, 0.04);
}

.skill-tag.strong:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #b0b0b0;
    background: rgba(255, 255, 255, 0.08);
}

.skill-tag.decent {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #666666;
    background: transparent;
}

.skill-tag.decent:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #999999;
}

@media (max-width: 1024px) {
    .history-section {
        min-height: auto;
    }
    .history-sticky {
        position: relative;
        height: auto;
        flex-direction: column;
    }
    .history-left {
        padding: 3rem 3rem 2rem;
    }
    .history-scroll-hint {
        display: none;
    }
    .history-image-wrap {
        height: 50vh;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .history-info {
        position: relative;
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto;
        padding: 3rem;
    }
    .history-projects {
        position: relative;
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto;
        padding: 3rem;
    }
    .project-card {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
        padding: 1.5rem 0;
    }
    .project-card + .project-card {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .history-image-wrap {
        transform: none !important;
        opacity: 1 !important;
    }
    .history-image-wrap img {
        transform: none !important;
    }
    .history-image-name {
        opacity: 1 !important;
    }
    .history-content {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .history-left {
        padding: 2.5rem 1.25rem 1.5rem;
    }
    .history-image-wrap {
        height: 45vh;
    }
    .history-info {
        padding: 2rem 1.25rem;
    }
    .history-projects {
        padding: 1rem 1.25rem 2.5rem;
    }
    .project-card {
        padding: 1.5rem 0;
        gap: 1rem;
    }
    .project-desc {
        font-size: 0.85rem;
        line-height: 1.65;
    }
    .skills-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .history-heading {
        font-size: clamp(3rem, 12vw, 4rem);
    }
    .history-content {
        gap: 2rem;
    }
    .history-skills {
        gap: 1rem;
        padding-top: 1.25rem;
    }
    .timeline-item {
        gap: 1rem;
        padding: 0 0 1.25rem 1.75rem;
    }
    .history-image-name {
        padding: 3rem 1.25rem 1.5rem;
    }
    .history-image-name h3 {
        font-size: 1.25rem;
    }
    .history-image-name span {
        font-size: 0.75rem;
    }
    .faq-footer-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .history-left {
        padding: 2rem 1rem 1rem;
    }
    .history-image-wrap {
        height: 35vh;
    }
    .history-info {
        padding: 1.5rem 1rem;
    }
    .history-projects {
        padding: 1rem 1rem 2rem;
    }
    .project-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    .project-desc {
        font-size: 0.8125rem;
    }
    .project-counter {
        margin-top: 0.5rem;
    }
    .timeline-item {
        gap: 1rem;
        padding-bottom: 1rem;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    max-width: 90vw;
    text-align: center;
    transform: scale(0.96) translateY(8px);
    transition: transform 0.3s var(--ease);
}

@media (max-width: 768px) {
    .modal-box {
        border-radius: 14px;
        padding: 2rem 1.75rem;
        margin: 1.25rem;
    }
    .modal-box h2 {
        font-size: 1.15rem;
    }
    .faq-section {
        padding: 3rem 1.25rem;
        min-height: auto;
    }
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq-left {
        position: static;
        gap: 1.25rem;
    }
    .faq-heading {
        font-size: clamp(3rem, 12vw, 4rem);
    }
    .faq-left-note {
        max-width: 100%;
    }
    .faq-summary {
        padding: 1.25rem 0;
        font-size: 0.9375rem;
    }
    .faq-answer {
        font-size: 0.875rem;
        padding-bottom: 1.25rem;
    }
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

.modal-box h2 {
    font-family: var(--font);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.modal-box p {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-weight: 300;
}

.modal-close {
    margin-top: 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    font-weight: 400;
    cursor: pointer;
    background: none;
    border: 1px solid var(--surface-border);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-family: var(--font);
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.modal-close:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.18);
}}

/* ===== DESCRIPTION EDGE TAGLINE ===== */
.description-edge {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
}

/* ===== COMPARISON SECTION ===== */
.compare-section {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.compare-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 640px;
}

.compare-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.compare-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.compare-subhead {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

.compare-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.compare-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.compare-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.compare-card-num {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.1em;
}

.compare-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.compare-card-body {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    flex: 1;
}

.compare-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-bad {
    font-size: 0.8rem;
    color: rgba(255, 100, 100, 0.75);
    font-weight: 400;
}

.compare-good {
    font-size: 0.8rem;
    color: rgba(100, 210, 150, 0.85);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .compare-section {
        padding: 3rem 1.25rem;
    }
    .compare-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .compare-section {
        padding: 2rem 1rem;
    }
    .compare-heading {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

/* ===== LEAD MAGNET SECTION ===== */
.lead-section {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lead-inner {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.lead-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 640px;
}

.lead-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.lead-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.lead-subhead {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
}

.lead-offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lead-offer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    user-select: none;
}

.lead-offer:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.lead-offer.selected {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
}

.lead-offer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    flex-shrink: 0;
}

.lead-offer-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 1.5;
}

.lead-offer.selected .lead-offer-icon {
    background: rgba(255, 255, 255, 0.1);
}

.lead-offer.selected .lead-offer-icon svg {
    stroke: var(--text-primary);
}

.lead-offer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.lead-offer-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 300;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 620px;
}

.lead-form-select-hint {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-weight: 300;
}

.lead-form-row {
    display: flex;
    gap: 0.75rem;
}

.lead-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.lead-input::placeholder {
    color: var(--text-tertiary);
}

.lead-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.lead-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    background: var(--text-primary);
    color: var(--bg);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.2s ease;
}

.lead-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.08);
}

.lead-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.lead-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--bg);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s var(--ease);
}

.lead-btn:not(:disabled):hover svg {
    transform: translateX(3px);
}

.lead-form-note {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 300;
    padding-left: 0.5rem;
}

.lead-form-msg {
    font-size: 0.875rem;
    font-weight: 400;
    min-height: 1.25rem;
    padding-left: 0.5rem;
}

@media (max-width: 1024px) {
    .lead-section {
        padding: 3rem 1.25rem;
    }
    .lead-offers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .lead-form-row {
        flex-direction: column;
    }
    .lead-btn {
        width: 100%;
        justify-content: center;
    }
    .lead-heading {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

@media (max-width: 480px) {
    .lead-section {
        padding: 2rem 1rem;
    }
}

/* ---- Comparison & Lead Magnet responsive ---- */
@media (max-width: 1024px) {
    .comparison-inner,
    .leadmagnet-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .comparison-left,
    .leadmagnet-left {
        position: static;
        gap: 1.5rem;
    }
    .comparison-content,
    .leadmagnet-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .comparison-section,
    .leadmagnet-section {
        padding: 3rem 1.25rem;
        min-height: auto;
    }
    .comparison-inner,
    .leadmagnet-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .comparison-left,
    .leadmagnet-left {
        position: static;
        gap: 1.25rem;
    }
    .comparison-left-extras,
    .leadmagnet-left-extras {
        gap: 1.5rem;
    }
    .comparison-heading,
    .leadmagnet-heading {
        font-size: clamp(3rem, 12vw, 4rem);
    }
    .comparison-left-note,
    .leadmagnet-left-note {
        max-width: 100%;
        font-size: 0.8rem;
    }
    .comparison-card {
        padding: 1.5rem;
        border-radius: 14px;
    }
    .comparison-card-title {
        font-size: 1.25rem;
    }
    .leadmagnet-offer {
        padding: 1.25rem;
    }
    .leadmagnet-form {
        padding: 1.75rem;
    }
    .personal-edge {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .comparison-section,
    .leadmagnet-section {
        padding: 2rem 1rem;
    }
    .comparison-card {
        padding: 1.25rem;
    }
    .leadmagnet-form {
        padding: 1.25rem;
    }
    .personal-edge {
        flex-direction: column;
        gap: 0.5rem;
    }
}
