:root {
    --bg: #07070c;
    --bg2: #0d0d16;
    --bg3: #12121e;
    --accent: #6c5ce7;
    --accent2: #a29bfe;
    --accent3: #fd79a8;
    --text: #f0eeff;
    --muted: rgba(240, 238, 255, 0.4);
    --border: rgba(255, 255, 255, 0.07);
    --glow: rgba(108, 92, 231, 0.25);
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

/* Cursor particles */
.cursor-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.particle {
    position: fixed;
    pointer-events: none;
    font-size: 16px;
    opacity: 0;
    animation: float-away 1s ease-out forwards;
}

@keyframes float-away {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.3);
    }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(7, 7, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--border);
    transition: padding 0.3s;
}
.nav-logo {
    font-family: "Syne", sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-logo svg {
    width: 40px;
    height: 30px;
    stroke: url(#gradient) !important;
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo span {
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-logo span {
    color: var(--accent);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--accent2);
}

/* ── HERO SLIDER ── */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: var(--bg);
}
.slides {
    display: flex;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s linear;
    filter: brightness(0.7) contrast(1.1);
}
.slide.active .slide-img {
    transform: scale(1.08);
    filter: brightness(0.8) contrast(1.15);
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 7, 12, 0.9) 0%, rgba(7, 7, 12, 0.4) 60%, transparent 100%);
}
.slide-content {
    position: absolute;
    bottom: 12vh;
    left: 8vw;
    max-width: 640px;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s 0.4s,
        transform 0.7s 0.4s;
}
.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}
.slide-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: slideInLeft 0.6s 0.4s ease both;
}
.slide-tag::before {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent2), transparent);
}
.slide h2 {
    font-family: "Syne", sans-serif;
    font-size: clamp(38px, 6vw, 74px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--accent2), var(--text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.slide p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 2rem;
}
.slide-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-hero {
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s;
    letter-spacing: 0.01em;
}
.btn-hero-fill {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}
.btn-hero-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(108, 92, 231, 0.4);
}
.btn-hero-out {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--accent2);
}
.btn-hero-out:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(108, 92, 231, 0.1);
    transform: translateY(-2px);
}

/* Slider controls */
.slider-controls {
    position: absolute;
    bottom: 12vh;
    right: 6vw;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}
.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.slider-dots {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    width: 28px;
    border-radius: 3px;
    background: var(--accent);
}

/* Slide counter */
.slide-counter {
    position: absolute;
    top: 50%;
    right: 3vw;
    transform: translateY(-50%);
    font-family: "Syne", sans-serif;
    font-size: 12px;
    color: var(--muted);
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
}

/* Progress bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s linear;
}

/* ── MARQUEE ── */
.marquee-wrap {
    background: var(--accent);
    padding: 0.75rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}
.marquee-track span.dot-sep {
    color: rgba(255, 255, 255, 0.4);
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── SECTIONS COMMON ── */
section {
    padding: 7rem 8vw;
}
.sec-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.sec-eyebrow::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--accent2);
}
.sec-title {
    font-family: "Syne", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
}
.sec-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 480px;
    margin-top: 1rem;
}

/* ── SERVICES ── */
.services-section {
    background: var(--bg2);
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.svc-card {
    background: var(--bg2);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.svc-card:hover {
    background: linear-gradient(135deg, var(--bg3), rgba(108, 92, 231, 0.05));
}
.svc-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover::after {
    transform: scaleX(1);
}
.svc-num {
    font-family: "Syne", sans-serif;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -3px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(108, 92, 231, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.svc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(108, 92, 231, 0.08));
    border: 0.5px solid rgba(108, 92, 231, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 1.4rem;
    transition: all 0.3s;
}
.svc-card:hover .svc-icon {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.4), rgba(108, 92, 231, 0.2));
    transform: scale(1.1) rotate(5deg);
}
.svc-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}
.svc-card:hover h3 {
    color: var(--accent2);
}
.svc-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 13px;
    color: var(--accent2);
    cursor: pointer;
    transition: all 0.3s;
}
.svc-card:hover .svc-link {
    gap: 0.7rem;
    color: var(--accent);
}

/* ── FEATURED PROJECT ── */
.featured-section {
    padding: 0;
}
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
}
.featured-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg3), var(--bg));
}
.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition:
        opacity 0.4s,
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-visual:hover .featured-img {
    opacity: 0.95;
    transform: scale(1.05);
}
.featured-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}
.featured-info {
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid rgba(108, 92, 231, 0.2);
}
.featured-info .sec-title {
    font-size: clamp(28px, 3vw, 44px);
    background: linear-gradient(135deg, var(--accent2), var(--text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feat-meta {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 0.5px solid var(--border);
}
.feat-meta-item {
}
.feat-meta-item .val {
    font-family: "Syne", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feat-meta-item .key {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
}
.feat-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.tag {
    font-size: 11px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(108, 92, 231, 0.08));
    color: var(--accent2);
    border: 0.5px solid rgba(108, 92, 231, 0.3);
    letter-spacing: 0.05em;
    transition: all 0.3s;
}
.tag:hover {
    background: rgba(108, 92, 231, 0.3);
    transform: translateY(-2px);
}

/* ── PROCESS TIMELINE ── */
.process-section {
    background: var(--bg);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3.5rem;
}
.proc-step {
    background: var(--bg2);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}
.proc-step:hover {
    background: var(--bg3);
}
.proc-line {
    position: absolute;
    top: 3rem;
    right: 0;
    width: 2px;
    height: 40%;
    background: var(--border);
}
.proc-step:last-child .proc-line {
    display: none;
}
.proc-num {
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.proc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(108, 92, 231, 0.1);
    border: 0.5px solid rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.proc-step:hover .proc-icon {
    background: rgba(108, 92, 231, 0.25);
}
.proc-step h3 {
    font-family: "Syne", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.proc-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── GALLERY ── */
.gallery-section {
    padding: 7rem 0;
    overflow: hidden;
}
.gallery-header {
    padding: 0 8vw;
    margin-bottom: 3rem;
}
.gallery-scroll {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 0 8vw 1rem;
    scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar {
    display: none;
}
.gal-item {
    flex-shrink: 0;
    width: 360px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gal-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}
.gal-item:hover .gal-img {
    transform: scale(1.07);
}
.gal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7, 7, 12, 0.85));
    padding: 1.5rem 1.2rem 1rem;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(8px);
    opacity: 0;
    transition: all 0.3s;
}
.gal-item:hover .gal-caption {
    transform: translateY(0);
    opacity: 1;
}
.gallery-nav {
    display: flex;
    gap: 0.8rem;
    padding: 1rem 8vw 0;
}
.gal-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0.5px solid var(--border);
    background: var(--bg2);
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.gal-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ── JOURNAL GRID ── */
.journal-section {
    background: var(--bg2);
}
.journal-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.journal-main {
    background: var(--bg3);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 0.5px solid var(--border);
    transition: border-color 0.3s;
}
.journal-main:hover {
    border-color: rgba(108, 92, 231, 0.4);
}
.jmain-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}
.journal-main:hover .jmain-img {
    transform: scale(1.03);
}
.jmain-body {
    padding: 1.8rem;
}
.j-tag {
    font-size: 11px;
    color: var(--accent2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}
.jmain-body h3 {
    font-family: "Syne", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 0.8rem;
}
.jmain-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
.j-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}
.j-author {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.j-date {
    font-size: 12px;
    color: var(--muted);
}

.journal-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.jside-card {
    background: var(--bg3);
    border-radius: 12px;
    border: 0.5px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.jside-card:hover {
    border-color: rgba(108, 92, 231, 0.4);
}
.jside-img {
    height: 120px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}
.jside-card:hover .jside-img {
    transform: scale(1.05);
}
.jside-body {
    padding: 1.2rem;
    flex: 1;
}
.jside-body h4 {
    font-family: "Syne", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.2px;
}
.jside-body p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 0.4rem;
    line-height: 1.5;
}

/* ── TEAM ── */
.team-section {
    background: var(--bg);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.team-card {
    background: var(--bg2);
    border-radius: 14px;
    border: 0.5px solid var(--border);
    overflow: hidden;
    transition:
        border-color 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
}
.team-card:hover {
    border-color: rgba(108, 92, 231, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}
.team-avatar {
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    background-size: cover;
    background-position: top center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar-initials {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    font-family: "Syne", sans-serif;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}
.team-info {
    padding: 1.4rem;
}
.team-info h4 {
    font-family: "Syne", sans-serif;
    font-size: 17px;
    font-weight: 700;
}
.team-info .role {
    font-size: 12px;
    color: var(--accent2);
    margin-top: 0.2rem;
}
.team-info p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 0.6rem;
    line-height: 1.5;
}

/* ── FOOTER ── */
footer {
    background: var(--bg2);
    border-top: 0.5px solid var(--border);
    padding: 4rem 8vw 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 0.5px solid var(--border);
}
.footer-brand .nav-logo {
    font-size: 28px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 260px;
}
.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}
.soc-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.footer-col h5 {
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-col a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--text);
}
.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(240, 238, 255, 0.25);
}
.footer-bottom a {
    color: rgba(240, 238, 255, 0.35);
    text-decoration: none;
    cursor: pointer;
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 5px;
}

/* Telegram */
.soc-btn.telegram {
    background-color: #229ed9;
}

.soc-btn.telegram:hover {
    background-color: #1c89bd;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(34, 158, 217, 0.4);
}

/* YouTube */
.soc-btn.youtube {
    background-color: #ff0000;
}

.soc-btn.youtube:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 3rem;
    }
    .nav-links {
        gap: 1.8rem;
    }
    .nav-links a {
        font-size: 12px;
    }
    section {
        padding: 5rem 6vw;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .featured-info {
        padding: 3rem;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 1.5rem;
    }
    .nav-logo {
        font-size: 22px;
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
    .nav-links a {
        font-size: 11px;
    }
    
    /* Hero Section */
    .hero {
        height: 85vh;
        min-height: 500px;
    }
    .slide-content {
        bottom: 8vh;
        left: 5vw;
        max-width: 100%;
    }
    .slide h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin-bottom: 0.8rem;
    }
    .slide p {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 1.2rem;
    }
    .slide-btns {
        gap: 0.6rem;
    }
    .btn-hero {
        padding: 0.7rem 1.5rem;
        font-size: 12px;
    }
    .slider-controls {
        bottom: 8vh;
        right: 3vw;
        gap: 0.3rem;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .slide-counter {
        display: none;
    }
    
    /* Marquee */
    .marquee-track {
        gap: 2rem;
        animation: marquee 18s linear infinite;
    }
    .marquee-track span {
        font-size: 11px;
    }
    
    /* Sections */
    section {
        padding: 3.5rem 5vw;
    }
    .sec-title {
        font-size: clamp(24px, 5vw, 40px);
    }
    .sec-sub {
        font-size: 14px;
    }
    
    /* Services */
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .svc-card {
        padding: 1.8rem;
    }
    .svc-num {
        font-size: 48px;
        margin-bottom: 1rem;
    }
    .svc-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    .svc-card h3 {
        font-size: 18px;
    }
    .svc-card p {
        font-size: 13px;
    }
    
    /* Featured */
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .featured-info {
        padding: 2.5rem;
        min-height: 300px;
    }
    .featured-info .sec-title {
        font-size: clamp(22px, 5vw, 32px);
    }
    .feat-meta {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    /* Gallery */
    .gallery-section {
        padding: 3.5rem 0;
    }
    .gallery-header {
        padding: 0 5vw;
        margin-bottom: 2rem;
    }
    .gallery-scroll {
        padding: 0 5vw 1rem;
    }
    .gal-item {
        width: 280px;
        height: 200px;
    }
    .gallery-nav {
        padding: 1rem 5vw;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    .team-card {
        border-radius: 12px;
    }
    .team-avatar {
        height: 160px;
    }
    .avatar-initials {
        width: 64px;
        height: 64px;
        font-size: 22px;
    }
    .team-info h4 {
        font-size: 15px;
    }
    .team-info p {
        font-size: 12px;
    }
    
    /* Testimonials */
    .testi-section {
        padding: 3.5rem 5vw;
    }
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    .testi-card {
        padding: 1.5rem;
    }
    .testi-quote {
        font-size: 28px;
        margin-bottom: 0.8rem;
    }
    .testi-text {
        font-size: 14px;
    }
    .testi-author {
        gap: 0.6rem;
        margin-top: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 2.5rem 5vw 1.5rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-brand .nav-logo {
        font-size: 24px;
    }
    .footer-brand p {
        font-size: 13px;
    }
    .footer-col h5 {
        font-size: 13px;
        margin-bottom: 0.8rem;
    }
    .footer-col a {
        font-size: 12px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    * {
        scroll-behavior: auto;
    }
    
    /* Navigation */
    nav {
        padding: 0.8rem 1rem;
    }
    .nav-logo {
        font-size: 18px;
    }
    .nav-links {
        gap: 0.8rem;
        font-size: 10px;
    }
    
    /* Hero */
    .hero {
        height: 75vh;
        min-height: 450px;
    }
    .slide-content {
        bottom: 6vh;
        left: 4vw;
        right: 4vw;
    }
    .slide h2 {
        font-size: clamp(22px, 5vw, 36px);
        margin-bottom: 0.6rem;
    }
    .slide p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    .slide-tag {
        font-size: 9px;
        margin-bottom: 0.6rem;
    }
    .slide-btns {
        gap: 0.4rem;
        flex-direction: column;
    }
    .btn-hero {
        padding: 0.65rem 1.2rem;
        font-size: 11px;
        width: 100%;
        text-align: center;
    }
    .slider-controls {
        bottom: 6vh;
        right: 2vw;
        flex-direction: row;
        gap: 0.3rem;
    }
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .slider-dots {
        bottom: 1.5vh;
    }
    .dot {
        width: 5px;
        height: 5px;
    }
    .dot.active {
        width: 20px;
    }
    
    /* Marquee */
    .marquee-wrap {
        padding: 0.5rem 0;
    }
    .marquee-track {
        gap: 1.5rem;
        animation: marquee 15s linear infinite;
    }
    .marquee-track span {
        font-size: 9px;
    }
    
    /* Sections */
    section {
        padding: 2.5rem 4vw;
    }
    .sec-eyebrow {
        font-size: 9px;
        margin-bottom: 0.6rem;
    }
    .sec-title {
        font-size: clamp(20px, 6vw, 32px);
    }
    .sec-sub {
        font-size: 13px;
        max-width: 100%;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    .svc-card {
        padding: 1.4rem;
    }
    .svc-num {
        font-size: 42px;
        margin-bottom: 0.8rem;
    }
    .svc-card h3 {
        font-size: 16px;
        margin-bottom: 0.6rem;
    }
    .svc-card p {
        font-size: 12px;
    }
    
    /* Featured */
    .featured-info {
        padding: 1.8rem;
        min-height: auto;
    }
    .featured-badge {
        padding: 0.4rem 0.7rem;
        font-size: 10px;
    }
    .feat-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Gallery */
    .gal-item {
        width: 240px;
        height: 180px;
    }
    .gal-caption {
        font-size: 12px;
        padding: 1rem;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .team-avatar {
        height: 140px;
    }
    .avatar-initials {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
    .team-info {
        padding: 1rem;
    }
    .team-info h4 {
        font-size: 14px;
    }
    .team-info .role {
        font-size: 11px;
    }
    .team-info p {
        font-size: 11px;
    }
    
    /* Testimonials */
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .testi-card {
        padding: 1.2rem;
    }
    .testi-quote {
        font-size: 24px;
        margin-bottom: 0.6rem;
    }
    .testi-text {
        font-size: 13px;
    }
    
    /* Footer */
    footer {
        padding: 2rem 4vw 1rem;
    }
    .footer-brand .nav-logo {
        font-size: 20px;
    }
    .footer-brand p {
        font-size: 12px;
        max-width: 100%;
    }
    .footer-col h5 {
        font-size: 12px;
        margin-bottom: 0.6rem;
    }
    .footer-col ul {
        gap: 0.5rem;
    }
    .footer-col a {
        font-size: 11px;
    }
    .footer-bottom {
        font-size: 10px;
    }
}