/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080808;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --border:    rgba(255,255,255,0.08);
  --text:      #f0f0f0;
  --text-muted:#888;
  --accent:    #ffffff;
  --radius:    16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font:      'Inter', sans-serif;
  --font-serif:'Playfair Display', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section__sub {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.section__header { margin-bottom: 4rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}
.btn--primary {
  background: #fff;
  color: #000;
}
.btn--primary:hover { background: #ddd; transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

.btn--large { padding: 1rem 2.5rem; font-size: 1rem; }

.btn--glow {
  background: #2563eb;
  color: #fff;
  border: none;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.55), 0 0 40px rgba(37, 99, 235, 0.25);
  animation: pulseGlow 3s ease-in-out infinite;
}
.btn--glow:hover {
  background: #1d4ed8;
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.75), 0 0 60px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
  animation: none;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(37, 99, 235, 0.55), 0 0 40px rgba(37, 99, 235, 0.25); }
  50%       { box-shadow: 0 0 26px rgba(37, 99, 235, 0.80), 0 0 60px rgba(37, 99, 235, 0.40); }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 160px;
  width: auto;
  display: block;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo-img {
  height: 240px;
  width: auto;
  display: block;
  opacity: 0.5;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
}
.nav__links li { position: relative; }
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav__links a:hover { color: var(--text); }
.nav__arrow { font-size: 1rem; transition: transform var(--transition); }

/* Dropdown */
.nav__dropdown:hover .nav__arrow { transform: rotate(180deg); }
.nav__submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-8px);
  backdrop-filter: blur(20px);
}
.nav__dropdown:hover .nav__submenu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__submenu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.nav__submenu li a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.2rem 0; }
.mobile-menu a { font-size: 1.4rem; font-weight: 700; color: var(--text); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 2rem 4rem;
  max-width: 1240px;
  margin: 0 auto;
  gap: 4rem;
}

.hero__content { position: relative; z-index: 2; }

.hero__headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero__italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Mosaic */
.hero__mosaic {
  display: flex;
  gap: 12px;
  height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
}

.mosaic__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.mosaic__col--1 { margin-top: 0; }
.mosaic__col--2 { margin-top: 40px; }
.mosaic__col--3 { margin-top: -20px; flex: 0.75; }

.mosaic__tile {
  border-radius: 10px;
  flex: 1;
  position: relative;
  overflow: hidden;
  background: hsl(var(--hue), var(--sat), 14%);
  transition: transform var(--transition);
}
.mosaic__tile:hover { transform: scale(1.02); }

.mosaic__tile--video::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.25);
}

/* Video fill */
.mosaic__tile video,
.video-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Shimmer animation on mosaic tiles */
.mosaic__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255,255,255,0.04) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0%   { background-position: -100% -100%; }
  100% { background-position: 200% 200%; }
}

/* ═══════════════════════════════════════════
   LOGO STRIP
═══════════════════════════════════════════ */
.logo-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  overflow: hidden;
}
.logo-strip--light { background: transparent; border: none; padding: 1.5rem 0; }

.logo-strip__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scrollLeft 28s linear infinite;
  width: max-content;
}
.logo-strip__track--rev { animation-name: scrollRight; }

@keyframes scrollLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.logo-item {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.logo-item:hover { color: var(--text); }
.logo-item img {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
  display: block;
}
.logo-item:hover img { opacity: 0.85; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__text p {
  color: var(--text-muted);
  margin-top: 1.2rem;
  max-width: 480px;
  line-height: 1.75;
}
.about__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
.stat__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.about__img-stack {
  position: relative;
  height: 480px;
}
.about__img {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__img--1 { width: 70%; height: 65%; top: 0; left: 0; }
.about__img--2 { width: 55%; height: 50%; bottom: 0; right: 0; }
.about__img--3 {
  width: 40%; height: 35%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.12);
}

/* ═══════════════════════════════════════════
   TEAM
═══════════════════════════════════════════ */
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.team-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.team-card__photo {
  position: relative;
  background: #111;
  min-height: 340px;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  inset: 0;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.team-card:hover .team-card__photo img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.05);
}
.team-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.35) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.team-card__age-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.team-card__age-badge::before {
  content: 'Alter ';
  font-weight: 400;
}

.team-card__info {
  padding: 2rem 2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.team-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.team-card__role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
}
.team-card__name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.team-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.team-card__tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  color: rgba(37,99,235,0.9);
  font-weight: 600;
}

.team__banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.team__banner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.team__banner-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 180px;
}

@media (max-width: 1024px) {
  .team__grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 160px 1fr; }
}
@media (max-width: 600px) {
  .team-card { grid-template-columns: 1fr; }
  .team-card__photo { min-height: 200px; }
  .team__banner-line { display: none; }
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Stagger reveal */
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}
.service-card.revealed {
  animation: serviceReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes serviceReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Mouse spotlight */
.service-card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(500px circle at var(--mx, -100%) var(--my, -100%), rgba(255,255,255,0.055), transparent 50%);
  z-index: 0;
}

/* Glowing border on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}
.service-card:hover::before { opacity: 1; }

/* Big decorative number in background */
.service-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: color 0.3s ease;
}
.service-card:hover::after { color: rgba(255,255,255,0.055); }

/* Icon */
.service-card__icon {
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-card__icon {
  color: rgba(255,255,255,0.9);
  transform: scale(1.1);
}

.service-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.service-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
}
.service-card__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.service-card:hover .service-card__list li { color: rgba(255,255,255,0.65); }
.service-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s ease;
}
.service-card:hover .service-card__list li::before { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════
   CITY SECTION
═══════════════════════════════════════════ */
.city-section { padding-bottom: 3rem; }
.city-section__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.city-ticker {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.city-ticker__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}
.city-ticker__track span { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   VIDEO SHOWCASE
═══════════════════════════════════════════ */
.carousel-wrapper {
  position: relative;
  padding: 0 4rem;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
  cursor: grab;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel.grabbing { cursor: grabbing; }

.video-tile {
  flex: 0 0 260px;
  height: 400px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--g1), var(--g2));
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.video-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition), border-color var(--transition);
}
.carousel-btn:hover { background: var(--bg-3); border-color: rgba(255,255,255,0.25); }
.carousel-btn--left  { left: 0; }
.carousel-btn--right { right: 0; }

/* ═══════════════════════════════════════════
   PHOTOGRAPHY
═══════════════════════════════════════════ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.photo-project {
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.photo-project:hover .photo-project__stack { transform: translateY(-8px); }

.photo-project__stack {
  position: relative;
  height: 380px;
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotate(var(--rot)) translate(var(--tx), var(--ty));
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.5s ease;
}
.photo-project:hover .photo-card img { transform: scale(1.04); }

.photo-project__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.photo-project__count {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.2rem;
  display: block;
}
.photo-project:hover .photo-project__name { color: var(--text); }

/* ═══════════════════════════════════════════
   WEB DESIGN
═══════════════════════════════════════════ */
.web-marquee-outer {
  overflow: hidden;
  padding: 1rem 0;
}
.web-marquee {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}
.web-marquee:hover { animation-play-state: paused; }

.web-card {
  flex: 0 0 400px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.web-card:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-6px);
}

.web-card__browser {
  background: #111;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border);
}
.web-card__dots {
  display: flex;
  gap: 5px;
  margin-bottom: 0.5rem;
}
.web-card__dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: block;
}
.web-card__dots i:nth-child(1) { background: #ff5f57; }
.web-card__dots i:nth-child(2) { background: #ffbd2e; }
.web-card__dots i:nth-child(3) { background: #28c840; }

.web-card__bar {
  background: var(--bg-3);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.web-card__screen {
  height: 220px;
  border-radius: 0 0 4px 4px;
  position: relative;
  overflow: hidden;
}
.web-card__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}
.web-card:hover .web-card__screen img {
  transform: translateY(-8%);
}

.web-card__info { padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.web-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.web-card__client { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.1rem; }
.web-card__industry { font-size: 0.82rem; color: var(--text-muted); }
.web-card__link {
  font-size: 0.78rem;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}
.web-card__link:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.web-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.web-card__tags span {
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-banner__title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-banner__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 2rem;
  max-width: 1240px;
  margin: 0 auto;
  max-height: 600px;
  overflow: hidden;
}

.testimonial-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-col--up   { animation: scrollUp 30s linear infinite; }
.testimonial-col--down { animation: scrollDown 30s linear infinite; }

@keyframes scrollUp   { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes scrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.testimonial-col:hover { animation-play-state: paused; }

.t-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color var(--transition);
}
.t-card:hover { border-color: rgba(255,255,255,0.18); }
.t-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.t-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq__list {
  max-width: 760px;
  border-top: 1px solid var(--border);
}

.faq__item { border-bottom: 1px solid var(--border); }

.faq__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.4rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}
.faq__q:hover { color: var(--text-muted); }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.faq__item.open .faq__a { max-height: 300px; }
.faq__a p {
  padding-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.footer__logo {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.08);
}

.footer__cols {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer__col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a, .footer__col li {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer__legal a:hover { color: var(--text); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero__mosaic { height: 340px; }
  .mosaic__col--3 { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { display: none; }
  .testimonial-columns { max-height: 480px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__inner > .btn--outline { display: none; }
  .nav__burger { display: flex; }

  .hero { min-height: auto; padding: 7rem 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
  .hero__mosaic { position: static; height: 300px; width: 100%; opacity: 1; border-radius: var(--radius); }
  .hero__mosaic::after { display: none; }
  .mosaic__col--2 { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .testimonial-columns { grid-template-columns: 1fr; }
  .testimonial-col--down { display: none; }
  .footer__top { flex-direction: column; gap: 2rem; }
  .footer__cols { gap: 2rem; }
  .carousel-wrapper { padding: 0 2.5rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero__mosaic { height: 260px; }
  .about__stats { flex-direction: column; gap: 1.5rem; }
}
