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

:root {
    --black: #000;
    --white: #fff;
    --orange: #FF6B00;
    --gray: #1a1a1a;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* ============ CANVAS ============ */
#canvas3d {
    position: fixed;
    top: 0; left: 0;
    z-index: 1;
    pointer-events: none;
    display: block;
}

.scroll-overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

/* ============ NAV ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding: 24px 50px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.navbar.nav-hidden {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.nav-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    transition: color 0.3s;
    text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active { color: var(--orange); }

.nav-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}

.logo {
    display: flex;
    align-items: center;
    margin: 0 24px;
    text-decoration: none;
}
.logo-img {
    width: 44px; height: 44px;
    object-fit: contain;
}

/* ============ LANG TOGGLE ============ */
.lang-toggle {
    position: fixed;
    top: 28px;
    right: 40px;
    z-index: 101;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 3px;
    transition: color 0.3s, border-color 0.3s;
}
.lang-toggle:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

/* ============ SECTIONS WRAPPER ============ */
.sections-wrapper {
    position: relative;
    z-index: 5;
    height: 100vh;
    overflow-y: auto;
    scrollbar-width: none;
}
.sections-wrapper::-webkit-scrollbar { display: none; }

.section {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.section-panel {
    align-items: flex-start;
}

.panel-bg {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 0;
}

.section-content {
    position: relative;
    z-index: 1;
    pointer-events: all;
}

/* ============ HERO ============ */
.hero-content {
    text-align: center;
    padding-bottom: 8vh;
    width: 100%;
}
.subtitle-top {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--orange);
    margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(42px, 7vw, 100px);
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.05;
    text-transform: uppercase;
}
.hero-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    margin-top: 18px;
    text-transform: uppercase;
}
.arrow-down {
    margin: 28px auto 0;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    animation: bounceDown 2s ease-in-out infinite;
}
.arrow-down:hover { opacity: 1; }
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(7px); }
}

/* ============ SECTION HEADINGS ============ */
.section-heading {
    font-size: clamp(28px, 4.5vw, 60px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}
.section-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--orange);
    margin-top: 10px;
    margin-bottom: 30px;
}

/* ============ ABOUT ============ */
.about-content {
    width: 100%;
    max-width: 1100px;
    padding: 110px 50px 60px;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}
.cta-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--black);
}
.cta-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
}
.about-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    text-transform: uppercase;
}
.about-subtitle u { text-underline-offset: 3px; }

.about-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: stretch;
}
.about-photo {
    display: flex;
    flex-direction: column;
}
.photo-frame {
    border: 3px solid var(--orange);
    flex: 1;
    display: flex;
}
.photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gray);
}
.about-photo-img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.about-bio {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
}
.timeline {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.timeline-row {
    display: grid;
    grid-template-columns: 1fr 24px 100px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.timeline-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.timeline-arrow {
    font-size: 13px;
    color: var(--orange);
    text-align: center;
}
.timeline-year {
    font-size: 12px;
    font-weight: 700;
    text-align: right;
    letter-spacing: 1px;
}
.about-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.download-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.download-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--black);
}
.est {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
}

/* Right-column wrapper for Experience & Stack sub-sections */
.about-right-section {
    padding-left: calc(240px + 36px); /* matches about-grid: 240px col + 36px gap */
}

/* ============ EXPERIENCE & STACK (About sub-sections) ============ */
.about-subsection-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.about-sub-desc {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    max-width: 480px;
    line-height: 1.9;
    margin-top: 12px;
}
.about-sub-desc u { text-underline-offset: 3px; }

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--orange);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 8px;
}

/* Experience list */
.exp-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.exp-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
}

.exp-logo-box {
    width: 54px;
    height: 54px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.exp-content {}

.exp-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.exp-title {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.exp-subtitle {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--orange);
    text-transform: uppercase;
}

.exp-year {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.exp-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
}

/* Stack list */
.stack-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 20px;
}

.stack-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    align-items: start;
}

.stack-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.stack-content {}

.stack-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.stack-name {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.stack-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--orange);
    text-transform: uppercase;
}

.stack-percent {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.stack-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
}

/* ============ VISION + MOTIVATION combined ============ */
.vision-motivation-content {
    width: 100%;
    max-width: 1200px;
    padding: 100px 50px 80px;
}

.vision-heading-center { text-align: center; margin-bottom: 32px; }

.motivation-photo-inline {
    width: 100%;
    height: 400px;
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.08);
    margin: 60px 0 40px;
}

/* Legacy alias kept for backward compat */
.vision-content {
    width: 100%;
    max-width: 1200px;
    padding: 100px 50px 50px;
    overflow-y: auto;
    max-height: 100vh;
    scrollbar-width: none;
    overscroll-behavior: contain;
}
.vision-content::-webkit-scrollbar { display: none; }

.vision-how {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.vision-content > .section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.vision-method-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
    align-items: start;
}

.vision-img-col {
    position: sticky;
    top: 110px;
    align-self: start;
}

.vision-collage {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--gray);
}

.vision-steps {
    display: flex;
    flex-direction: column;
}

.vision-step {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.vision-step:first-child { border-top: 1px solid rgba(255,255,255,0.12); }

.vision-step-num {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 10px;
}

.vision-step-title {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vision-step-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.vision-step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.vision-step-list li {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
    padding-left: 14px;
    position: relative;
}
.vision-step-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* ============ MOTIVATION ============ */
#motivation {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.motivation-photo {
    width: 100%;
    height: 38vh;
    background: var(--gray);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.motivation-content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 50px;
    position: relative;
    z-index: 1;
    align-self: center;
}

.vision-motive-body {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 50px;
    align-items: start;
}

.vision-motive-right {
    min-width: 0;
}

.vision-motive-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-top: 10px;
}
.vision-motive-sub u { text-underline-offset: 3px; }

.vision-motive-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
}

.vision-quote {
    margin-top: 24px;
    border-left: 3px solid var(--orange);
    padding-left: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.7;
    color: var(--white);
    font-style: normal;
}
.vision-quote cite {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    letter-spacing: 1px;
    font-style: normal;
}

/* ============ SERVICES ============ */
.services-content {
    width: 100%;
    max-width: 1100px;
    padding: 100px 50px 40px;
    overflow-y: auto;
    max-height: 100vh;
    scrollbar-width: none;
    overscroll-behavior: contain;
}
.services-content::-webkit-scrollbar { display: none; }

.services-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.services-desc {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    max-width: 520px;
    line-height: 2;
    margin-top: 16px;
}

/* Service list */
.service-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.12);
}

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

.service-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 0;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
}
.service-toggle:hover .service-title { color: var(--orange); }

.service-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.6;
    color: var(--white);
}
.service-item.open .service-icon { opacity: 1; color: var(--orange); }

.service-title {
    flex: 1;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.service-plus {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1;
    min-width: 20px;
    text-align: center;
    transition: color 0.3s;
}
.service-item.open .service-plus { color: var(--orange); }

/* Accordion animation via max-height */
.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}
.service-item.open .service-body {
    max-height: 600px;
}

.service-body-inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 50px;
    align-items: start;
    padding: 4px 0 36px;
}

.service-left {}

.service-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
}

.service-features-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.service-features li {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    padding-left: 16px;
    position: relative;
}
.service-features li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.service-img {}
.service-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.08);
}
.service-img-num {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.35);
    margin-top: 8px;
    text-align: right;
}

/* ============ WORKS + SERVICES combined ============ */
.works-services-content {
    width: 100%;
    max-width: 1100px;
    padding: 110px 50px 80px;
}

.section-divider {
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 60px 0 50px;
}

/* ============ WORKS ============ */
.works-content {
    width: 100%;
    max-width: 1100px;
    padding: 110px 50px 30px;
}
.works-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.work-card {
    text-decoration: none;
    color: var(--white);
    display: block;
    cursor: pointer;
    width: 55%;
    transition: transform 0.4s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateX(-40px);
}
.work-card:nth-child(even) {
    align-self: flex-end;
    transform: translateX(40px);
}
.work-card.visible {
    opacity: 1;
    transform: translateX(0);
}
.work-card:hover { transform: translateY(-4px); }
.work-card:nth-child(even).visible:hover { transform: translateY(-4px); }
.work-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--gray);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 10px;
    transition: border-color 0.3s;
}
.work-card:hover .work-card-img { border-color: var(--orange); }
.work-card-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.work-card-desc {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

/* ============ CONTACTS ============ */
.contacts-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}
.contacts-big-title {
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
}
.contacts-quote {
    font-size: 11px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.45);
    line-height: 2;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.contacts-cta {
    display: inline-block;
    border: 1.5px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    padding: 16px 44px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    margin-bottom: 80px;
}
.contacts-cta:hover {
    background: var(--white);
    color: #000;
    letter-spacing: 5px;
}
.contacts-socials {
    display: flex;
    gap: 48px;
}
.contacts-social-link {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}
.contacts-social-link:hover { color: var(--orange); }
.contact-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    max-width: 400px;
}
.contact-links {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    width: fit-content;
}
.contact-link:hover { color: var(--orange); }
.contact-icon {
    color: var(--orange);
    display: flex;
    align-items: center;
}

/* ============ LEFT INDICATOR ============ */
.slide-indicator {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
}
.slide-number {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
}
.slide-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
}
.slide-line::after {
    content: '';
    position: absolute;
    right: -5px; top: -3px;
    border-left: 5px solid rgba(255,255,255,0.2);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

/* ============ RIGHT DOTS ============ */
.side-controls {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}
.dots-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: var(--orange);
    border-color: var(--orange);
}
.dot:hover { border-color: var(--orange); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .work-card { width: 65%; }
    .vision-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-header { flex-direction: column; align-items: flex-start; gap: 14px; }
    .about-right-section { padding-left: 0; }
    .vision-method-grid { grid-template-columns: 1fr; gap: 30px; }
    .vision-img-col { position: relative; top: 0; }
    .vision-collage { aspect-ratio: 16/9; }
    .vision-motive-body { grid-template-columns: 1fr; gap: 24px; }
    .service-body-inner { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    /* Hide side indicators */
    .slide-indicator,
    .side-controls { display: none; }

    /* Nav */
    .navbar { gap: 10px; padding: 18px 16px; }
    .nav-link { font-size: 8px; letter-spacing: 1.2px; }
    .nav-dot { display: none; }
    .logo-img { width: 28px; height: 28px; }
    .logo { margin: 0 6px; }

    /* Global section padding */
    .about-content { padding: 90px 20px 40px; }
    .works-services-content { padding: 90px 20px 60px; }
    .vision-motivation-content { padding: 80px 20px 60px; }

    /* About grid */
    .about-grid { gap: 20px; }
    .about-right-section { padding-left: 0; }

    /* Experience items */
    .exp-item { grid-template-columns: 44px 1fr; gap: 14px; }
    .exp-logo-box { width: 44px; height: 44px; }
    .exp-row { flex-direction: column; gap: 4px; }
    .exp-title { font-size: 12px; }
    .exp-year { font-size: 10px; }

    /* Stack items */
    .stack-item { grid-template-columns: 40px 1fr; gap: 14px; }
    .stack-icon-box { width: 40px; height: 40px; }
    .stack-row { flex-direction: column; gap: 4px; }
    .stack-name { font-size: 12px; }

    /* Services accordion */
    .services-header { flex-direction: column; gap: 16px; }
    .service-body-inner { grid-template-columns: 1fr; gap: 16px; }

    /* Vision */
    .vision-method-grid { grid-template-columns: 1fr; gap: 24px; }
    .vision-img-col { position: relative; top: 0; }
    .vision-collage { aspect-ratio: 4/3; }
    .vision-motive-body { grid-template-columns: 1fr; gap: 20px; }
    .motivation-photo-inline { height: 240px; }

    /* Section dividers */
    .section-divider { margin: 40px 0 30px; }
    .about-subsection-header { flex-direction: column; gap: 12px; }

    /* Contacts */
    .contacts-content { padding: 0 20px; }
    .contacts-socials { gap: 24px; }
    .contacts-cta { padding: 14px 30px; letter-spacing: 3px; }
}

@media (max-width: 560px) {
    .work-card { width: 100%; }
    .work-card:nth-child(even) { align-self: flex-start; }
    .works-grid { gap: 40px; }
    .vision-grid { grid-template-columns: 1fr; }
    .cta-btn { display: none; }
}
