:root {
  --bg: #070b14;
  --bg-2: #0b1220;
  --body-bg:
    radial-gradient(circle at 20% 0%, rgba(77, 163, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #070b14 0%, #09111f 45%, #07101d 100%);
  --hero-bg:
    radial-gradient(circle at 50% 72%, rgba(77, 163, 255, 0.12), transparent 25%),
    linear-gradient(180deg, #070b14 0%, #08101d 46%, #07101d 100%);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.08);
  --header-bg: rgba(7, 11, 20, 0.72);
  --header-line: rgba(255, 255, 255, 0.06);
  --grid-line: rgba(255, 255, 255, 0.04);
  --grid-mask: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.14));
  --inverted-bg: #fff;
  --inverted-bg-hover: #f1f5fb;
  --inverted-text: #07101f;
  --hero-title: #fff;
  --soft-text: #dce6f7;
  --list-text: #d9e2f5;
  --label-bg: rgba(7, 16, 31, 0.78);
  --label-text: #eff5ff;
  --field-label: #d6e1f3;
  --footer-line: rgba(255, 255, 255, 0.06);
  --text: #f4f7fb;
  --muted: #a8b1c3;
  --primary: #4da3ff;
  --primary-2: #8fd3ff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --container: 1180px;
}

:root.theme-light {
  --bg: #f6f8fc;
  --bg-2: #e9f2ff;
  --body-bg:
    radial-gradient(circle at 20% 0%, rgba(77, 163, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #f7f9fd 100%);
  --hero-bg:
    radial-gradient(circle at 50% 72%, rgba(77, 163, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 46%, #f7f9fd 100%);
  --panel: rgba(255, 255, 255, 0.72);
  --panel-2: rgba(255, 255, 255, 0.9);
  --line: rgba(15, 23, 42, 0.12);
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --surface-hover: rgba(77, 163, 255, 0.12);
  --surface-border: rgba(15, 23, 42, 0.1);
  --header-bg: rgba(248, 251, 255, 0.84);
  --header-line: rgba(15, 23, 42, 0.1);
  --grid-line: rgba(15, 23, 42, 0.06);
  --grid-mask: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.2));
  --inverted-bg: #101828;
  --inverted-bg-hover: #1d2939;
  --inverted-text: #ffffff;
  --hero-title: #0f172a;
  --soft-text: #334155;
  --list-text: #263245;
  --label-bg: rgba(15, 23, 42, 0.76);
  --label-text: #ffffff;
  --field-label: #253247;
  --footer-line: rgba(15, 23, 42, 0.1);
  --text: #101828;
  --muted: #526071;
  --primary: #1677d2;
  --primary-2: #0b6cc8;
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--body-bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section {
  padding: 92px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}
.grid { display: grid; gap: 24px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary-2);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 14px rgba(77, 163, 255, 0.85);
}

.section-title {
  margin: 0 0 16px;
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.97;
  text-transform: uppercase;
}

.section-lead {
  margin: 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 1.02rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--primary), #2f8ded);
  color: #fff;
  box-shadow: 0 18px 34px rgba(47, 141, 237, 0.28);
}
.button-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}
.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfe5ff;
  font-size: 0.92rem;
  font-weight: 700;
}
.verified svg { width: 18px; height: 18px; flex: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: 78px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  backdrop-filter: blur(14px);
}
.header-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(77, 163, 255, 0.18);
  flex: none;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 3px;
}
.brand-verified {
  display: inline-flex;
  align-items: center;
  color: #5aa9ff;
  white-space: nowrap;
}
.brand-verified svg { width: 15px; height: 15px; flex: none; }
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav a:hover,
.nav a.active {
  background: var(--surface-strong);
  color: var(--text);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.lang-btn {
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.active {
  background: rgba(77, 163, 255, 0.15);
  color: var(--text);
}
.header-cta {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--inverted-bg);
  color: var(--inverted-text);
  border: 1px solid var(--inverted-bg);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.header-cta:hover {
  transform: translateY(-1px);
  background: var(--inverted-bg-hover);
}
.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle::before { margin-bottom: 5px; }
.menu-toggle::after { margin-top: 5px; }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero-clean {
  position: relative;
  overflow: hidden;
  padding: 36px 0 84px;
  background: var(--hero-bg);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 104px 104px;
  mask-image: var(--grid-mask);
  pointer-events: none;
}
.hero-shell {
  position: relative;
  z-index: 2;
}
.hero-chip {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 8px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(12px);
}
.hero-chip span {
  color: var(--soft-text);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0 10px;
}
.hero-chip a {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--inverted-bg);
  color: var(--inverted-text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-chip a:hover {
  transform: translateY(-1px);
  background: var(--inverted-bg-hover);
}
.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--hero-title);
  text-wrap: balance;
}
.hero-copy p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hero-btn:hover { transform: translateY(-2px); }
.hero-btn-dark {
  background: var(--inverted-bg);
  color: var(--inverted-text);
  border: 1px solid var(--inverted-bg);
}
.hero-btn-dark:hover { background: var(--inverted-bg-hover); }
.hero-btn-light {
  background: var(--surface);
  color: var(--soft-text);
  border: 1px solid var(--surface-border);
}
.hero-btn-light:hover {
  background: var(--surface-hover);
  color: var(--text);
}
.hero-services-short {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.hero-service-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.hero-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 163, 255, 0.32);
  background: var(--surface-strong);
}
.hero-service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(77, 163, 255, 0.18);
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-service-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-service-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}
.hero-link {
  color: var(--text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.hero-service-card:hover .hero-link::after {
  transform: translateX(3px);
}

/* Content sections */
.skills-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}
.skill-card { padding: 24px; text-align: left; }
.skill-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(77, 163, 255, 0.22);
  color: var(--primary-2);
  margin-bottom: 18px;
}
.skill-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skill-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.skill-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}
.service-block {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-block h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.service-block p {
  margin: 0;
  color: var(--muted);
}
.service-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}
.service-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--list-text);
}
.compact-row { margin-top: 4px; }

.project-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.project-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.project-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  background: var(--surface);
}
.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 31, 0.02) 0%, rgba(7, 16, 31, 0.18) 100%);
  pointer-events: none;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
}
.project-card:hover .project-thumb img { transform: scale(1.03); }
.project-thumb-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--label-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--label-text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}
.project-card h3 { margin: 0 0 8px; }
.project-card p {
  min-height: 112px;
  margin: 0 0 14px;
  line-height: 1.42;
  font-size: 0.97rem;
  color: var(--muted);
}
.project-link { margin-top: auto; align-self: flex-start; }
.button-ghost.project-link:hover {
  background: rgba(77, 163, 255, 0.08);
  border-color: rgba(77, 163, 255, 0.35);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(77, 163, 255, 0.16);
}
.is-soft-thumb img { object-position: center; }

.plans-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
}
.plan-card {
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.plan-card.featured {
  border-color: rgba(181, 177, 176, 0.72);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(181, 177, 176, 0.08);
}
.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.plan-card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.plan-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #2f8ded);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 22px rgba(47, 141, 237, 0.28);
}
.plan-price {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.plan-price del {
  color: rgba(168, 177, 195, 0.72);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
}
.plan-price-final {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-price-final strong {
  font-family: "Anton", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.plan-price-final span {
  color: var(--muted);
  font-weight: 600;
}
.plan-price-note {
  margin: -4px 0 14px;
  color: var(--primary-2);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}
.plan-card p {
  margin: 0 0 16px;
  color: var(--muted);
  min-height: 72px;
}
.plan-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.plan-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--list-text);
  font-size: 0.95rem;
}
.plan-list li::before {
  content: "•";
  color: var(--primary-2);
  font-size: 1.1rem;
  line-height: 1.2;
}
.payment-note {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}
.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--list-text);
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.faq-column { display: grid; gap: 16px; }
.faq-item {
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
}
.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}
.faq-button span:last-child {
  color: var(--primary-2);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
  margin-top: 30px;
}
.contact-info,
.contact-form { padding: 32px; }
.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.contact-row {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
}
.contact-row small {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.76rem;
}
.contact-row a,
.contact-row span {
  color: var(--soft-text);
  font-weight: 600;
  word-break: break-word;
}
form { display: grid; gap: 14px; }
.field { display: grid; gap: 8px; }
.field label {
  color: var(--field-label);
  font-weight: 600;
  font-size: 0.95rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  background: var(--surface-strong);
  border-color: rgba(77, 163, 255, 0.42);
}
.field textarea { min-height: 150px; resize: vertical; }

.footer {
  padding: 30px 0 42px;
  border-top: 1px solid var(--footer-line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer p { margin: 0; color: var(--muted); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-nav a {
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
}
.footer-nav a:hover {
  color: var(--text);
  background: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1140px) {
  .project-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .skills-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle { display: inline-block; }

  .nav-wrap { position: relative; }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, calc(100vw - 2rem));
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 12, 22, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-panel.open { display: flex; gap: 14px; }

  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav a {
    padding: 14px;
    border-radius: 16px;
  }

  .nav-right {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta { width: 100%; }
  .hero-services-short { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .hero-clean { padding: 24px 0 56px; }
  .hero-chip { margin-bottom: 24px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 4rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { gap: 10px; }
  .hero-btn { width: 100%; }
  .hero-service-card,
  .contact-info,
  .contact-form,
  .plan-card,
  .skill-card,
  .service-block,
  .project-card { padding: 22px; }
  .project-grid,
  .plans-grid,
  .skills-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(2rem, 12vw, 3.6rem); }
  .project-card p { min-height: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
