:root {
  --bg: #060812;
  --bg-deep: #03050c;
  --surface: #0d1424;
  --surface-2: #111b2f;
  --surface-3: #16233a;
  --text: #f7fbff;
  --muted: #94a8bd;
  --soft: #c9d6e2;
  --orange: #ff7a18;
  --magenta: #ff2f7d;
  --cyan: #19d3c5;
  --yellow: #ffbf2f;
  --green: #1fdf75;
  --blue: #246bfe;
  --violet: #8b5cf6;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.075);
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(140deg, rgba(255, 122, 24, 0.10), transparent 26%),
    linear-gradient(320deg, rgba(25, 211, 197, 0.08), transparent 32%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -15% 8% -15%;
  height: 34vh;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(100deg, transparent 18%, rgba(25, 211, 197, 0.12) 42%, transparent 58%),
    linear-gradient(108deg, transparent 28%, rgba(255, 122, 24, 0.13) 49%, transparent 64%);
  filter: blur(1px);
  transform: translate3d(-8%, 0, 0) skewY(-8deg);
  animation: pageSweep 16s ease-in-out infinite alternate;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(25, 211, 197, 0.32);
  color: var(--text);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 22px;
  align-content: center;
  background: var(--bg-deep);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.loader__brand {
  background: linear-gradient(90deg, var(--text), var(--cyan), var(--orange), var(--text));
  background-size: 220% 100%;
  background-clip: text;
  color: transparent;
  font-size: 34px;
  font-weight: 850;
  animation: brandGlow 2s ease-in-out infinite alternate;
}

.loader__bar {
  width: 220px;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.loader__bar span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--magenta), var(--cyan));
  border-radius: inherit;
  animation: loadBar 900ms ease-in-out infinite alternate;
}

body.is-loaded .loader {
  display: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 14px 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  transform: translateX(-50%);
}

.site-header.is-scrolled,
.site-header.nav-open {
  border-color: var(--line);
  background: rgba(6, 8, 18, 0.84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: conic-gradient(from 230deg, var(--orange), var(--magenta), var(--cyan), var(--orange));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 10px 32px rgba(255, 122, 24, 0.26);
}

.brand__text {
  font-size: 18px;
}

.brand__text strong {
  color: var(--cyan);
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0;
}

.header-cta {
  padding: 0 25px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--magenta));
  box-shadow: 0 14px 34px rgba(255, 47, 125, 0.24);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease;
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 116px 0;
  scroll-margin-top: 112px;
}

.hero {
  width: min(1240px, calc(100% - 40px));
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 54px;
  padding-top: 132px;
}

.hero__texture {
  position: absolute;
  inset: 70px -9% 0;
  z-index: -1;
  opacity: 0.9;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 17px),
    linear-gradient(90deg, rgba(36, 107, 254, 0.12), transparent 35%, rgba(255, 122, 24, 0.12));
  transform: skewY(-7deg);
}

.hero__shard {
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(25, 211, 197, 0.28), rgba(255, 47, 125, 0.08));
  transform: rotate(32deg);
  animation: floatShard 6s ease-in-out infinite;
}

.hero__shard--one {
  right: 9%;
  top: 86px;
}

.hero__shard--two {
  left: -100px;
  bottom: 70px;
  width: 140px;
  height: 320px;
  background: linear-gradient(180deg, rgba(255, 191, 47, 0.24), rgba(36, 107, 254, 0.08));
  animation-delay: -2s;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 710px;
  margin-bottom: 24px;
  font-size: 74px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 11px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 615px;
  margin-bottom: 34px;
  color: var(--soft);
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 42px;
}

.btn {
  min-width: 174px;
  padding: 0 24px;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--magenta));
  box-shadow: 0 18px 44px rgba(255, 47, 125, 0.23);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.btn__icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__metrics div {
  padding: 20px 18px 20px 0;
}

.hero__metrics div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero__metrics strong {
  display: block;
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
}

.hero__metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.hero__visual {
  position: relative;
  min-width: 0;
  transform-style: preserve-3d;
  transition: transform 180ms ease-out;
}

.hero__copy {
  min-width: 0;
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: var(--radius);
}

.hero__visual::before {
  inset: -18px 10% auto auto;
  width: 52%;
  height: 34%;
  border: 1px solid rgba(25, 211, 197, 0.28);
  transform: translateZ(-24px) rotate(5deg);
}

.hero__visual::after {
  left: -20px;
  bottom: 9%;
  width: 42%;
  height: 18%;
  background:
    linear-gradient(90deg, rgba(255, 122, 24, 0.28), transparent 68%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 18px);
  opacity: 0.48;
  transform: translateZ(32px) skewX(-12deg);
  animation: signalDrift 4.6s ease-in-out infinite;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.36));
}

.hero-note {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 156px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 8, 17, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-note span {
  color: var(--muted);
  font-size: 13px;
}

.hero-note strong {
  color: var(--text);
  font-size: 27px;
}

.hero-note--top {
  top: 12%;
  right: 1%;
}

.hero-note--bottom {
  left: 2%;
  bottom: 13%;
}

.logo-ribbon {
  overflow: hidden;
  contain: paint;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.logo-ribbon__track {
  display: flex;
  width: max-content;
  gap: 44px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 800;
  animation: marquee 22s linear infinite;
}

.logo-ribbon__track::before,
.logo-ribbon__track::after {
  content: "Restoran Klinik E-ticaret Güzellik merkezi İnşaat Danışmanlık Otel Portfolyo";
  word-spacing: 44px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 66px;
  align-items: end;
  padding-bottom: 54px;
}

.split__copy {
  color: var(--soft);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--yellow);
  font-weight: 850;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.value-card,
.service-card,
.project-card,
.timeline-item,
.price-card,
.contact-form {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.value-card:hover,
.service-card:hover,
.project-card:hover,
.timeline-item:hover,
.price-card:hover {
  border-color: rgba(25, 211, 197, 0.32);
  transform: translateY(-5px);
}

.value-card {
  min-height: 246px;
  padding: 32px;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan), transparent);
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 260ms ease;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card__index {
  display: block;
  margin-bottom: 54px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.value-card p,
.service-card p,
.project-card p,
.timeline-item p,
.price-card p,
.contact__copy p {
  color: var(--muted);
}

.section-heading {
  max-width: 840px;
}

.services .section-heading,
.seo-panel .section-heading,
.projects .section-heading,
.service-areas .section-heading,
.pricing .section-heading,
.process .section-heading,
.faq .section-heading {
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.95;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.service-card:hover img,
.project-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.16) contrast(1.04);
}

.service-card div {
  padding: 24px;
}

.service-card h3 {
  margin-bottom: 8px;
}

.seo-panel {
  width: min(1240px, calc(100% - 40px));
}

.seo-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-feature,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(25, 211, 197, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.032));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.seo-feature {
  min-height: 280px;
  padding: 30px;
}

.seo-feature span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.16);
  color: var(--yellow);
  font-weight: 900;
}

.seo-feature p,
.seo-checklist li,
.area-grid p,
.faq-item p {
  color: var(--muted);
}

.seo-checklist {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(25, 211, 197, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 122, 24, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.045);
}

.seo-checklist strong {
  color: var(--text);
  font-size: 24px;
  line-height: 1.2;
}

.seo-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-checklist li {
  position: relative;
  padding-left: 24px;
}

.seo-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.projects {
  width: min(1280px, calc(100% - 40px));
  contain: paint;
}

.projects__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 46px;
}

.icon-btn {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.project-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 430px;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  cursor: grab;
  user-select: none;
}

.project-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.project-card {
  overflow: hidden;
  scroll-snap-align: start;
}

.project-card img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.project-card__body {
  padding: 24px;
}

.project-card__body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 850;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.stat {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background:
    linear-gradient(145deg, rgba(255, 122, 24, 0.10), transparent 44%),
    var(--surface);
  text-align: center;
}

.stat strong {
  color: var(--yellow);
  font-size: 58px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  min-height: 260px;
  padding: 28px;
}

.timeline-item span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(25, 211, 197, 0.13);
  color: var(--cyan);
  font-weight: 900;
}

.service-areas {
  padding-top: 88px;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 42px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(36, 107, 254, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
}

.area-grid p {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
}

.price-card--featured {
  overflow: hidden;
  border-color: rgba(25, 211, 197, 0.55);
  background:
    linear-gradient(180deg, rgba(25, 211, 197, 0.14), rgba(255, 255, 255, 0.04)),
    var(--surface);
}

.price-card--featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--magenta), var(--cyan));
}

.price-card__label {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin: 8px 0 22px;
  color: var(--text);
  font-size: 36px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--soft);
}

.price-card li {
  position: relative;
  padding-left: 25px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

.price-card .btn {
  margin-top: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  padding: 24px 26px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.3;
}

.faq-item summary::marker {
  color: var(--cyan);
}

.faq-item p {
  margin: 16px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.7fr);
  gap: 62px;
  align-items: start;
}

.contact__copy h2 {
  margin-bottom: 22px;
}

.contact__copy p {
  max-width: 590px;
  font-size: 18px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-lines a {
  color: var(--text);
  font-size: 21px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  outline: 0;
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  padding: 15px 16px;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(25, 211, 197, 0.68);
  box-shadow: 0 0 0 4px rgba(25, 211, 197, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--soft);
  font-weight: 800;
}

.whatsapp-float,
.top-button {
  position: fixed;
  right: 24px;
  z-index: 45;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.whatsapp-float {
  bottom: 88px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #18d46b, #0fb958);
}

.top-button {
  bottom: 24px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loadBar {
  from {
    transform: translateX(-72%);
  }
  to {
    transform: translateX(182%);
  }
}

@keyframes pageSweep {
  from {
    opacity: 0.32;
    transform: translate3d(-8%, 0, 0) skewY(-8deg);
  }
  to {
    opacity: 0.62;
    transform: translate3d(8%, -4%, 0) skewY(-8deg);
  }
}

@keyframes brandGlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes signalDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 32px) skewX(-12deg);
  }
  50% {
    transform: translate3d(18px, -10px, 32px) skewX(-12deg);
  }
}

@keyframes floatShard {
  0%,
  100% {
    transform: translateY(0) rotate(32deg);
  }
  50% {
    transform: translateY(-18px) rotate(35deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(-12%);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    justify-self: stretch;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 8, 18, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .site-nav a {
    padding: 13px 6px;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 142px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    max-width: 760px;
    margin: 0 auto;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .service-grid,
  .seo-panel__grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-checklist,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header,
  .section,
  .hero,
  .projects,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 122px;
    gap: 38px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 21px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions,
  .btn {
    width: 100%;
  }

  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .hero__metrics div,
  .hero__metrics div + div {
    padding: 16px 0;
    border-left: 0;
  }

  .hero__metrics div + div {
    border-top: 1px solid var(--line);
  }

  .hero-note {
    position: static;
    margin-top: 12px;
  }

  .split,
  .value-grid,
  .service-grid,
  .seo-panel__grid,
  .seo-checklist,
  .seo-checklist ul,
  .pricing-grid,
  .timeline,
  .area-grid,
  .faq-grid,
  .contact {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .projects__head {
    display: grid;
  }

  .slider-controls {
    margin: 0 0 24px;
  }

  .project-slider {
    grid-auto-columns: 86%;
  }

  .project-card img {
    height: 220px;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .value-card,
  .seo-feature,
  .seo-checklist,
  .area-grid,
  .faq-item,
  .timeline-item,
  .price-card,
  .contact-form {
    padding: 24px;
  }

  .contact-lines a {
    font-size: 18px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 82px;
  }

  .top-button {
    right: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
