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

/* Accessibility — focus styles for keyboard users */
*:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent, #4f46e5);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

:root {
  /* Warm off-white palette */
  --bg:        #fafaf8;
  --bg-2:      #f2f2ed;
  --navy:      #1a1f3c;
  --blue:      #3730a3;
  --accent:    #4f46e5;
  --accent-2:  #6366f1;
  /* Dark section palette */
  --dark:      #0f1117;
  --dark-2:    #161b2e;
  /* Grays */
  --gray-100:  #ebebE6;
  --gray-200:  #e0e0d8;
  --gray-300:  #c8c8c0;
  --gray-500:  #8a8a80;
  --gray-700:  #4a4a42;
  --text:      #1a1f3c;
  /* Utilities */
  --radius:    12px;
  --shadow:    0 4px 24px rgba(26,31,60,.07);
  --shadow-lg: 0 16px 56px rgba(26,31,60,.13);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

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

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

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

.section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label--light { color: var(--accent-2); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}
.section-title--light { color: #fff; }

.section-sub {
  margin-top: 10px;
  font-size: .9rem;
  color: var(--gray-500);
}
.section-sub--light { color: rgba(255,255,255,.45); }

.section-header { text-align: center; margin-bottom: 60px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition),
              background var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: 0 2px 20px rgba(26,31,60,.06);
}
/* Nav on dark sections */
.nav.on-dark {
  background: rgba(15,17,23,.88);
  border-bottom-color: rgba(255,255,255,.06);
}
.nav.on-dark .nav__links a { color: rgba(255,255,255,.65); }
.nav.on-dark .nav__links a:hover { color: #fff; }
.nav.on-dark .nav__logo-img--light { display: none; }
.nav.on-dark .nav__logo-img--dark  { display: block; }
.nav.on-dark .nav__cta { background: var(--accent); color: #fff !important; }
.nav.on-dark .nav__burger span { background: #fff; }

.nav__inner {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: block;
  line-height: 0;
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: .72; }
.nav__logo-img {
  height: 32px;
  width: auto;
}
.nav__logo-img--dark { display: none; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--accent); }
.nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 7px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover { background: var(--blue) !important; transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--bg);
  border-top: 1px solid var(--gray-100);
}
.nav__mobile.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-link:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  background:
    radial-gradient(ellipse 60% 55% at 88% 8%,  rgba(99,102,241,.11) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 10% 90%, rgba(245,158,11,.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 35% at 50% 110%,rgba(79,70,229,.06)  0%, transparent 50%),
    linear-gradient(158deg, #fafaf8 0%, #f3f0fd 52%, #ede8f8 100%);
  position: relative;
  overflow: hidden;
}

/* Thin diagonal line grid — architectural, editorial */
.hero::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    repeating-linear-gradient(
      -52deg,
      transparent,
      transparent 28px,
      rgba(79,70,229,.045) 28px,
      rgba(79,70,229,.045) 29px
    );
  opacity: 1;
  pointer-events: none;
  transform: none;
}

.hero__bg-glow {
  position: absolute;
  top: -15%; right: -8%;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(99,102,241,.13) 0%, rgba(139,92,246,.06) 45%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
/* Second glow bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -8%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(245,158,11,.07) 0%, rgba(79,70,229,.04) 55%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Decorative ring arcs */
.hero__rings {
  position: absolute;
  top: -160px; right: -160px;
  width: 680px; height: 680px;
  pointer-events: none;
}
.hero__rings circle {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.hero__rings-inner {
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  pointer-events: none;
  opacity: .5;
}

.hero__inner {
  width: min(760px, 100% - 48px);
  margin-inline: auto;
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}

.hero__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,70,229,.09);
  border: 1px solid rgba(79,70,229,.15);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -.03em;
}

.hero__accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero__accent::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: .35;
  border-radius: 2px;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 32px;
  font-size: .8rem;
  color: var(--gray-500);
  letter-spacing: .01em;
}
.hero__trust-stars { color: #f59e0b; letter-spacing: .05em; }

.hero__cursor {
  color: var(--accent);
  font-weight: 300;
  font-size: .85em;
  line-height: 1;
  opacity: .8;
  animation: cursorBlink .75s step-end infinite;
  margin-left: 2px;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gray-300), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ===== ABOUT ===== */
.about { background: var(--bg); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.about__photo-wrap {
  width: 220px; height: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(79,70,229,.08);
}
.about__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
}
.about__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
  text-align: center;
  background: var(--bg-2);
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  min-width: 88px;
}
.stat__number { display: block; font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.stat__label { font-size: .7rem; color: var(--gray-500); font-weight: 500; }

.about__content .section-title { margin-bottom: 14px; }
.about__content > p { color: var(--gray-700); margin-bottom: 16px; }
.about__checklist {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-700);
}
.about__checklist li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ===== PROCESS (DARK) ===== */
.process {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
}
/* Diagonal transitions */
.process::before {
  content: '';
  position: absolute;
  top: -56px; left: 0; right: 0;
  height: 57px;
  background: var(--dark);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}
.process::after {
  content: '';
  position: absolute;
  bottom: -56px; left: 0; right: 0;
  height: 57px;
  background: var(--dark);
  clip-path: polygon(0 0%, 100% 0%, 0 100%);
}

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

.process__step {
  text-align: center;
  padding: 0 16px;
}
.process__icon {
  width: 64px; height: 64px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 16px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  position: relative;
}
.process__step-num {
  position: absolute;
  top: -10px; right: -10px;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 800;
  color: #fff;
  display: grid;
  place-items: center;
}
.process__step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.process__step p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

.process__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  color: rgba(99,102,241,.4);
}
.process__arrow svg { width: 20px; height: 20px; }

/* ===== SERVICES ===== */
.services { background: var(--bg-2); padding-top: 140px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg);
  padding: 32px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 46px; height: 46px;
  background: rgba(79,70,229,.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.service-card__icon svg { width: 21px; height: 21px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .875rem; color: var(--gray-700); line-height: 1.65; }

/* ===== PROJECTS ===== */
.projects {
  background: var(--bg);
  position: relative;
}

/* Slightly split header — label+title left, count right */
.projects .section-header {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.projects .section-header__left { display: flex; flex-direction: column; }
.projects .section-sub { margin-top: 8px; }
.projects__count {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: .08em;
  padding-bottom: 4px;
  white-space: nowrap;
}
.projects__example-note {
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(79,70,229,.07);
  border: 1px solid rgba(79,70,229,.18);
  border-radius: 20px;
  padding: 5px 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
}

/* 2-column gallery grid */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(26,31,60,.07);
  box-shadow: 0 2px 8px rgba(26,31,60,.04), 0 1px 2px rgba(26,31,60,.03);
  transition: transform .42s cubic-bezier(.34,1.4,.64,1),
              box-shadow .35s ease,
              border-color .25s ease;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 36px 72px rgba(26,31,60,.13), 0 8px 22px rgba(26,31,60,.07);
  border-color: rgba(79,70,229,.18);
}

/* Project number — top-left corner */
.project-card__num {
  position: absolute;
  top: 16px; left: 20px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  z-index: 3;
  font-family: 'Inter', sans-serif;
}

.project-card__visual {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .38s ease;
}
.project-card:hover .project-card__visual { transform: scale(1.02); }

.project-card__visual--restaurant { background: linear-gradient(140deg, #f5e8d8 0%, #fdf0e6 100%); }
.project-card__visual--fitness    { background: linear-gradient(140deg, #0a0a10 0%, #111118 100%); }
.project-card__visual--immo       { background: linear-gradient(140deg, #dce3f4 0%, #e6eaf7 100%); }
.project-card__visual--saas       { background: linear-gradient(140deg, #060610 0%, #0e0a1f 100%); }

/* Gradient fade overlay — reveals CTA from bottom */
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,14,30,.90) 0%,
    rgba(12,14,30,.50) 42%,
    transparent 75%
  );
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
  padding: 20px 22px;
  color: #fff;
  opacity: 0;
  transition: opacity .28s ease;
}
.project-card:hover .project-card__overlay { opacity: 1; }

/* Pill CTA button inside overlay */
.project-card__overlay svg {
  display: none; /* Icon hidden — we use a styled pill instead */
}
.project-card__overlay span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 7px;
  padding: 9px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
  transform: translateY(6px);
  transition: transform .28s ease .03s, background .2s ease;
}
.project-card__overlay span::after {
  content: '→';
  font-size: .9rem;
  transition: transform .2s ease;
}
.project-card:hover .project-card__overlay span { transform: translateY(0); }
.project-card__overlay span:hover { background: rgba(255,255,255,.22); }
.project-card:hover .project-card__overlay span::after { transform: translateX(3px); }

/* Mockup scales up a touch on hover */
.mockup {
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(0,0,0,.28), 0 4px 12px rgba(0,0,0,.14);
  overflow: hidden;
  transition: transform .42s cubic-bezier(.34,1.4,.64,1);
}
.project-card:hover .mockup { transform: scale(1.06) translateY(-4px); }

.mockup__bar {
  height: 22px;
  background: #e8e8e4;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  position: relative;
}
.mockup__bar span { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.mockup__bar span:nth-child(1) { background: #ff5f57; }
.mockup__bar span:nth-child(2) { background: #febc2e; }
.mockup__bar span:nth-child(3) { background: #28c840; }
.mockup__url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 4px;
  padding: 2px 14px;
  font-size: .5rem;
  color: #888;
  font-family: 'Inter', sans-serif;
  letter-spacing: .02em;
  max-width: 60%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Mockup nav */
.mockup__nav {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

/* Mockup hero area */
.mockup__hero-area {
  padding: 12px 14px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.mockup__btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 6px;
  padding: 3px 9px;
  border-radius: 3px;
  font-size: .48rem;
  font-weight: 700;
  position: relative;
}

/* Mockup cards row */
.mockup__cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px;
}
.mockup__card-mini {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.mockup__card-mini > div:first-child { height: 16px; }
.mockup__card-mini span {
  font-size: .42rem;
  color: #555;
  padding: 3px 4px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mockup stats row */
.mockup__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px;
}
.mockup__stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 5px 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mockup__stat strong { font-size: .55rem; font-weight: 800; }
.mockup__stat span {
  font-size: .42rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Mockup search bar (immo) */
.mockup__search-bar {
  display: flex;
  gap: 3px;
  margin-top: 6px;
  background: rgba(255,255,255,.1);
  padding: 3px;
  border-radius: 4px;
  align-items: center;
}
.mockup__search-field {
  flex: 1;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  padding: 3px 5px;
  font-size: .42rem;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  overflow: hidden;
}
.mockup__search-btn {
  background: #fff;
  color: #1a1f5e;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: .42rem;
  font-weight: 700;
}

/* Card meta & stack pills */
.project-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}
.project-card__year {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: .05em;
}
.project-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(26,31,60,.05);
}
.project-card__stack span {
  font-size: .65rem;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--bg-2);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .02em;
}

/* Card info area */
.project-card__info {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(26,31,60,.06);
}
.project-card__tag {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,70,229,.07);
  padding: 3px 9px;
  border-radius: 4px;
  display: inline-flex;
}
.project-card__info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.project-card__info h3::after {
  content: '↗';
  font-size: .85rem;
  color: var(--gray-300);
  transition: color .2s ease, transform .2s ease;
  flex-shrink: 0;
}
.project-card:hover .project-card__info h3::after {
  color: var(--accent);
  transform: translate(2px, -2px);
}
.project-card__info p {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.6;
}
/* ===== TESTIMONIALS (DARK) ===== */
.testimonials {
  background: var(--dark-2);
  padding: 100px 0;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -56px; left: 0; right: 0;
  height: 57px;
  background: var(--dark-2);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: -56px; left: 0; right: 0;
  height: 57px;
  background: var(--dark-2);
  clip-path: polygon(0 0%, 100% 0%, 0 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), background var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
}
.testimonial-card__stars { color: #f59e0b; font-size: 1rem; letter-spacing: .08em; }
.testimonial-card__text {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.testimonial-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: .875rem; font-weight: 600; color: #fff; }
.testimonial-card__author span { font-size: .75rem; color: rgba(255,255,255,.35); }

/* ===== PRICING ===== */
.pricing { background: var(--bg-2); padding-top: 140px; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  background: var(--navy);
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing-card__header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__header h3 { color: #fff; }
.pricing-card__header p { font-size: .8rem; color: var(--gray-500); margin-bottom: 20px; }
.pricing-card--featured .pricing-card__header p { color: rgba(255,255,255,.45); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card--featured .pricing-card__price { border-bottom-color: rgba(255,255,255,.1); }
.pricing-card__from { font-size: .85rem; color: var(--gray-500); }
.pricing-card--featured .pricing-card__from { color: rgba(255,255,255,.45); }
.pricing-card__amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
}
.pricing-card--featured .pricing-card__amount { color: #fff; }

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-card__features li {
  font-size: .875rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,.68); }
.pricing-card__features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(79,70,229,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card--featured .pricing-card__features li::before {
  background-color: rgba(99,102,241,.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.pricing__note {
  text-align: center;
  margin-top: 40px;
  font-size: .82rem;
  color: var(--gray-500);
}

/* ===== CONTACT ===== */
.contact { background: var(--bg); padding-top: 140px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section-title { margin-bottom: 14px; }
.contact__info p { color: var(--gray-700); margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.contact__item:hover { color: var(--accent); }
.contact__item svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact__form {
  background: var(--bg);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-700); letter-spacing: .02em; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 15px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a80' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
  color: var(--text);
}
.form-group select option[value=""] { color: var(--gray-500); }
.form-group select.plan-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,.18);
  transition: border-color .2s, box-shadow .2s;
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #fff; padding: 40px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__left { display: flex; flex-direction: column; gap: 8px; }
.footer__logo {
  font-size: .95rem;
  font-weight: 800;
  background: rgba(255,255,255,.08);
  padding: 7px 12px;
  border-radius: 6px;
  letter-spacing: .04em;
  align-self: flex-start;
}
.footer__logo-img {
  height: 36px;
  width: auto;
  opacity: .92;
}
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.5);
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: rgba(255,255,255,.12); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer__links a:hover { color: rgba(255,255,255,.7); }

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,12,30,.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal__window {
  position: relative;
  width: min(900px, 100%);
  max-height: 85vh;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.modal.open .modal__window { transform: translateY(0) scale(1); }
.modal__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 44px;
  background: #e8eaed;
  border-bottom: 1px solid #d1d5db;
  flex-shrink: 0;
}
.modal__traffic { display: flex; gap: 6px; align-items: center; }
.tl { width: 12px; height: 12px; border-radius: 50%; }
.tl-r { background: #ff5f57; }
.tl-y { background: #febc2e; }
.tl-g { background: #28c840; }
.modal__address {
  flex: 1;
  background: rgba(0,0,0,.08);
  border-radius: 6px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .75rem;
  color: #555;
  font-family: inherit;
}
.modal__close {
  width: 32px; height: 32px;
  border: none;
  background: rgba(0,0,0,.08);
  border-radius: 6px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #555;
  transition: background var(--transition);
  flex-shrink: 0;
}
.modal__close:hover { background: rgba(0,0,0,.15); color: #000; }
.modal__close svg { width: 14px; height: 14px; }
.modal__body { overflow-y: auto; flex: 1; font-family: 'Inter', sans-serif; line-height: 1.5; }

/* ===== FADE-IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

.service-card:nth-child(1), .project-card:nth-child(1),
.process__step:nth-child(1), .testimonial-card:nth-child(1),
.pricing-card:nth-child(1) { transition-delay: 0s; }

.service-card:nth-child(2), .project-card:nth-child(2),
.process__step:nth-child(3), .testimonial-card:nth-child(2),
.pricing-card:nth-child(2) { transition-delay: .08s; }

.service-card:nth-child(3), .project-card:nth-child(3),
.process__step:nth-child(5), .testimonial-card:nth-child(3),
.pricing-card:nth-child(3) { transition-delay: .16s; }

.service-card:nth-child(4), .project-card:nth-child(4) { transition-delay: .24s; }

/* ===== CURSOR-REACTIVE AMBIENT BACKGROUND ===== */
/* Sits ON TOP of all content (pointer-events:none) and uses screen blend
   so it adds a subtle wash of light — visible on dark sections and gentle
   on light ones, without each section's solid bg covering it. */
.cursor-aura {
  position: fixed;
  inset: 0;
  z-index: 150;          /* above content (z:1) and nav (z:100), below modals (z:200) */
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
  /* Default to center until first mousemove */
  --mx: 50vw;
  --my: 40vh;
  --mx2: 50vw;
  --my2: 40vh;
  /* Tint controls — JS swaps these on dark sections */
  --aura-a: rgba(70, 60, 180, .10);
  --aura-b: rgba(40, 90, 200, .06);
  --aura-c: rgba(180, 140, 60, .04);
  transition: --aura-a .6s ease, --aura-b .6s ease, --aura-c .6s ease;
}

.cursor-aura__spot {
  position: absolute;
  top: 0; left: 0;
  width: 900px; height: 900px;
  margin: -450px 0 0 -450px;
  border-radius: 50%;
  transform: translate3d(var(--mx), var(--my), 0);
  will-change: transform;
}
.cursor-aura__spot--a {
  background: radial-gradient(circle at center,
              var(--aura-a) 0%,
              transparent 62%);
}
.cursor-aura__spot--b {
  width: 1300px; height: 1300px;
  margin: -650px 0 0 -650px;
  transform: translate3d(var(--mx2), var(--my2), 0);
  background: radial-gradient(circle at center,
              var(--aura-b) 0%,
              var(--aura-c) 38%,
              transparent 68%);
  opacity: .9;
}

/* Very subtle moving grain so the gradient isn't dead-flat. Optional. */
.cursor-aura__grain {
  position: absolute;
  inset: -100px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .04;
  pointer-events: none;
}

/* Make body element layering aware — content sits above the body but below the aura */
.hero, section, footer { position: relative; z-index: 1; }
.nav { z-index: 100; }
.modal { z-index: 250; } /* above the aura */

/* On dark sections the aura glows brighter / cooler */
body.on-dark .cursor-aura {
  --aura-a: rgba(120, 130, 255, .18);
  --aura-b: rgba(90, 160, 255, .09);
  --aura-c: rgba(180, 100, 220, .05);
}

@media (prefers-reduced-motion: reduce) {
  .cursor-aura__spot { transition: none; }
  .cursor-aura__grain { display: none; }
}

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width .18s ease, height .18s ease, background .18s ease, opacity .2s ease;
  opacity: 0;
}
.cursor-dot.visible { opacity: 1; }

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(79,70,229,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width .22s ease, height .22s ease, border-color .22s ease,
              background .22s ease, opacity .25s ease;
  opacity: 0;
}
.cursor-ring.visible { opacity: 1; }

/* Hover state — ring expands + tints, dot grows */
body.cursor-hover .cursor-dot {
  width: 11px; height: 11px;
  background: var(--blue);
}
body.cursor-hover .cursor-ring {
  width: 54px; height: 54px;
  border-color: rgba(79,70,229,.2);
  background: rgba(79,70,229,.04);
}

/* Click flash */
body.cursor-click .cursor-dot {
  width: 5px; height: 5px;
  background: var(--accent-2);
}
body.cursor-click .cursor-ring {
  width: 28px; height: 28px;
  border-color: rgba(79,70,229,.6);
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 60%, rgba(139,92,246,.8) 100%);
  z-index: 9997;
  pointer-events: none;
  transition: width .08s linear;
  box-shadow: 0 0 8px rgba(79,70,229,.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: none;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(26,31,60,.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease, box-shadow .2s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--accent);
  box-shadow: 0 6px 24px rgba(79,70,229,.35);
  transform: translateY(-2px);
}
.back-to-top svg { width: 18px; height: 18px; }

/* ===== PROCESS — refined icons ===== */
.process__icon {
  width: 72px; height: 72px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.22);
  border-radius: 18px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  position: relative;
  transition: background .3s ease, box-shadow .3s ease;
}
.process__step:hover .process__icon {
  background: rgba(99,102,241,.2);
  box-shadow: 0 0 28px rgba(99,102,241,.2);
}
.process__icon svg {
  width: 26px; height: 26px;
  stroke: rgba(180,180,255,.9);
}
.process__step-num {
  position: absolute;
  top: -10px; right: -10px;
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 8px;
  font-size: .62rem;
  font-weight: 800;
  color: #fff;
  display: grid;
  place-items: center;
  letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(79,70,229,.4);
}

/* ===== ABOUT — richer photo placeholder ===== */
.about__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #0f1117 0%, #1e1b4b 45%, #3730a3 100%);
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,.92);
  letter-spacing: .06em;
  position: relative;
  overflow: hidden;
}
.about__photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
}
.about__photo-placeholder::after {
  content: '';
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.5) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* Bring text above pseudo-elements */
.about__photo-placeholder > * { position: relative; z-index: 1; }

.about__photo-wrap {
  width: 220px; height: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg),
              0 0 0 1px rgba(79,70,229,.12),
              0 0 48px rgba(79,70,229,.08);
}
/* Real photo in about section */
.about__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Services — subtle photo texture (dev-2.jpeg) */
.services { position: relative; }
.services__photo-bg {
  position: absolute; inset: 0;
  background: url(img/dev-2.jpeg) center/cover no-repeat;
  opacity: 0.055;
  z-index: 0;
  pointer-events: none;
}
.services .container { position: relative; z-index: 1; }

/* Contact — planning.jpeg als Hintergrundtextur */
.contact { position: relative; }
.contact__photo-bg {
  position: absolute; inset: 0;
  background: url(img/planning.jpeg) center/cover no-repeat;
  opacity: 0.045;
  z-index: 0;
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .process__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process__arrow { display: none; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .services { padding-top: 120px; }
  .contact { padding-top: 120px; }
  .pricing { padding-top: 120px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.6rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .projects .section-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .projects__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 24px 18px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__right { align-items: flex-start; }
  .modal { padding: 10px; }
  .modal__window { max-height: 92vh; border-radius: 10px; }
}
