  :root {
    --bg: #0a0a0a;
    --surface: #111111;
    --surface2: #181818;
    --border: #222222;
    --text: #f0f0f0;
    --muted: #888888;
    --accent: #e8e8e8;
    --white: #ffffff;
    --header-h: 33.33vh;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
  }

  /* ── CUSTOM CURSOR ── */
  #cursor {
    position: fixed; top: 0; left: 0; z-index: 9999;
    width: 10px; height: 10px;
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
    transform: translate(-50%, -50%);
  }
  #cursor-ring {
    position: fixed; top: 0; left: 0; z-index: 9998;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  }
  body:hover #cursor { opacity: 1; }

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

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0 48px;
    height: 64px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
  }

  .nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
    white-space: nowrap;
  }

  .nav-links a {
    position: relative;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 4px;
    transition: color 0.25s ease;
    overflow: hidden;
  }

  .nav-links a::before {
    content: '';
    position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 1px;
    background: var(--white);
    transition: left 0.3s ease, right 0.3s ease;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::before { left: 14px; right: 14px; }

  .nav-cta {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--bg) !important;
    background: var(--white);
    padding: 8px 20px !important;
    border-radius: 4px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease !important;
  }
  .nav-cta::before { display: none !important; }
  .nav-cta:hover {
    background: #d0d0d0 !important;
    color: var(--bg) !important;
    transform: translateY(-1px);
  }
  .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  }
  .menu-toggle {
  transition: transform 0.2s ease;
}

.menu-toggle:active {
  transform: scale(0.9);
}
.menu-toggle:hover {
  transform: scale(1.1);
}

  /* ── HEADER / HERO ── */
  #home {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .hero-top {
    background: #111111;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 64px 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }

  /* subtle grid lines */
  .hero-top::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .hero-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .hero-headline {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(52px, 7vw, 100px);
    line-height: 0.92;

    letter-spacing: 2px;
    color: var(--white);
    min-height: 1.85em;
  }

  /* typewriter cursor blink */
  .tw-cursor {
    display: inline-block;
    width: 4px;
    background: var(--white);
    margin-left: 6px;
    animation: blink 0.75s steps(1) infinite;
    vertical-align: baseline;
    height: 0.8em;
    position: relative;
    top: 0.05em;
  }
  @keyframes blink { 0%,49%{ opacity:1 } 50%,100%{ opacity:0 } }

  /* ── HERO BOTTOM (white) ── */
  .hero-bottom {
    background: var(--bg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 64px 80px;
    gap: 36px;
  }

  .hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(22px, 3.2vw, 40px);
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.3;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* drop-word slot */
  .drop-slot {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.4em;
    vertical-align: bottom;
    min-width: 170px;
  }

  .drop-word {
    display: block;
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
    padding-right: 3px;
    transform: translateY(-110%);
    opacity: 0;
    transition: none;
  }

  .drop-word.active {
    animation: dropIn 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }

  .drop-word.exit {
    animation: dropOut 0.35s cubic-bezier(0.55,0,1,0.45) forwards;
  }

  @keyframes dropIn {
    0%   { transform: translateY(-120%); opacity: 0; }
    100% { transform: translateY(0%); opacity: 1; }
  }
  @keyframes dropOut {
    0%   { transform: translateY(0%); opacity: 1; }
    100% { transform: translateY(120%); opacity: 0; }
  }

  .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--bg);
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 4px;
    width: fit-content;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
  .hero-btn:hover {
    transform: translateY(-3px);
    background: #e2e2e2;
    box-shadow: 0 12px 40px rgba(255,255,255,0.08);
  }
  .hero-btn svg { transition: transform 0.25s ease; }
  .hero-btn:hover svg { transform: translateX(4px); }

  /* ── SECTION COMMONS ── */
  section { padding: 120px 64px; }

  .section-tag {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-tag::after {
    content: '';
    display: block;
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--border);
  }
/* ── WHY CHOOSE US ── */

#why-us {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.why-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #333;
}
.why-icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 8px;
  background: #161616;
  border: 1px solid #262626;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-card:hover .why-icon img {
  transform: scale(1.15);
  transition: transform 0.25s ease;
}

.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--white);
}

.why-card p {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
}
  /* ── ABOUT ── */
  #about {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(48px, 5.5vw, 80px);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--white);
  }

  .about-title em {
    display: block;
    font-style: normal;
    color: var(--muted);
  }

  .about-body { font-size: 16px; font-weight: 300; color: #aaa; line-height: 1.8; }
  .about-body strong { color: var(--white); font-weight: 500; }

  .about-pills {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px;
  }

  .pill {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 6px 16px;
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s;
  }
  .pill:hover { border-color: #555; color: var(--white); }

  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px;
  }

  .stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 56px;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
  }

  /* ── WORKS ── */
  #works {
    background: var(--bg);
    position: relative;
  }

  .works-layout {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 48px;
    align-items: start;
  }

  .works-side-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    letter-spacing: 8px;
    color: #1e1e1e;
    user-select: none;
    line-height: 1;
    position: sticky;
    top: 100px;
  }

  .works-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }

  .work-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: none;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .work-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.6); }

  .work-card:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 360px; }
  .work-card:nth-child(2) { grid-column: span 5; min-height: 200px; }
  .work-card:nth-child(3) { grid-column: span 5; min-height: 200px; }
  .work-card:nth-child(4) { grid-column: span 4; min-height: 280px; }
  .work-card:nth-child(5) { grid-column: span 8; min-height: 280px; }
  .work-card:nth-child(6) { grid-column: span 6; min-height: 240px; }
  .work-card:nth-child(7) { grid-column: span 6; min-height: 240px; }

  .work-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: brightness(0.3);
  }
  .work-card:hover .work-bg { transform: scale(1.05); filter: brightness(0.2); }

  .work-info {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    transform: translateY(8px);
    opacity: 0.85;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .work-card:hover .work-info { transform: translateY(0); opacity: 1; }

  .work-cat {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .work-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }
  .work-arrow {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .work-card:hover .work-arrow { opacity: 1; transform: scale(1); }

  /* work card bgs */
  .wc1 { background: linear-gradient(135deg,#1a1a2e,#16213e,#0f3460); }
  .wc2 { background: linear-gradient(135deg,#1c1c1c,#2d2d2d); }
  .wc3 { background: linear-gradient(135deg,#0d0d0d,#1a1a1a,#262626); }
  .wc4 { background: linear-gradient(135deg,#111,#1e1e1e,#111); }
  .wc5 { background: linear-gradient(135deg,#0a0a0a,#181818,#0e0e0e); }
  .wc6 { background: linear-gradient(135deg,#151515,#202020); }
  .wc7 { background: linear-gradient(135deg,#0c0c0c,#1a1a1a); }

  /* ── PRICING ── */
  #pricing {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .pricing-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 32px;
    flex-wrap: wrap;
  }

  .pricing-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.9;
    letter-spacing: 2px;
    color: var(--white);
  }

  .pricing-note {
    font-size: 13px; color: var(--muted); max-width: 280px; line-height: 1.6;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
  }

  .price-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .price-card:hover {
    transform: translateY(-8px);
    border-color: #333;
    box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  }

  .price-card.featured {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-16px);
  }

  .price-card.featured:hover { transform: translateY(-24px); }

  .price-card.featured .price-name,
  .price-card.featured .price-amt,
  .price-card.featured .price-desc,
  .price-card.featured .price-feature { color: #111 !important; }

  .price-card.featured .price-feature::before { background: #111 !important; }
  .price-card.featured .price-divider { background: #ddd !important; }

  .price-badge {
    position: absolute; top: 20px; right: 20px;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #111;
    color: #fff;
    padding: 4px 10px;
    border-radius: 100px;
  }

  .price-name {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .price-amt {
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }

  .price-period {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
  }

  .price-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .price-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
  }

  .price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

  .price-feature {
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .price-feature::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #444;
    flex-shrink: 0;
  }

  .price-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: 6px;
    transition: all 0.25s ease;
  }

  .price-btn-outline {
    border: 1px solid var(--border);
    color: var(--muted);
  }
  .price-btn-outline:hover { border-color: #555; color: var(--white); }

  .price-btn-solid {
    background: #111;
    color: var(--white);
  }
  .price-btn-solid:hover { background: #222; }

  /* ── REVIEWS ── */
  #reviews {
    background: var(--bg);
    overflow: hidden;
    padding: 120px 0;
  }

  .reviews-header {
    padding: 0 64px;
    margin-bottom: 56px;
  }

  .review-track-wrap {
    overflow: hidden;
    position: relative;
  }

  .review-track-wrap::before,
  .review-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .review-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
  .review-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

  .review-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: conveyor 40s linear infinite;
  }

  @keyframes conveyor {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    width: 320px;
    flex-shrink: 0;
  }

  .review-stars {
    display: flex; gap: 4px; margin-bottom: 16px;
  }
  .review-stars span { color: #fff; font-size: 14px; }

  .review-text {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    font-style: italic;
  }

  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .review-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    flex-shrink: 0;
  }

  .review-name { font-size: 13px; font-weight: 600; color: var(--white); }
  .review-role { font-size: 11px; color: var(--muted); }

  /* ── TEAM ── */
#team {
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 120px 64px 0;
}

/* background typography */

.team-bg-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(150px, 20vw, 400px);
  letter-spacing: 16px;
  color: rgb(186, 186, 186);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

/* container for image */

.team-hero {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 20px;
}

/* team png */

.team-image {
  width: min(1300px, 96%);
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  transform: translate(-50px,10px);
}
  /* ── TEAM NAME MARQUEE ── */

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .team-name-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  margin: 80px 0;
}
.team-name-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.team-name-item span {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--muted);
  white-space: nowrap;
}
  /* ── FOOTER ── */
  footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 80px 64px 40px;
  }
  .footer-word{
  width:100%;
  overflow:hidden;

  font-family: 'DM Sans', sans-serif;
  font-weight:700;

  font-size:clamp(160px,30vw,340px);
  line-height:0.85;
    display: flex;
    justify-content: center;
  letter-spacing:-5px;
    margin-top: 120px;
  color:#e1e1e1;

  padding-left:32px;

  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }

  .footer-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }

  .footer-col-title {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-links a:hover { color: var(--white); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }

  .footer-copy { font-size: 12px; color: #444; }

  .footer-socials { display: flex; gap: 12px; }

  .footer-social-btn {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: border-color 0.2s, color 0.2s;
  }
  .footer-social-btn:hover { border-color: #444; color: var(--white); }

  /* ── CONTACT PAGE ── */
  #contact-page {
    display: none;
    min-height: 100vh;
    background: var(--bg);
    padding-top: 64px;
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 64px);
  }

  .contact-left {
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .contact-right {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
  }

  .contact-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 340px;
  }

  .contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }

  .contact-info-item { display: flex; flex-direction: column; gap: 4px; }
  .contact-info-label {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .contact-info-val { font-size: 14px; color: var(--white); }

  .form-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 40px;
  }

  .form-group { margin-bottom: 24px; }

  .form-label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .form-input, .form-textarea {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
  }
  .form-input:focus, .form-textarea:focus {
    border-color: #444;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
  }
  .form-input::placeholder, .form-textarea::placeholder { color: #3a3a3a; }

  .form-textarea { resize: vertical; min-height: 120px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--bg);
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    padding: 16px 36px;
    border-radius: 6px;
    cursor: none;
    transition: background 0.25s ease, transform 0.25s ease;
    margin-top: 8px;
    width: 100%;
  }
  .form-submit:hover { background: #e2e2e2; transform: translateY(-2px); }

  .success-msg {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    font-size: 14px;
    color: #aaa;
    margin-top: 16px;
    line-height: 1.6;
  }

  /* ── BACK BTN ── */
  .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    background: none;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 4px;
    cursor: none;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: 40px;
  }
  .back-btn:hover { color: var(--white); border-color: #444; }

  /* ── REVEAL ANIM ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .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: 1024px) {
      nav { padding: 0 24px; }
      section { padding: 80px 24px; }
      .hero-top, .hero-bottom { padding-left: 32px; padding-right: 32px; }
    .why-grid { grid-template-columns: repeat(2,1fr);}
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .contact-left { padding: 48px 32px; }
    .contact-right { padding: 48px 32px; }
    footer { padding: 60px 24px 32px; }
    .works-grid { grid-template-columns: repeat(6, 1fr); }
    .work-card:nth-child(1) { grid-column: span 6; }
    .work-card:nth-child(2), .work-card:nth-child(3) { grid-column: span 3; }
    .work-card:nth-child(4) { grid-column: span 3; }
    .work-card:nth-child(5) { grid-column: span 3; }
    .work-card:nth-child(6), .work-card:nth-child(7) { grid-column: span 3; }
  }

  @media (max-width: 640px) {
    .menu-toggle {
      display: block;
    }
    .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;

    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);

    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;

    display: flex;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

  transition: transform 0.25s ease, opacity 0.25s ease;
}
    .nav-links.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .why-grid { grid-template-columns: 1fr;}
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-top { padding: 0 20px 32px; }
    .hero-bottom { padding: 32px 20px 60px; }
    /* Disable custom cursor on touch devices */
    #cursor,
  #cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
  #team {
    padding: 100px 24px 0;
  }

  .team-bg-text {
    font-size: clamp(60px, 22vw, 120px);
    letter-spacing: 6px;
    top: 35%;
  }

  .team-hero {
    margin-top: 40px;
  }

  .team-image {
    width: 100%;
    transform: translate(-20px,5px);
  }
  @media (max-width:640px){

.footer-word{
  display:none;
}

}

  }