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

:root {
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #161616;
    --lime: #c6ff00;
    --lime-dim: #9fd600;
    --white: #f5f5f0;
    --gray: #888880;
    --gray-light: #c0c0ba;
    --border: rgba(255, 255, 255, 0.08);
    --font-display: "Barlow Condensed", sans-serif;
    --font-body: "Figtree", sans-serif;
    --font-italic: "Playfair Display", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--lime);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        transform 0.1s,
        width 0.3s,
        height 0.3s,
        background 0.3s;
    mix-blend-mode: difference;
}
#cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(198, 255, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
    width: 20px;
    height: 20px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    transition:
        background 0.4s,
        backdrop-filter 0.4s,
        padding 0.4s;
}
nav.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(16px);
    padding: 16px 48px;
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-logo-img {
    width: 130%;
    height: 130%;
    object-fit: cover;
    object-position: center;
}
.nav-logo span {
    color: var(--lime);
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.25s;
}
.nav-links a:hover {
    color: var(--white);
}
.nav-cta {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--lime);
    border: none;
    padding: 10px 24px;
    cursor: none;
    text-decoration: none;
    transition:
        background 0.25s,
        transform 0.2s;
}
.nav-cta:hover {
    background: var(--white);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 64px;
    position: relative;
    overflow: hidden;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 50% at 70% 40%,
        rgba(198, 255, 0, 0.06) 0%,
        transparent 70%
    );
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 160px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}
.hero-heading .line {
    display: block;
    overflow: hidden;
}
.hero-heading .line span {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-heading .line:nth-child(1) span {
    animation-delay: 0.3s;
}
.hero-heading .line:nth-child(2) span {
    animation-delay: 0.45s;
}
.hero-heading .line:nth-child(3) span {
    animation-delay: 0.6s;
}
.hero-heading .italic {
    font-family: var(--font-italic);
    font-style: italic;
    color: var(--lime);
    font-size: 0.85em;
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 48px;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
    position: relative;
    z-index: 2;
}
.hero-desc {
    max-width: 360px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.btn-primary {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--lime);
    padding: 16px 36px;
    text-decoration: none;
    transition:
        background 0.25s,
        transform 0.2s;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}
.btn-ghost {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s;
}
.btn-ghost:hover {
    color: var(--white);
}
.btn-ghost svg {
    transition: transform 0.25s;
}
.btn-ghost:hover svg {
    transform: translateX(4px);
}

/* floating images */
.hero-imgs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hero-img {
    position: absolute;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: imgReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-img:nth-child(1) {
    width: 200px;
    height: 280px;
    top: 12%;
    right: 18%;
    animation-delay: 0.7s;
}
.hero-img:nth-child(2) {
    width: 160px;
    height: 220px;
    top: 38%;
    right: 30%;
    animation-delay: 0.9s;
}
.hero-img:nth-child(3) {
    width: 220px;
    height: 160px;
    top: 18%;
    right: 6%;
    animation-delay: 1.1s;
}

/* badge */
.hero-badge {
    position: absolute;
    top: 50%;
    right: 44%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    z-index: 3;
    animation: spin 20s linear infinite;
    opacity: 0;
    animation:
        spin 20s linear infinite,
        fadeIn 1s 1.2s forwards;
}
@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ── MARQUEE ── */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 18px 0;
    background: var(--bg2);
}
.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    flex-shrink: 0;
}
.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── SECTIONS COMMON ── */
section {
    padding: 120px 48px;
    position: relative;
}
.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--lime);
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.section-heading em {
    font-family: var(--font-italic);
    font-style: italic;
    color: var(--gray);
    font-size: 0.85em;
}

/* ── LOGO FULL (footer brand card) ── */
.footer-logo-full {
    display: inline-block;
    margin-top: 20px;
    background: var(--white);
    border-radius: 8px;
    padding: 10px 20px;
    line-height: 0;
}
.footer-logo-full img {
    height: 40px;
    width: auto;
    display: block;
}

/* ── ABOUT ── */
.about {
    overflow: hidden;
}
.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}
.about-text {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.8;
    max-width: 500px;
}
.about-text strong {
    color: var(--white);
    font-weight: 600;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.stat {
    background: var(--bg3);
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
.stat:hover {
    border-color: var(--lime);
}
.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
}
.stat-number span {
    color: var(--lime);
}
.stat-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

/* about images */
.about-images {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
}
.about-img {
    overflow: hidden;
    position: relative;
}
.about-img:first-child {
    grid-row: span 2;
    height: 420px;
}
.about-img:not(:first-child) {
    height: 206px;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}
.about-img:hover img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

/* ── PROJECTS ── */
.projects {
    background: var(--bg2);
}
.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.project-card {
    position: relative;
    overflow: hidden;
    background: var(--bg3);
    border: 1px solid var(--border);
    cursor: none;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.3s;
}
.project-card:hover {
    border-color: rgba(198, 255, 0, 0.3);
}
.project-card:first-child {
    grid-column: span 2;
}
.project-img {
    aspect-ratio: 16/7;
    overflow: hidden;
    position: relative;
}
.project-card:not(:first-child) .project-img {
    aspect-ratio: 4/3;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: grayscale(20%);
}
.project-card:hover .project-img img {
    transform: scale(1.06);
    filter: grayscale(0%);
}
.project-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 8, 8, 0.7) 0%,
        transparent 60%
    );
}
.project-info {
    padding: 28px 32px 32px;
}
.project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.project-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    border: 1px solid rgba(198, 255, 0, 0.3);
    padding: 3px 10px;
}
.project-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 10px;
}
.project-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}
.project-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lime);
}
.project-arrow svg {
    transition: transform 0.3s;
}
.project-card:hover .project-arrow svg {
    transform: translateX(6px);
}

/* ── SERVICES ── */
.services-intro {
    max-width: 560px;
    margin-bottom: 80px;
}
.services-list {
    border-top: 1px solid var(--border);
}
.service-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.service-header {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    cursor: none;
    transition: padding 0.3s;
}
.service-item.active .service-header {
    padding: 32px 0 16px;
}
.service-num {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--lime);
    width: 40px;
    flex-shrink: 0;
}
.service-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    flex: 1;
    transition: color 0.25s;
}
.service-item.active .service-name {
    color: var(--lime);
}
.service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.service-item.active .service-icon {
    background: var(--lime);
    border-color: var(--lime);
}
.service-icon svg {
    transition: transform 0.3s;
}
.service-item.active .service-icon svg {
    transform: rotate(45deg);
}
.service-icon svg path {
    transition: stroke 0.3s;
}
.service-item.active .service-icon svg path {
    stroke: var(--bg);
}
.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item.active .service-body {
    max-height: 300px;
}
.service-body-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 0 36px 72px;
}
.service-body-text {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.75;
}
.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-features li {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-features li::before {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background: var(--lime);
    flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials {
      background: var(--bg2);
      overflow: visible;
  }
 .testimonials-header {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     margin-bottom: 64px;
     flex-wrap: wrap;
     gap: 24px;
 }
 .testimonials-heading {
     order: 1;
     margin: 0;
 }
 .testimonials-nav {
     display: flex;
     gap: 12px;
     order: 2;
     margin-bottom: 0;
 }
 .testimonial-slider-container {
     overflow: visible;
     width: 100%;
 }
 .testi-btn {
     width: 40px;
     height: 40px;
     border: 1px solid var(--border);
     background: none;
     color: var(--white);
     cursor: none;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.25s;
     flex-shrink: 0;
 }
 .testi-btn:hover {
     border-color: var(--lime);
     background: var(--lime);
     color: var(--bg);
 }
.testimonials-track {
      display: flex;
      gap: 24px;
      padding-bottom: 56px;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      scroll-behavior: smooth;
      overflow: visible;
  }
.testi-card {
      min-width: calc(80% - 12px);
      background: var(--bg3);
      border: 1px solid var(--border);
      padding: 40px;
      position: relative;
      flex-shrink: 0;
      overflow: visible;
      min-height: 320px;
      box-sizing: border-box;
  }
 .testi-quote {
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--lime);
 }
 .testi-text {
     font-size: 16px;
     color: var(--white);
     line-height: 1.8;
     font-style: italic;
 }
     background: none;
     color: var(--white);
     cursor: none;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.25s;
     flex-shrink: 0;
 }
 .testi-btn:hover {
     border-color: var(--lime);
     background: var(--lime);
     color: var(--bg);
 }
.testimonials-track {
  display: flex;
  gap: 24px;
  padding-bottom: 56px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  scroll-behavior: smooth;
  overflow: visible;
}
.testi-card {
      min-width: calc(80% - 12px);
      background: var(--bg3);
      border: 1px solid var(--border);
      padding: 40px;
      position: relative;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-height: 320px;
      box-sizing: border-box;
  }
  .testi-quote {
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--lime);
 }
 .testi-text {
     font-size: 16px;
     color: var(--white);
     line-height: 1.8;
     font-style: italic;
 }
 .testi-author {
     margin-top: auto;
     display: flex;
     align-items: center;
     gap: 12px;
 }
 .testi-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     overflow: hidden;
     flex-shrink: 0;
     background: var(--bg2);
     display: flex;
     align-items: center;
     justify-content: center;
 }
 .testi-avatar-initials {
     font-family: var(--font-display);
     font-size: 16px;
     font-weight: 800;
     color: var(--lime);
 }
 .testi-name {
     font-size: 14px;
     font-weight: 600;
     color: var(--white);
 }
 .testi-role {
     font-size: 11px;
     color: var(--gray);
 }

/* ── CTA ── */
.cta-section {
    background: var(--lime);
    padding: 120px 48px;
    overflow: hidden;
    position: relative;
}
.cta-bg-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
}
.cta-bg-text span {
    font-family: var(--font-display);
    font-size: 220px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    letter-spacing: -0.03em;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.cta-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
}
.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--bg);
    margin-bottom: 40px;
}
.cta-heading em {
    font-family: var(--font-italic);
    font-style: italic;
}
.btn-dark {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lime);
    background: var(--bg);
    padding: 18px 48px;
    text-decoration: none;
    display: inline-block;
    transition:
        background 0.25s,
        color 0.25s,
        transform 0.2s;
}
.btn-dark:hover {
    background: var(--bg3);
    transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 80px 48px 40px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}
.footer-brand {
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-img {
    width: 130%;
    height: 130%;
    object-fit: cover;
    object-position: center;
}
.footer-logo span {
    color: var(--lime);
}
.footer-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 260px;
}
.footer-contact {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-contact a {
    font-size: 14px;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: var(--lime);
}
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 24px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 15px;
    color: var(--gray-light);
    text-decoration: none;
    transition:
        color 0.25s,
        padding-left 0.25s;
    display: block;
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
}
.footer-copy {
    font-size: 13px;
    color: var(--gray);
}
.footer-socials {
    display: flex;
    gap: 16px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.25s;
}
.footer-socials a:hover {
    border-color: var(--lime);
    color: var(--lime);
}

/* scrolling footer text */
.footer-marquee {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 64px;
}
.footer-marquee .marquee-track {
    animation-duration: 20s;
}
.footer-marquee .marquee-item {
    font-size: 40px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    padding-right: 48px;
    gap: 48px;
}
.footer-marquee .marquee-dot {
    background: rgba(255, 255, 255, 0.1);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes imgReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 20px 24px;
    }
    nav.scrolled {
        padding: 14px 24px;
    }
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }

    section {
        padding: 80px 24px;
    }
    .hero {
        padding: 0 24px 48px;
    }
    .hero-heading {
        font-size: clamp(56px, 14vw, 100px);
    }
    .hero-imgs {
        display: block;
    }
    .hero-img:nth-child(1) {
        width: 110px;
        height: 150px;
        top: 10%;
        right: 4%;
        animation-delay: 0.7s;
    }
    .hero-img:nth-child(2) {
        width: 90px;
        height: 120px;
        top: 30%;
        right: 22%;
        animation-delay: 0.9s;
    }
    .hero-img:nth-child(3) {
        width: 120px;
        height: 80px;
        top: 12%;
        right: 28%;
        animation-delay: 1.1s;
    }
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    .hero-badge {
        display: none;
    }

    .about-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-images {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
    .project-card:first-child {
        grid-column: span 1;
    }

.service-body-inner {
         grid-template-columns: 1fr;
         gap: 24px;
         padding: 0 0 28px 0;
     }

    /* TESTIMONIALS MOBILE */
.testimonials {
        overflow: visible;
    }
    .testimonials-header {
        display: block;
        text-align: center;
        margin-bottom: 32px;
    }
    .testimonials-heading {
        margin-bottom: 24px;
    }
    .testimonials-nav {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 24px;
    }
    .testimonial-slider-container {
        display: block;
        width: 100%;
        overflow: hidden;
    }
    .testimonials-track {
        display: flex;
        gap: 16px;
        padding-bottom: 0;
        transition: transform 0.4s ease;
    }
    .testi-card {
        min-width: 100%;
        width: calc(100% - 32px);
        padding: 20px;
    }
    .testi-text {
        font-size: 14px;
    }

    /* FOOTER MOBILE */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .cta-section {
        padding: 80px 24px;
    }
    .cta-bg-text span {
        font-size: 80px;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    /* ABOUT SECTION MOBILE */
    .about-top .section-heading {
        font-size: clamp(28px, 6vw, 48px);
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        line-height: 1.1;
    }
}
