*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --border: #222222;
  --accent: #c8f544;
  --text: #f0ede8;
  --muted: #666666;
  --font-display: "Syne", sans-serif;
  --font-geo: "Noto Sans Georgian", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-geo);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 245, 68, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* NOISE */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9990;
}

/* ══════════════════════════════
     NAV
  ══════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 72px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  z-index: 1;
}
.logo span {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  overflow: hidden;
}
.lang-btn {
  font-family: var(--font-geo);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  background: transparent;
  color: var(--muted);
  border: none;
  cursor: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.lang-btn.active {
  background: var(--accent);
  color: #0a0a0a;
}
.lang-btn:not(.active):hover {
  color: var(--text);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 10px 9px;
  cursor: none;
  transition: border-color 0.2s;
}
.hamburger:hover {
  border-color: var(--accent);
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.25s,
    width 0.3s;
  transform-origin: center;
}
.hamburger span:nth-child(3) {
  width: 60%;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  width: 100%;
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Full-screen menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 48px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-links {
  list-style: none;
}
.menu-links li {
  overflow: hidden;
  margin-bottom: 8px;
}
.menu-links a {
  font-family: var(--font-geo);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transform: translateY(110%);
  transition:
    color 0.3s,
    transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-overlay.open .menu-links a {
  transform: translateY(0);
}
.menu-links li:nth-child(1) a {
  transition-delay: 0.05s;
}
.menu-links li:nth-child(2) a {
  transition-delay: 0.1s;
}
.menu-links li:nth-child(3) a {
  transition-delay: 0.15s;
}
.menu-links li:nth-child(4) a {
  transition-delay: 0.2s;
}
.menu-links a:hover {
  color: var(--accent);
}

.menu-footer {
  position: absolute;
  bottom: 40px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  opacity: 0;
  transition: opacity 0.4s 0.3s;
}
.menu-overlay.open .menu-footer {
  opacity: 1;
}
.menu-footer-email {
  font-size: 0.85rem;
  color: var(--muted);
}
.menu-footer-email a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.menu-footer-email a:hover {
  color: var(--accent);
}
.menu-footer-social {
  display: flex;
  gap: 24px;
}
.menu-footer-social a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.menu-footer-social a:hover {
  color: var(--text);
}

/* ══════════════════════════════
     HERO
  ══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 55% at 78% 18%,
      rgba(200, 245, 68, 0.055) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 45% at 18% 82%,
      rgba(200, 245, 68, 0.025) 0%,
      transparent 55%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 100%
  );
}
.hero-title {
  font-family: var(--font-geo);
  font-size: clamp(2.8rem, 7.5vw, 7.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 900px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s forwards;
}
.hero-title .line-outline {
  display: block;
  -webkit-text-stroke: 1.5px rgba(240, 237, 232, 0.2);
  color: transparent;
}
.hero-title .accent-word {
  color: var(--accent);
  display: block;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 52px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-desc {
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--muted);
}
.scroll-line {
  width: 44px;
  height: 1px;
  background: var(--muted);
  transform-origin: left;
  animation: growLine 1s 0.9s both;
}

/* ══════════════════════════════
     MARQUEE
  ══════════════════════════════ */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-inner span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 0 40px;
}
.marquee-inner .dot {
  color: var(--accent);
  padding: 0;
  letter-spacing: 0;
}

/* ══════════════════════════════
     SHARED
  ══════════════════════════════ */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ══════════════════════════════
     SERVICES
  ══════════════════════════════ */
.services {
  padding: 110px 48px;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 48px;
}
.services-title {
  font-family: var(--font-geo);
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  max-width: 480px;
}
.services-sub {
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
  padding-top: 6px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 48px 44px 56px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 245, 68, 0.05) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  background: #0e0e0e;
}
.service-card:hover::after {
  opacity: 1;
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 14px;
  transition: color 0.2s;
  line-height: 1.35;
}
.service-card:hover .service-name {
  color: var(--accent);
}
.service-desc {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 360px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 5px 12px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.service-card:hover .tag {
  border-color: rgba(200, 245, 68, 0.28);
  color: rgba(200, 245, 68, 0.8);
}
.service-arrow {
  position: absolute;
  bottom: 44px;
  right: 44px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.service-card:hover .service-arrow {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
}

/* ══════════════════════════════
     PROJECTS
  ══════════════════════════════ */
.projects {
  padding: 110px 48px;
  border-top: 1px solid var(--border);
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 48px;
}
.projects-title {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 480px;
}
.projects-sub {
  max-width: 280px;
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.project-card {
  background: var(--bg);
  padding: 40px 36px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: none;
  display: flex;
  flex-direction: column;
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.project-card:hover {
  background: #0e0e0e;
}
.project-card:hover::before {
  transform: scaleX(1);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.project-year {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.15em;
}
.project-type {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 4px 10px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.project-card:hover .project-type {
  border-color: rgba(200, 245, 68, 0.3);
  color: var(--accent);
}

.project-name {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.project-card:hover .project-name {
  color: var(--accent);
}
.project-desc {
  font-size: 0.825rem;
  line-height: 1.85;
  color: var(--muted);
  flex: 1;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.project-tag {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  background: var(--surface);
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.project-link:hover {
  color: var(--accent);
}
.project-link-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.project-link:hover .project-link-arrow {
  border-color: var(--accent);
  transform: rotate(45deg);
}

/* featured card */
.project-card.featured {
  grid-column: span 2;
  background: var(--surface);
}
.project-card.featured .project-name {
  font-size: 1.4rem;
}
.project-featured-badge {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(200, 245, 68, 0.12);
  color: var(--accent);
  border: 1px solid rgba(200, 245, 68, 0.25);
  padding: 4px 10px;
}

/* ══════════════════════════════
     ABOUT
  ══════════════════════════════ */
.about {
  padding: 110px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
}
.about-title {
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 22px;
}
.about-title .outline {
  -webkit-text-stroke: 1px rgba(240, 237, 232, 0.22);
  color: transparent;
  display: block;
}
.about-text {
  font-size: 0.925rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-box {
  background: var(--bg);
  padding: 36px 30px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ══════════════════════════════
     PROCESS
  ══════════════════════════════ */
.process {
  padding: 110px 48px;
  border-top: 1px solid var(--border);
}
.process-title {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 600;
  margin-bottom: 60px;
  max-width: 520px;
  line-height: 1.18;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.process-step {
  background: var(--bg);
  padding: 36px 28px;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 22px;
}
.process-step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 0.825rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ══════════════════════════════
     CONTACT — redesigned
  ══════════════════════════════ */
.contact-section {
  padding: 110px 48px;
  border-top: 1px solid var(--border);
}

/* Top row: label + title + desc spread full width like services-header */
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 48px;
}
.contact-top-left {
  max-width: 540px;
}
.contact-top-left .section-label {
  margin-bottom: 24px;
}
.contact-title {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0;
}
.contact-title .ghost {
  -webkit-text-stroke: 1.5px rgba(240, 237, 232, 0.18);
  color: transparent;
  display: block;
}
.contact-top-right {
  max-width: 320px;
  padding-top: 6px;
}
.contact-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 0;
}

/* Bottom row: info cards (left) + form (right), same columns as services grid */
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* Info panel */
.contact-info-panel {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  flex: 1;
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-info-item:hover {
  background: #0d0d0d;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.contact-info-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value a:hover {
  color: var(--accent);
}

/* Form panel */
.contact-form-panel {
  background: var(--bg);
  padding: 40px 44px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-input,
.form-textarea {
  font-family: var(--font-geo);
  font-size: 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 15px;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #3a3a3a;
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(200, 245, 68, 0.5);
  background: #0f0f0f;
}
.form-textarea {
  min-height: 120px;
}
.form-select {
  font-family: var(--font-geo);
  font-size: 0.875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.2s;
  cursor: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-select:focus {
  border-color: rgba(200, 245, 68, 0.5);
}
.form-select option {
  background: #111;
  color: var(--text);
}
.btn-submit {
  font-family: var(--font-geo);
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  padding: 15px 32px;
  cursor: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 4px;
}
.btn-submit:hover {
  background: #d6ff52;
  transform: translateY(-1px);
}
.btn-submit:disabled {
  opacity: 0.5;
  transform: none;
}
.btn-submit .spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}
.btn-submit.loading .spinner {
  display: block;
}
.btn-submit.loading .btn-text {
  display: none;
}
.form-success {
  display: none;
  padding: 16px 20px;
  border: 1px solid rgba(200, 245, 68, 0.4);
  background: rgba(200, 245, 68, 0.06);
  color: var(--accent);
  font-size: 0.85rem;
  line-height: 1.7;
}
.form-error {
  display: none;
  padding: 16px 20px;
  border: 1px solid rgba(255, 80, 80, 0.3);
  background: rgba(255, 80, 80, 0.05);
  color: #ff8080;
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.footer-logo span {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}

/* ══════════════════════════════
     ANIMATIONS
  ══════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes growLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }
  .hero {
    padding: 72px 24px 64px;
  }
  .services,
  .projects,
  .about,
  .process,
  .contact-section {
    padding: 72px 24px;
  }
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .services-header,
  .projects-header,
  .contact-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-top-right {
    max-width: 100%;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
  }
  .contact-info-panel {
    order: 2;
  }
  .project-card.featured {
    grid-column: span 1;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .menu-overlay {
    padding: 0 24px;
  }
  .menu-footer {
    left: 24px;
    right: 24px;
  }
  .contact-form-panel {
    padding: 32px 28px;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 0 24px;
  }
  .hero {
    padding: 72px 24px 64px;
    justify-content: flex-start;
  }
  .hero-title {
    padding-top: 72px;
  }
  .services,
  .projects,
  .about,
  .process,
  .contact-section {
    padding: 72px 24px;
  }
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .services-header,
  .projects-header,
  .contact-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-top-right {
    max-width: 100%;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
  }
  .project-card.featured {
    grid-column: span 1;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .hero-bottom {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .hero-scroll {
    margin-top: 240px;
  }
  .menu-overlay {
    padding: 0 24px;
  }
  .menu-footer {
    left: 24px;
    right: 24px;
  }
  .contact-form-panel {
    padding: 32px 28px;
  }
  .stat-box {
    padding: 8px 8px;
  }
}
