:root {
  --bg: #0d1b2a;
  --bg2: #0f2235;
  --surface: #112840;
  --accent1: #3d6fff;
  --accent2: #c96dff;
  --accent-grad: linear-gradient(135deg, #c96dff 0%, #3d6fff 100%);
  --text: #e8f0fe;
  --muted: #7a9bbf;
  --border: rgba(61, 111, 255, 0.18);
  --glow: rgba(61, 111, 255, 0.25);
}

*,
*::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;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── CURSOR ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--accent1);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(61, 111, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s ease,
    width 0.3s,
    height 0.3s;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.logo-icon {
  width: 34px;
  height: 30px;
  position: relative;
  flex-shrink: 0;
}
.logo-img {
  width: 100%;
  height: 90%;
  margin-top: -5px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 0.55rem 1.3rem;
  background: var(--accent-grad);
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  transition:
    opacity 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 5% 60px;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb1 {
  width: 500px;
  height: 500px;
  background: rgba(61, 111, 255, 0.18);
  top: -100px;
  right: -80px;
  animation: float1 8s ease-in-out infinite;
}
.orb2 {
  width: 380px;
  height: 380px;
  background: rgba(201, 109, 255, 0.12);
  bottom: 0;
  left: -60px;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(20px) scale(0.97);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 111, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  color: #8fb4ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  background: var(--accent1);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-title .grad {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--accent-grad);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(61, 111, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(61, 111, 255, 0.5);
}

.btn-ghost {
  padding: 0.85rem 2rem;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.6s 1.2s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent1), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── STATS ── */
#stats {
  padding: 4rem 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* ── SERVICES ── */
#services {
  padding: 8rem 5%;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 111, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.service-card:hover::before {
  opacity: 0.04;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(61, 111, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.service-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.service-desc {
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ── PROJECTS ── */
#projects {
  padding: 8rem 5%;
  background: rgba(255, 255, 255, 0.015);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.project-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}
.project-thumb img {
  width: 100%;
}
.project-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(61, 111, 255, 0.2);
  border: 1px solid rgba(61, 111, 255, 0.3);
  color: #8fb4ff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-body {
  padding: 1.5rem;
}
.project-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.project-desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.project-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.stack-pill {
  background: rgba(61, 111, 255, 0.1);
  border: 1px solid rgba(61, 111, 255, 0.2);
  color: var(--muted);
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

/* ── PROCESS ── */
#process {
  padding: 8rem 5%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    var(--border),
    transparent
  );
}

.process-step {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.step-num::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bg);
  z-index: -1;
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: var(--accent-grad);
  z-index: -2;
}

.step-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-desc {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ── ABOUT ── */
#about {
  padding: 8rem 5%;
  background: rgba(255, 255, 255, 0.015);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 380px;
}

.about-card {
position: absolute;

    border-radius: 16px;
    padding: 1.5rem;
}
.about-card-main {
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 2.5rem;
}
.about-logo-big {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  position: relative;
}
.about-logo-big img {
  width: 100%;
}
.brand-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-tagline {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.about-card-sm1 {
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.sm-icon {
  font-size: 1.5rem;
}
.sm-label {
  font-size: 0.75rem;
  color: var(--muted);
}
.sm-val {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.about-card-sm2 {
  bottom: 20px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.about-text .section-sub {
  max-width: 100%;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.skill-tag {
  background: rgba(61, 111, 255, 0.1);
  border: 1px solid rgba(61, 111, 255, 0.2);
  color: #8fb4ff;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── CONTACT ── */
#contact {
  padding: 8rem 5%;
}

.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: rgba(61, 111, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(61, 111, 255, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select option {
  background: var(--bg);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent-grad);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(61, 111, 255, 0.3);
  letter-spacing: 0.03em;
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(61, 111, 255, 0.5);
}

/* ── SOCIAL LINKS ── */
.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition:
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.social-link:hover {
  color: var(--text);
  border-color: rgba(61, 111, 255, 0.4);
  transform: translateY(-3px);
}

/* ── FOOTER ── */
footer {
  background: #080f18;
  border-top: 1px solid var(--border);
  padding: 0;
}
.footer-inner {
  padding: 5rem 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.fsocial {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.fsocial:hover {
  color: var(--text);
  border-color: var(--accent1);
  background: rgba(61, 111, 255, 0.1);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--accent1);
  padding-left: 4px;
}
.footer-links span {
  color: var(--muted);
  font-size: 0.875rem;
}

.fc-icon {
  color: var(--accent1);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border),
    transparent
  );
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.82rem;
}
.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--accent1);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    height: auto;
    min-height: 280px;
  }
  .about-card-main {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
  .about-card-sm1 {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
  }
  .about-card-sm2 {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
  }
  .about-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .about-cards-row {
    display: flex;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.2rem;
    z-index: 99;
  }
  .nav-links.open li {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }
  .nav-links.open a {
    font-size: 1.1rem;
    color: var(--text);
  }

  #hero {
    padding: 100px 5% 80px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .hero-sub {
    font-size: 1rem;
  }
  .btn-primary,
  .btn-ghost {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  #stats {
    padding: 3rem 5%;
  }
  .stats-grid {
    gap: 1.5rem 2rem;
  }
  .stat-num {
    font-size: 2rem;
  }

  #services {
    padding: 5rem 5%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }

  #projects {
    padding: 5rem 5%;
  }
<<<<<<< HEAD

  .projects-grid {
=======
 .projects-grid {
>>>>>>> a3faa6fa3450da268bfafc14bc769a6007d70392
    grid-template-columns: 1fr;
    max-height: 57vh;
    overflow: auto;

  }

  #process {
    padding: 5rem 5%;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }

  #about {
    padding: 5rem 5%;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .about-card-main {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
  .about-card-sm1,
  .about-card-sm2 {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .about-cards-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  #contact {
    padding: 5rem 5%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 2rem 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .social-row {
    flex-direction: column;
    align-items: center;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
}
