* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  background: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #111111;
}

/* Language switch */

.lang-switch {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.35rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.lang-switch button {
  border: none;
  background: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
}

.lang-switch button.active {
  background: #111111;
  color: #ffffff;
}

/* Layout: info left, contact form right */

.layout {
  width: 100%;
  max-width: 980px;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.info-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-col {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  color: #111111;
}

@media (max-width: 800px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.5rem 1.25rem 2.5rem;
  }
}

.brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #111111;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.brand-icon svg {
  width: 28px;
  height: 28px;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
  background: #ecfdf3;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin: 0 0 1.25rem;
}

h1 {
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  word-break: break-word;
  letter-spacing: -0.02em;
  color: #111111;
}

.price {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #ffffff;
  background: #16a34a;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  margin: 0 0 2.5rem;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.price-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.price-icon svg {
  width: 100%;
  height: 100%;
}

.price strong {
  color: #ffffff;
}

.stats-block {
  width: 100%;
  margin: 0 0 2.5rem;
}

.stats-block h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin: 0 0 1rem;
  font-weight: 600;
}

.stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 1.1rem 1rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.stat-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 0.4rem;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat--da {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.stat--da .stat-value,
.stat--da .stat-label {
  color: #ffffff;
}

.stat--dr {
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
}

.stat--dr .stat-value,
.stat--dr .stat-label {
  color: #ffffff;
}

.stat--spam {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
}

.stat--spam .stat-value,
.stat--spam .stat-label {
  color: #ffffff;
}

.stat--backlinks {
  background: #0d9488;
  color: #ffffff;
  border-color: #0d9488;
}

.stat--backlinks .stat-value,
.stat--backlinks .stat-label {
  color: #ffffff;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111111;
}

.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-top: 0.35rem;
}

.cta-icon {
  width: 20px;
  height: 20px;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .stats {
    gap: 0.6rem;
  }

  .stat {
    min-width: 30%;
    flex: 1 1 30%;
    padding: 0.8rem 0.5rem;
  }

  .lang-switch {
    top: 0.6rem;
    right: 0.6rem;
  }
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  text-align: left;
  width: 100%;
}

.field label {
  font-size: 0.8rem;
  color: #444444;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #16a34a;
}

.submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.85rem;
  font-size: 1rem;
  cursor: pointer;
}

.submit:hover {
  background: #16a34a;
}
