:root {
  --bg: #f6f7fb;
  --bg-soft: #eef2f9;
  --surface: #ffffff;
  --surface-2: #f7f9ff;
  --text: #1d2430;
  --text-soft: #536176;
  --line: #dbe1ee;
  --brand: #0d6efd;
  --brand-deep: #094db4;
  --accent: #ffc42e;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 8px 24px rgba(18, 34, 66, 0.08);
  --shadow-md: 0 18px 44px rgba(18, 34, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  padding-bottom: 2rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 6% 8%, rgba(13, 110, 253, 0.12), transparent 38%),
    radial-gradient(circle at 95% 2%, rgba(255, 196, 46, 0.2), transparent 32%),
    linear-gradient(170deg, #f9fbff, #f3f6fb 45%, #eef2f9);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(43, 66, 103, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(43, 66, 103, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 75%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(214, 223, 238, 0.92);
  background: rgba(247, 250, 255, 0.84);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(16, 31, 58, 0.11);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 72px;
  height: 48px;
  object-fit: contain;
}

.logo-text-wrap {
  display: grid;
  line-height: 1.05;
}

.logo-text {
  font-weight: 800;
  font-size: 1rem;
}

.logo-sub {
  color: var(--text-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #dce4f1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.32rem;
  box-shadow: 0 8px 20px rgba(34, 55, 88, 0.08);
}

.nav-links a {
  text-decoration: none;
  color: #253043;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  border-radius: 999px;
  padding: 0.5rem 0.78rem;
}

.nav-links a:hover {
  color: #13335f;
  background: #eef3fc;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  bottom: 0.28rem;
  width: calc(100% - 1.4rem);
  height: 2px;
  background: linear-gradient(90deg, #2e67be, #85b5ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.menu-toggle {
  display: none;
  border: 1px solid #d5dfef;
  border-radius: 999px;
  background: #ffffff;
  color: #253043;
  font: inherit;
  font-weight: 700;
  padding: 0;
  width: 52px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: #2a374d;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  border: 0;
  border-radius: 11px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.05rem;
  font-weight: 800;
  font-size: 0.9rem;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(9, 77, 180, 0.2);
  transition: transform 0.2s ease;
}

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

.btn-small {
  min-height: 38px;
  padding: 0 0.95rem;
  font-size: 0.82rem;
}

.nav-cta {
  border-radius: 999px;
  padding: 0 1.2rem;
  min-height: 42px;
  color: #2b2414;
  background: linear-gradient(140deg, #ffd577, #f2b53b);
  box-shadow: 0 10px 24px rgba(205, 148, 30, 0.32);
}

.nav-cta:hover {
  background: linear-gradient(140deg, #ffd97f, #f0ae2f);
}

.nav-cta::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 0.42rem;
  background: #2b2414;
  box-shadow: 0 0 0 3px rgba(43, 36, 20, 0.15);
}

.btn-ghost {
  background: transparent;
  color: #1f2b3f;
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-section {
  margin-top: 1.3rem;
  margin-bottom: 2.2rem;
  display: grid;
  gap: 0;
}

.hero-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: clamp(260px, 50vw, 560px);
  background: #dbe5f7;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 255, 0.97));
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.8rem;
  display: grid;
  gap: 1rem;
  align-content: center;
  margin: -64px auto 0;
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 2rem));
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-weight: 800;
  color: #547092;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  color: #121b29;
}

.hero-copy p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-meta span {
  border: 1px solid #d5deed;
  border-radius: 999px;
  background: #f4f7fd;
  padding: 0.34rem 0.66rem;
  font-size: 0.73rem;
  color: #45566f;
  font-weight: 700;
}

.services-section {
  margin-top: 0;
  margin-bottom: 2.2rem;
}

.section-head {
  margin-bottom: 0.9rem;
  display: grid;
  gap: 0.3rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #131c2a;
  max-width: 20ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.service-card div {
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
  align-content: center;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #172133;
}

.service-card p {
  color: #5a6a82;
  line-height: 1.58;
  font-size: 0.95rem;
}

.content-shell {
  margin-top: 0;
  margin-bottom: 2.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f7f9ff, #f1f5fd);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem;
  display: grid;
  gap: 1.3rem;
}

.webdev-highlight {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8d0a1;
  background: linear-gradient(130deg, #f6cc68, #efb73b);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 290px;
}

.highlight-copy {
  padding: 1.35rem 1.2rem;
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.highlight-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #434d5e;
}

.highlight-copy h2 {
  font-size: clamp(2.1rem, 4.7vw, 3.25rem);
  color: #1e2a3c;
}

.highlight-copy p {
  color: #3c4a60;
  line-height: 1.62;
  font-size: 0.96rem;
  max-width: 44ch;
}

.highlight-points {
  display: grid;
  gap: 0.3rem;
}

.highlight-points li {
  color: #2b3950;
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  padding-left: 1rem;
}

.highlight-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #284e94;
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.webdev-highlight .btn {
  justify-self: start;
}

.highlight-visual {
  position: relative;
}

.highlight-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(28, 41, 62, 0.35), transparent);
}

.highlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(21, 33, 54, 0.78);
  color: #f8fbff;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.3rem 0.62rem;
  animation: floatBadge 4.4s ease-in-out infinite;
}

.badge-one {
  top: 0.9rem;
  right: 0.8rem;
}

.badge-two {
  left: 0.9rem;
  bottom: 1rem;
  animation-delay: 1.2s;
}

.dev-scope {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.dev-card {
  border: 1px solid #dbe1ee;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.9rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.dev-card h3 {
  font-size: 1.08rem;
  color: #1d2940;
}

.dev-card p {
  color: #5a6980;
  line-height: 1.58;
  font-size: 0.84rem;
}

.dev-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, #eaf2ff, #dce9ff);
  border: 1px solid #c8dafc;
  display: grid;
  place-items: center;
}

.dev-icon svg {
  width: 20px;
  height: 20px;
  stroke: #2357a7;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dev-card-image {
  padding: 0;
  overflow: hidden;
}

.dev-card-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.dev-card-image div {
  padding: 0.75rem 0.85rem 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.pricing-block {
  display: grid;
  gap: 0.8rem;
}

.pricing-block + .pricing-block {
  margin-top: 0.5rem;
}

.block-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  color: #1c2a40;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.plan-card {
  background: #ffffff;
  border: 1px solid #dbe1ee;
  border-radius: 14px;
  padding: 0.9rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.plan-card h3 {
  font-size: 1.08rem;
  color: #1a2435;
}

.plan-card ul {
  display: grid;
  gap: 0.28rem;
}

.plan-card li {
  font-size: 0.76rem;
  color: #55657c;
  line-height: 1.45;
  position: relative;
  padding-left: 0.85rem;
}

.plan-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.36rem;
}

.plan-actions {
  display: flex;
  justify-content: center;
  padding-top: 0.15rem;
}

.register-btn {
  min-width: 170px;
  border-radius: 999px;
}

.showcase-slider {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  min-height: 330px;
  margin-top: 0.3rem;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 196, 46, 0.95);
  color: #1f2c42;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
}

.slider-prev {
  left: 0.7rem;
}

.slider-next {
  right: 0.7rem;
}

.documents-section {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.documents-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.6rem;
}

.documents-intro,
.documents-quick-panel {
  border: 1px solid #dbe1ee;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.95rem;
  display: grid;
  gap: 0.55rem;
}

.documents-intro h3,
.documents-quick-panel h3 {
  font-size: 1.2rem;
  color: #1d2940;
}

.documents-intro p {
  color: #5a6a82;
  line-height: 1.62;
  font-size: 0.92rem;
}

.documents-highlights {
  display: grid;
  gap: 0.3rem;
}

.documents-highlights li {
  color: #41526a;
  font-size: 0.82rem;
  line-height: 1.45;
  position: relative;
  padding-left: 0.9rem;
}

.documents-highlights li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.33rem;
}

.documents-quick-panel {
  background: linear-gradient(165deg, #f7f9ff, #eef3fd);
}

.quick-item {
  border: 1px solid #d9e2f4;
  border-radius: 11px;
  background: #ffffff;
  padding: 0.55rem 0.65rem;
  display: grid;
  gap: 0.16rem;
}

.quick-item span {
  color: #657893;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.quick-item strong {
  color: #27364d;
  font-size: 0.82rem;
  line-height: 1.4;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.document-card {
  border: 1px solid #dbe1ee;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.document-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 9px;
  border: 1px solid #e4e9f3;
}

.document-card h3 {
  font-size: 1.1rem;
  color: #1f2a3f;
}

.document-card p {
  color: #5a6a82;
  font-size: 0.84rem;
  line-height: 1.52;
}

.document-meta {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.document-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #edf2fb;
  border: 1px solid #d8e2f4;
  color: #496184;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.24rem 0.48rem;
}

.media-grid-block {
  display: grid;
  gap: 1.1rem;
}

.media-grid-block + .media-grid-block {
  margin-top: 0.2rem;
}

.media-grid-block h2,
.clients h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  color: #1a2638;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 279 / 269;
  object-fit: cover;
  border: 1px solid #dbe1ee;
  border-radius: 10px;
  background: #ffffff;
}

.clients {
  margin-top: 0.4rem;
  margin-bottom: 2rem;
}

.contact-section {
  margin-top: 0.2rem;
  margin-bottom: 2rem;
}

.contact-layout {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 4% 8%, rgba(13, 110, 253, 0.1), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-panel {
  border: 1px solid #dbe3f3;
  border-radius: 16px;
  background: #f7faff;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #1a273b;
}

.contact-panel p {
  color: #586b85;
  line-height: 1.65;
  font-size: 0.95rem;
}

.contact-methods {
  display: grid;
  gap: 0.38rem;
}

.contact-methods a {
  text-decoration: none;
  border: 1px solid #d8e2f4;
  border-radius: 10px;
  background: #ffffff;
  color: #29466f;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.52rem 0.65rem;
}

.contact-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.contact-notes span {
  border: 1px solid #d7e2f5;
  border-radius: 999px;
  background: #ffffff;
  color: #516784;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.52rem;
}

.quote-form {
  border: 1px solid #dbe3f3;
  border-radius: 16px;
  background: #ffffff;
  padding: 1rem;
  display: grid;
  gap: 0.62rem;
}

.form-feedback {
  margin: 0;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.form-feedback-success {
  border: 1px solid #b8e6c2;
  background: #f2fbf4;
  color: #1f6b34;
}

.form-feedback-error {
  border: 1px solid #f2c2c2;
  background: #fff4f4;
  color: #a12424;
}

.quote-form label {
  display: grid;
  gap: 0.28rem;
  color: #2a3b55;
  font-size: 0.84rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d5deee;
  border-radius: 10px;
  background: #fdfefe;
  color: #27364d;
  font: inherit;
  padding: 0.62rem 0.72rem;
}

.quote-form textarea {
  resize: vertical;
  min-height: 102px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(13, 110, 253, 0.25);
  border-color: #b7caea;
}

.quote-form .btn {
  justify-self: start;
  min-width: 160px;
}

.client-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 94% 8%, rgba(13, 110, 253, 0.08), transparent 32%),
    #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.client-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.8rem;
  align-items: start;
}

.client-copy {
  margin-top: 0.55rem;
  color: #586981;
  line-height: 1.62;
  font-size: 0.95rem;
  max-width: 58ch;
}

.client-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.client-stats article {
  border: 1px solid #dbe3f3;
  border-radius: 12px;
  background: #f7faff;
  padding: 0.6rem 0.7rem;
  display: grid;
  gap: 0.1rem;
}

.client-stats strong {
  font-family: "Syne", sans-serif;
  font-size: 1.22rem;
  color: #1c2a40;
  line-height: 1;
}

.client-stats span {
  color: #5d708a;
  font-size: 0.76rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.client-board {
  margin-top: 0.75rem;
  border: 1px solid #dbe1ee;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.marquee-board {
  position: relative;
}

.marquee-board::before,
.marquee-board::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  z-index: 2;
  pointer-events: none;
}

.marquee-board::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95), transparent);
}

.marquee-board::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
}

.client-track {
  display: flex;
  width: max-content;
  animation: clientMarquee 26s linear infinite;
}

.client-track img {
  width: min(1160px, calc(100vw - 3rem));
  flex: 0 0 auto;
}

.marquee-board:hover .client-track {
  animation-play-state: paused;
}

.site-footer {
  border-top: 1px solid #d8dfec;
  background: #ffffff;
}

.footer-grid {
  padding: 1.6rem 0 1.1rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.15fr 1fr;
  gap: 1rem;
}

.footer-logo {
  width: 118px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.45rem;
}

.footer-grid h3 {
  font-size: 1.02rem;
  color: #1a2638;
  margin-bottom: 0.45rem;
}

.footer-grid p,
.footer-grid li {
  color: #4e5f77;
  line-height: 1.65;
  font-size: 0.9rem;
}

.footer-map {
  width: 100%;
  min-height: 170px;
  border-radius: 10px;
  border: 1px solid #dbe1ee;
  margin-top: 0.5rem;
}

.copyright {
  margin: 0;
  text-align: center;
  border-top: 1px solid #e1e6f1;
  padding: 0.8rem 1rem 1rem;
  color: #586a81;
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  right: 0.85rem;
  bottom: 0.9rem;
  z-index: 45;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 83, 41, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.whatsapp-float svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

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

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

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes clientMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .service-grid,
  .webdev-highlight {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: clamp(220px, 52vw, 420px);
  }

  .hero-copy {
    margin-top: -36px;
  }

  .highlight-visual {
    min-height: 250px;
  }

  .plan-grid,
  .dev-scope,
  .documents-layout,
  .documents-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .client-head {
    grid-template-columns: 1fr;
  }

  .client-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .documents-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    margin-bottom: 1.8rem;
  }

  .services-section,
  .content-shell {
    margin-bottom: 1.9rem;
  }
}

@media (max-width: 820px) {
  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.9rem 1rem 1rem;
    background: rgba(249, 251, 255, 0.98);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-links a {
    width: 100%;
    padding: 0.55rem 0.7rem;
  }

  .nav-links a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
  }

  .nav-links.open {
    display: flex;
  }

  .plan-grid,
  .dev-scope,
  .documents-layout,
  .documents-grid,
  .image-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .webdev-highlight {
    grid-template-columns: 1fr;
  }

  .webdev-highlight {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(155deg, #f7cf73, #efb63c 58%, #e5a72f);
  }

  .service-card img {
    min-height: 170px;
  }

  .service-card div {
    padding: 0.9rem;
  }

  .highlight-visual {
    min-height: 210px;
    border-bottom: 1px solid rgba(28, 41, 62, 0.15);
  }

  .highlight-visual::before {
    background: linear-gradient(to top, rgba(28, 41, 62, 0.26), rgba(28, 41, 62, 0.06));
  }

  .highlight-copy {
    padding: 0.95rem 0.9rem 1rem;
    gap: 0.62rem;
  }

  .highlight-copy h2 {
    font-size: clamp(1.55rem, 7.8vw, 2.15rem);
    line-height: 0.98;
  }

  .highlight-copy p {
    font-size: 0.86rem;
    line-height: 1.56;
    max-width: none;
  }

  .highlight-points li {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .dev-scope {
    gap: 0.5rem;
  }

  .dev-card {
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(24, 40, 68, 0.06);
  }

  .dev-card h3 {
    font-size: 1rem;
  }

  .dev-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .dev-card-image img {
    height: 160px;
  }

  .client-stats {
    grid-template-columns: 1fr;
  }

  .client-track {
    animation-duration: 34s;
  }

  .hero-section,
  .services-section,
  .content-shell,
  .clients,
  .contact-section {
    margin-bottom: 1.15rem;
  }

  .content-shell {
    padding: 0.85rem;
    gap: 0.9rem;
  }

  .pricing-block {
    gap: 0.62rem;
  }

  .pricing-block + .pricing-block {
    margin-top: 0.2rem;
  }

  .showcase-slider {
    min-height: 210px;
    margin-top: 0;
  }

  .documents-section {
    gap: 0.65rem;
    margin-top: 0;
  }

  .documents-intro,
  .documents-quick-panel,
  .document-card,
  .client-shell,
  .contact-panel,
  .quote-form {
    padding: 0.75rem;
  }

  .media-grid-block {
    gap: 0.75rem;
  }

  .image-strip {
    gap: 0.45rem;
  }

  .floating-badge {
    font-size: 0.66rem;
    padding: 0.28rem 0.55rem;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1180px, calc(100% - 1.2rem));
  }

  .nav {
    min-height: 72px;
  }

  .logo-img {
    width: 62px;
    height: 40px;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .menu-toggle {
    width: 46px;
    height: 40px;
  }

  .menu-toggle svg {
    width: 18px;
    height: 18px;
  }

  .hero-copy {
    padding: 1.05rem 0.9rem;
    width: calc(100% - 0.6rem);
    margin-top: -10px;
    border-radius: 16px;
    gap: 0.75rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 11vw, 2.45rem);
    line-height: 0.96;
  }

  .hero-copy p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .hero-banner {
    min-height: 190px;
  }

  .hero-meta {
    gap: 0.35rem;
  }

  .hero-meta span {
    font-size: 0.68rem;
    padding: 0.28rem 0.52rem;
  }

  .hero-actions {
    gap: 0.45rem;
  }

  .btn,
  .btn-small {
    min-height: 40px;
    font-size: 0.8rem;
  }

  .service-card img,
  .highlight-visual {
    min-height: 170px;
  }

  .highlight-visual {
    border-bottom: 1px solid rgba(28, 41, 62, 0.14);
  }

  .dev-card-image img {
    height: 150px;
  }

  .plan-card {
    padding: 0.72rem;
  }

  .plan-card li {
    font-size: 0.72rem;
  }

  .documents-intro h3,
  .documents-quick-panel h3,
  .document-card h3 {
    font-size: 1rem;
  }

  .document-card img {
    height: 150px;
  }

  .media-grid-block {
    gap: 0.65rem;
  }

  .hero-section,
  .services-section,
  .content-shell,
  .clients,
  .contact-section {
    margin-bottom: 0.95rem;
  }

  .contact-panel h2 {
    font-size: clamp(1.45rem, 8vw, 1.95rem);
  }

  .contact-panel p,
  .contact-methods a {
    font-size: 0.84rem;
  }

  .quote-form label {
    font-size: 0.8rem;
  }

  .section-head h2,
  .block-head h2,
  .media-grid-block h2,
  .clients h2 {
    line-height: 1;
  }

  .whatsapp-float {
    width: 34px;
    height: 34px;
    right: 0.65rem;
    bottom: 0.7rem;
  }

  .whatsapp-float svg {
    width: 17px;
    height: 17px;
  }
}
