:root {
  --bg: #f8fafc;
  --ink: #07111f;
  --muted: #475569;
  --line: #d9e2ec;
  --blue: #0b63f6;
  --blue-dark: #0646a8;
  --cyan: #00c7ff;
  --gold: #d4a74c;
  --accent: #0f766e;
  --accent-soft: #e7f5f2;
  --ice: #eef5ff;
  --soft: #f4f7fb;
  --dark: #06111f;
  --card: #ffffff;
  --shadow: 0 20px 58px rgba(15, 23, 42, 0.09);
  --shadow-strong: 0 28px 80px rgba(15, 23, 42, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #ffffff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.33;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.12) 1px, transparent 0);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

body.menu-open {
  overflow: hidden;
}

body.language-gate-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section + .section {
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.16);
}

.section-muted {
  background:
    linear-gradient(90deg, transparent, rgba(11, 99, 246, 0.08), transparent) top center / 72% 1px no-repeat,
    linear-gradient(180deg, #f8fbff 0%, var(--soft) 100%);
}

.section-dark {
  color: #fff;
  background: linear-gradient(135deg, #06111f 0%, #0c1b2f 58%, #050913 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.9);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 52px;
  max-width: 260px;
  display: block;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #06111f 0%, var(--blue) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: 0.78rem;
  box-shadow:
    0 14px 30px rgba(6, 70, 168, 0.24),
    0 0 26px rgba(0, 199, 255, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #243247;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #fff !important;
  background: var(--dark);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.16);
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.language-menu {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.lang-switch {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: #263446;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lang-switch:hover {
  color: var(--blue);
}

.lang-switch.active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(10, 102, 255, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(5, 9, 19, 0.58);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.language-gate.active {
  opacity: 1;
  pointer-events: auto;
}

.language-panel {
  width: min(100%, 500px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 99, 246, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.language-gate.active .language-panel {
  transform: translateY(0) scale(1);
}

.language-panel h2 {
  font-size: 2.35rem;
  margin-bottom: 14px;
}

.language-panel p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 24px;
}

.language-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero {
  min-height: calc(92vh - var(--header-height));
  padding: 48px 0 44px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 22%, rgba(0, 199, 255, 0.2), transparent 36%),
    radial-gradient(ellipse at 16% 12%, rgba(11, 99, 246, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.032) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 42%, #edf4fb 100%);
  background-size: auto, auto, 58px 58px, 58px 58px, auto;
  z-index: -1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  right: -12%;
  top: 12%;
  width: 58%;
  height: 50%;
  background: linear-gradient(135deg, rgba(11, 99, 246, 0.16), rgba(0, 199, 255, 0.13), transparent 72%);
  filter: blur(30px);
  transform: rotate(-8deg);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.95) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  align-items: center;
  gap: 56px;
}

.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  font-size: 3.32rem;
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  font-size: 3.05rem;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 610px;
  color: #334155;
  font-size: 1.14rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 26px;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow:
    0 18px 42px rgba(11, 99, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  box-shadow:
    0 24px 54px rgba(11, 99, 246, 0.38),
    0 0 0 4px rgba(0, 199, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-secondary {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.9));
  border-color: rgba(180, 195, 215, 0.74);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
  border-color: rgba(11, 99, 246, 0.28);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.12),
    0 0 0 4px rgba(11, 99, 246, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 600px;
  gap: 14px;
}

.hero-stats div {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.88));
  border: 1px solid rgba(207, 219, 234, 0.86);
  border-top: 3px solid rgba(11, 99, 246, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.06rem;
  line-height: 1.25;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-showcase {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 12% 4% 10% 6%;
  background: linear-gradient(135deg, rgba(11, 99, 246, 0.28), rgba(0, 199, 255, 0.14), rgba(15, 118, 110, 0.12));
  filter: blur(32px);
  opacity: 0.84;
  transform: rotate(-7deg);
}

.browser-card {
  width: min(100%, 460px);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(11, 99, 246, 0.06);
  transform: none;
  backdrop-filter: blur(18px);
}

.browser-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: var(--dark);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #6e7f95;
}

.browser-top span:first-child {
  background: #2f8cff;
}

.site-preview {
  min-height: 405px;
  display: grid;
  grid-template-columns: 92px 1fr;
  padding: 18px;
  gap: 18px;
  background:
    radial-gradient(ellipse at 70% 10%, rgba(0, 199, 255, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(11, 99, 246, 0.1), transparent 36%),
    #f9fbff;
}

.preview-sidebar,
.preview-main,
.preview-row div,
.preview-panel,
.preview-hero {
  border-radius: var(--radius);
}

.preview-sidebar {
  background:
    linear-gradient(#d9e7ff 0 0) 18px 24px / 44px 10px no-repeat,
    linear-gradient(#d9e7ff 0 0) 18px 56px / 54px 8px no-repeat,
    linear-gradient(#d9e7ff 0 0) 18px 82px / 46px 8px no-repeat,
    #ffffff;
  border: 1px solid var(--line);
}

.preview-main {
  display: grid;
  grid-template-rows: 1.2fr 0.58fr 0.8fr;
  gap: 14px;
}

.preview-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0 48%, transparent 48%),
    linear-gradient(135deg, #06111f, #0b63f6 62%, #0f766e);
}

.preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-row div {
  background: #fff;
  border: 1px solid var(--line);
}

.preview-panel {
  background: linear-gradient(135deg, #06111f 0%, #13233a 100%);
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 178px;
  padding: 18px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 199, 255, 0.14), transparent 42%),
    #07111f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 54px rgba(7, 17, 31, 0.34),
    0 0 34px rgba(0, 199, 255, 0.12);
  animation: float 4s ease-in-out infinite;
  backdrop-filter: blur(14px);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  color: #b9c6d6;
  font-size: 0.88rem;
}

.floating-note strong {
  font-size: 1.75rem;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 0 38px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(207, 219, 234, 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 255, 0.7));
  box-shadow:
    0 22px 58px rgba(15, 23, 42, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.proof-item {
  position: relative;
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 199, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(217, 226, 236, 0.72);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.proof-item:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 99, 246, 0.24);
  box-shadow: 0 18px 42px rgba(11, 99, 246, 0.1);
}

.proof-item span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin: 0 auto 52px;
  text-align: center;
}

.section-intro {
  max-width: 720px;
  margin: -4px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-content {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-points span {
  padding: 9px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  font-weight: 700;
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.testimonial-card,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.testimonial-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 99, 246, 0.36);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.service-card {
  min-height: 238px;
  padding: 30px;
  border-top: 3px solid transparent;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 30px;
  color: var(--blue);
  background: var(--ice);
  border: 1px solid #d8e7ff;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.8rem;
}

.service-card p,
.project-body p,
.testimonial-card blockquote,
.pricing-card p,
.process-step p,
.faq-item p {
  color: var(--muted);
}

.pricing-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 48% 34%, rgba(11, 99, 246, 0.14), transparent 34%),
    radial-gradient(ellipse at 82% 40%, rgba(0, 199, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 44%, #f4f7fb 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 210px;
  width: min(620px, 80vw);
  height: 260px;
  background: linear-gradient(90deg, rgba(11, 99, 246, 0.18), rgba(0, 199, 255, 0.11), rgba(15, 118, 110, 0.08));
  filter: blur(34px);
  transform: translateX(-50%);
  opacity: 0.75;
}

.pricing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
}

.pricing-section .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 24px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow:
    0 22px 62px rgba(15, 23, 42, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(14px);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  opacity: 0.2;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(11, 99, 246, 0.36);
  box-shadow:
    0 34px 86px rgba(15, 23, 42, 0.16),
    0 0 0 4px rgba(11, 99, 246, 0.06);
}

.pricing-card.featured {
  color: #fff;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(0, 199, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #0a2340 0%, #06111f 100%);
  border-color: rgba(0, 199, 255, 0.36);
  box-shadow:
    0 32px 86px rgba(7, 17, 31, 0.32),
    0 0 0 1px rgba(0, 199, 255, 0.14),
    0 0 44px rgba(11, 99, 246, 0.16);
  animation: featuredPulse 5.5s ease-in-out infinite;
}

.pricing-card.featured:hover {
  box-shadow:
    0 40px 100px rgba(7, 17, 31, 0.38),
    0 0 0 1px rgba(0, 199, 255, 0.22),
    0 0 58px rgba(0, 199, 255, 0.2);
}

.pricing-card.featured::before {
  opacity: 1;
}

.pricing-card.premium {
  border-color: rgba(212, 167, 76, 0.6);
  background:
    linear-gradient(145deg, rgba(255, 247, 225, 0.82), rgba(255, 255, 255, 0.94) 42%),
    #fff;
  box-shadow:
    0 30px 82px rgba(124, 86, 22, 0.14),
    0 0 0 1px rgba(212, 167, 76, 0.16);
}

.pricing-card.premium::before {
  height: 5px;
  opacity: 1;
  background: linear-gradient(90deg, #bf8f2d, #f3d076, #0b63f6);
}

.pricing-card.premium:hover {
  border-color: rgba(191, 143, 45, 0.86);
  box-shadow:
    0 34px 90px rgba(124, 86, 22, 0.2),
    0 0 0 1px rgba(212, 167, 76, 0.24);
}

.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured .pricing-detail-toggle {
  color: #d2deec;
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.pricing-icon {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(135deg, #f8fbff, var(--ice));
  border: 1px solid #d8e7ff;
  border-radius: var(--radius);
  box-shadow:
    0 16px 34px rgba(11, 99, 246, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pricing-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card.featured .pricing-icon {
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(0, 199, 255, 0.26), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 40px rgba(0, 199, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.pricing-card.premium .pricing-icon {
  color: #8a5d05;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(135deg, #fff8e6, #f5d77f);
  border-color: rgba(212, 167, 76, 0.38);
  box-shadow:
    0 18px 40px rgba(191, 143, 45, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.pricing-tag {
  width: fit-content;
  padding: 8px 12px;
  color: var(--blue);
  background: var(--ice);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pricing-card.featured .pricing-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.pricing-card.premium .pricing-tag {
  color: #8a5d05;
  background: #fff3cf;
  border: 1px solid rgba(212, 167, 76, 0.28);
}

.price {
  margin: 8px 0 14px;
  color: var(--ink) !important;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card.featured .price {
  color: #fff !important;
}

.pricing-card.premium .price {
  color: #7a4f00 !important;
}

.pricing-card h3 {
  margin-bottom: 0;
}

.pricing-card > p:not(.price):not(.pricing-ideal) {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: #3f4f63;
}

.pricing-ideal {
  margin: 16px 0 0;
  padding: 14px;
  color: #2d3b4f !important;
  background: rgba(238, 245, 255, 0.72);
  border: 1px solid rgba(11, 99, 246, 0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-ideal strong {
  color: var(--ink);
}

.pricing-card.featured .pricing-ideal {
  color: #dce7f6 !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.pricing-card.featured .pricing-ideal strong {
  color: #fff;
}

.pricing-card.premium .pricing-ideal {
  background: rgba(255, 246, 219, 0.78);
  border-color: rgba(212, 167, 76, 0.24);
}

.pricing-card ul,
.maintenance-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li,
.maintenance-panel li {
  position: relative;
  padding-left: 24px;
  color: #35445a;
  font-weight: 600;
}

.pricing-card li::before,
.maintenance-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.pricing-detail-toggle {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 0 16px;
  color: var(--blue);
  background: rgba(238, 245, 255, 0.86);
  border: 1px solid rgba(11, 99, 246, 0.16);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.pricing-detail-toggle:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(11, 99, 246, 0.35);
  box-shadow:
    0 12px 26px rgba(11, 99, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.pricing-card.featured .pricing-detail-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-card.featured .pricing-detail-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.pricing-details {
  margin: 0 0 22px;
  padding: 20px;
  border: 1px solid rgba(217, 226, 236, 0.84);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(255, 255, 255, 0.94));
}

.pricing-card.featured .pricing-details {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-details-title {
  margin: 0 0 12px;
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card.featured .pricing-details-title {
  color: #fff !important;
}

.pricing-details ul {
  margin: 0;
}

.pricing-note {
  max-width: 850px;
  margin: 28px auto 0;
  padding: 18px 20px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card.premium .btn-secondary {
  color: #06111f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 40%),
    linear-gradient(135deg, #fff7df, #f3c75d);
  border-color: rgba(191, 143, 45, 0.36);
  box-shadow: 0 18px 36px rgba(191, 143, 45, 0.2);
}

.pricing-trust {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: #516176;
  font-size: 0.86rem;
  font-weight: 700;
}

.pricing-trust span {
  position: relative;
  padding-left: 22px;
}

.pricing-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), transparent 50%),
    var(--accent);
}

.pricing-trust span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.54em;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.pricing-card.featured .pricing-trust {
  color: #dce7f6;
}

.maintenance-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: center;
  margin-top: 28px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(11, 99, 246, 0.08), transparent 52%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(15, 23, 42, 0.08);
}

.maintenance-copy h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.18;
}

.maintenance-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  margin: 0;
}

.maintenance-panel ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

.maintenance-action {
  display: grid;
  gap: 16px;
  align-content: center;
  justify-items: stretch;
  padding: 22px;
  background: var(--dark);
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(6, 17, 31, 0.16);
}

.maintenance-price {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
}

.portfolio-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.portfolio-head h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 2px solid rgba(11, 99, 246, 0.18);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 78px rgba(15, 23, 42, 0.14);
}

.project-image {
  min-height: 282px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #07111f;
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 28% 16%, rgba(0, 199, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.58));
}

.project-screenshot {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(10px) scale(1.02);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}

.project-card:hover .project-screenshot {
  transform: translateY(0) scale(1.045);
  box-shadow:
    0 34px 72px rgba(0, 0, 0, 0.36),
    0 0 36px rgba(0, 199, 255, 0.1);
}

.project-hair {
  background-image:
    linear-gradient(135deg, rgba(7,17,31,0.72), rgba(15,118,110,0.18)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1200&q=80");
}

.project-food {
  background-image:
    linear-gradient(135deg, rgba(7,17,31,0.72), rgba(11,99,246,0.18)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80");
}

.project-shop {
  background-image:
    linear-gradient(135deg, rgba(7,17,31,0.7), rgba(11,99,246,0.2)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80");
}

.project-gym {
  background-image:
    linear-gradient(135deg, rgba(7,17,31,0.72), rgba(15,118,110,0.18)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1200&q=80");
}

.project-build {
  background-image:
    linear-gradient(135deg, rgba(7,17,31,0.74), rgba(11,99,246,0.18)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80");
}

.project-window {
  width: 78%;
  min-height: 134px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.22);
  backdrop-filter: blur(12px);
}

.project-window span,
.project-window div {
  display: block;
  border-radius: 999px;
}

.project-window span {
  width: 46%;
  height: 12px;
  background: var(--blue);
  margin-bottom: 18px;
}

.project-window div {
  height: 9px;
  background: #cdd8e7;
  margin-bottom: 10px;
}

.project-window div:last-child {
  width: 72%;
}

.project-body {
  padding: 26px;
}

.project-body span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.project-body a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
}

.process-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.055);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 99, 246, 0.26);
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.1);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  color: var(--blue);
  background: var(--ice);
  border: 1px solid #d8e7ff;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.why-item {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.28s ease, transform 0.28s ease;
}

.why-item:hover {
  background:
    radial-gradient(circle at 16% 14%, rgba(0, 199, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.07);
}

.why-item:last-child {
  border-right: 0;
}

.why-item strong,
.why-item span {
  display: block;
}

.why-item strong {
  margin-bottom: 14px;
  font-size: 1rem;
}

.why-item span {
  color: #c0ccdc;
  font-size: 0.94rem;
}

.testimonials-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(0, 199, 255, 0.18), transparent 34%),
    radial-gradient(ellipse at 86% 28%, rgba(11, 99, 246, 0.22), transparent 34%),
    linear-gradient(135deg, #06111f 0%, #0b182b 58%, #050913 100%);
}

.testimonials-section .eyebrow {
  color: #73d9ff;
}

.testimonials-section .section-heading h2 {
  color: #fff;
}

.case-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -22px 0 28px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.case-strip div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.case-strip span,
.case-strip strong {
  display: block;
}

.case-strip span {
  margin-bottom: 8px;
  color: #73d9ff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-strip strong {
  color: #edf6ff;
  line-height: 1.45;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 199, 255, 0.28);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(0, 199, 255, 0.08);
}

.testimonial-card blockquote {
  margin: 0 0 28px;
  color: #e4edf8 !important;
}

.testimonial-card blockquote::before {
  content: "\201C";
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: #fff;
}

.testimonial-card span {
  color: #aebed0;
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.055);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--blue);
  background: var(--ice);
  border-radius: var(--radius);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: -4px 22px 22px;
}

.contact-section {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.contact-reassurance {
  margin-top: 18px;
  color: var(--ink) !important;
  font-weight: 800;
}

.contact-info a,
.contact-info span {
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #243247;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 102, 255, 0.12);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 68px 0 24px;
  color: #c8d2df;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(0, 199, 255, 0.16), transparent 34%),
    radial-gradient(ellipse at 86% 10%, rgba(11, 99, 246, 0.18), transparent 34%),
    #050913;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 199, 255, 0.42), transparent);
}

.footer-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 54px;
  align-items: start;
  padding-bottom: 42px;
}

.footer-brand-block {
  max-width: 470px;
}

.footer-brand-block p {
  margin: 18px 0 24px;
  color: #d9e5f3;
  font-size: 1.12rem;
}

.footer-cta {
  width: fit-content;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-columns div {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.footer-columns strong {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-columns a,
.footer-columns span {
  color: #c8d2df;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.footer-columns a:hover,
.footer-socials a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .brand {
  color: #fff;
}

.footer .brand-logo {
  height: 58px;
  max-width: 290px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes featuredPulse {
  0%,
  100% {
    box-shadow:
      0 32px 86px rgba(7, 17, 31, 0.32),
      0 0 0 1px rgba(0, 199, 255, 0.14),
      0 0 38px rgba(11, 99, 246, 0.14);
  }
  50% {
    box-shadow:
      0 36px 96px rgba(7, 17, 31, 0.36),
      0 0 0 1px rgba(0, 199, 255, 0.22),
      0 0 54px rgba(0, 199, 255, 0.2);
  }
}

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

@media (max-width: 1020px) {
  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 42px 0 34px;
  }

  .hero-showcase {
    min-height: 265px;
  }

  .browser-card {
    width: min(100%, 410px);
  }

  .site-preview {
    min-height: 260px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .maintenance-panel {
    grid-template-columns: 1fr;
  }

  .maintenance-action {
    max-width: 360px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .case-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header-height) + 10px);
    z-index: 100;
    display: grid;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 15px 12px;
    border-radius: var(--radius);
  }

  .nav-cta {
    min-height: 48px;
    justify-content: flex-start;
  }

  .nav-links a:hover {
    background: var(--ice);
  }

  .nav-links a::after {
    display: none;
  }

  .language-menu {
    width: 100%;
    justify-content: stretch;
    margin-top: 8px;
    padding: 6px;
  }

  .lang-switch {
    flex: 1;
    height: 42px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .navbar {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding: 26px 0 14px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header-height) + 10px);
    z-index: 100;
    display: grid;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 15px 12px;
    border-radius: var(--radius);
  }

  .nav-cta {
    min-height: 48px;
    justify-content: flex-start;
  }

  .nav-links a:hover {
    background: var(--ice);
  }

  .nav-links a::after {
    display: none;
  }

  .language-menu {
    width: 100%;
    justify-content: stretch;
    margin-top: 8px;
    padding: 6px;
  }

  .lang-switch {
    flex: 1;
    height: 42px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .portfolio-head,
  .footer-bottom,
  .footer-socials {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-text {
    margin-bottom: 22px;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .services-grid,
  .proof-grid,
  .case-strip,
  .maintenance-panel ul,
  .process-grid,
  .portfolio-grid,
  .why-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: -12px;
    padding-bottom: 18px;
  }

  .proof-grid {
    padding: 10px;
  }

  .proof-item {
    min-height: auto;
    padding: 16px;
  }

  .hero-stats {
    display: none;
  }

  .pricing-card,
  .maintenance-panel {
    padding: 24px;
  }

  .pricing-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-detail-toggle {
    min-height: 48px;
  }

  .pricing-note {
    text-align: left;
  }

  .maintenance-action {
    max-width: none;
    padding: 20px;
  }

  .hero-showcase {
    min-height: 184px;
  }

  .browser-card {
    transform: none;
  }

  .site-preview {
    min-height: 158px;
    grid-template-columns: 62px 1fr;
    padding: 12px;
    gap: 12px;
  }

  .floating-note {
    right: 14px;
    bottom: 14px;
    width: 132px;
    padding: 14px;
  }

  .floating-note strong {
    font-size: 1.38rem;
  }

  .project-image {
    min-height: 230px;
  }

  .project-window {
    width: 92%;
  }

  .why-item {
    min-height: auto;
    border-right: 0;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-layout {
    gap: 26px;
    padding-bottom: 30px;
  }

  .footer-cta {
    width: 100%;
  }

  .language-panel {
    padding: 24px;
  }

  .language-panel h2 {
    font-size: 1.95rem;
  }

  .language-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.94rem;
  }

  .brand-logo {
    height: 44px;
    max-width: 210px;
  }

  .hero-text,
  .about-content,
  .contact-copy p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.08rem;
  }

  h2 {
    font-size: 1.9rem;
  }
}
