

/* Start:/local/templates/seo_top1/styles.css?176693011215971*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Orbitron:wght@500;600;700&display=swap");

:root {
  --bg: #f4f7ff;
  --bg-soft: #ffffff;
  --text: #10162b;
  --muted: #58627d;
  --accent: #005bff;
  --accent-strong: #0046c0;
  --accent-bright: #2a7bff;
  --line: #e3e8f5;
  --shadow: 0 25px 60px rgba(16, 22, 43, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(0, 91, 255, 0.25), transparent 60%),
    radial-gradient(800px 460px at 90% 0%, rgba(42, 123, 255, 0.2), transparent 60%),
    linear-gradient(180deg, #f7f9ff 0%, #f1f5ff 100%);
  min-height: 100vh;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(18px, 6vw, 80px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 12px 30px rgba(16, 22, 43, 0.12);
}

header h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.logo svg {
  display: block;
  height: 32px;
  width: auto;
}

.logo svg text {
  font-family: "Orbitron", "Space Grotesk", "Manrope", sans-serif;
}

.logo .logo-handle {
  transform-box: fill-box;
  transform-origin: 15.5px 15.5px;
  animation: handle-tilt 3.2s ease-in-out infinite;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

header a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 91, 255, 0.06);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

header a:hover {
  background: rgba(0, 91, 255, 0.12);
  border-color: rgba(0, 91, 255, 0.2);
  transform: translateY(-2px);
}

main {
  max-width: 1150px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 120px) clamp(18px, 6vw, 90px) 80px;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(16px, 2vw, 19px);
  margin: 0 0 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-content h1 {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 91, 255, 0.12);
  color: var(--accent);
  width: fit-content;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.cta,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-bright));
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 91, 255, 0.35);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(0, 91, 255, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 91, 255, 0.3);
  color: var(--accent-strong);
  text-decoration: none;
  background: #fff;
  font-weight: 600;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.metric {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  font-size: 20px;
  color: var(--accent);
}

.metric span {
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 20px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    max-width: none;
  }
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  height: 140px;
  margin-bottom: 18px;
}

.hero-chart span {
  display: block;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, var(--accent), var(--accent-bright));
  animation: rise 1.6s ease forwards;
  transform-origin: bottom;
}

.hero-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-top p {
  margin: 4px 0 0;
  font-size: 14px;
}

.hero-graph svg {
  width: 100%;
  height: auto;
}

.graph-line {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw 2s ease forwards;
}

.hero-graph circle {
  fill: var(--accent);
  opacity: 0;
  animation: pop 0.8s ease forwards;
  animation-delay: 1.2s;
}

.graph-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.graph-stats strong {
  font-size: 20px;
  color: var(--accent);
}

.graph-stats span {
  font-size: 14px;
  color: var(--muted);
}

.hero-form {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-form form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.hero-form input {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 15px;
}

.hero-form textarea {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 15px;
  resize: vertical;
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
  color: #1f2937;
}

.policy-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #334155;
}

.policy-consent input {
  margin-top: 3px;
}

.form-note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.section-head {
  margin-bottom: 28px;
}

.advantages,
.about,
.stats,
.cases {
  margin-bottom: 80px;
}

.tariffs,
.contacts {
  margin-bottom: 80px;
}

.adv-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
}

.adv-card,
.case-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adv-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(16, 22, 43, 0.15);
}

.adv-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 91, 255, 0.1);
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.about-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.about-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-points {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
}
.case-meta {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.tariffs {
  margin-bottom: 80px;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tariff-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.tariff-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.tariff-card.featured {
  border: 2px solid rgba(0, 91, 255, 0.4);
  box-shadow: 0 30px 70px rgba(0, 91, 255, 0.2);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-card,
.map-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.map-placeholder {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(0, 91, 255, 0.1), rgba(0, 91, 255, 0.02));
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 600;
  border: 1px dashed rgba(0, 91, 255, 0.3);
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 clamp(18px, 6vw, 90px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-bright));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(0, 91, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(0, 91, 255, 0.4);
}

.service-hero {
  padding: 80px 0 60px;
  background: #f9fbff;
}

.service-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.service-hero .subtitle {
  font-size: 20px;
  color: #334155;
  margin: 15px 0;
}

.service-offer {
  padding: 60px 0;
}

.offer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.offer-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.offer-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-process {
  background: #f5f7fa;
  padding: 60px 0;
}

.process-list {
  font-size: 18px;
  line-height: 1.6;
  padding-left: 25px;
}

.service-cta {
  padding: 60px 0;
  text-align: center;
}

.service-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.page-head {
  padding: 60px 0 30px;
}

.tariffs {
  padding: 60px 0 100px;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tariff {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.tariff:hover {
  transform: translateY(-4px);
}

.tariff--pro {
  border: 2px solid #005BFF;
}

.tariff--vip {
  background: #F9FBFF;
  border: 2px solid #005BFF;
}

.tariff__price {
  font-size: 26px;
  font-weight: 700;
  margin: 15px 0;
}

.tariff__label {
  background: #005BFF;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.tariff__note {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.tariff ul {
  margin: 20px 0;
  padding-left: 20px;
  line-height: 1.5;
}

.cases-list {
  padding: 60px 0 100px;
}

.cases-hero {
  padding: 70px 0 40px;
}

.cases-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 30px;
  align-items: center;
}

.cases-hero-stats {
  display: grid;
  gap: 16px;
}

.cases-filters {
  padding: 10px 0 30px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid rgba(0, 91, 255, 0.2);
  background: #fff;
  color: #005BFF;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.filter-btn.is-active {
  background: #005BFF;
  color: #fff;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.case-card {
  text-decoration: none;
  color: #0b1f33;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  gap: 10px;
}

.case-top {
  display: grid;
  gap: 8px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 91, 255, 0.1);
  color: #005BFF;
  font-size: 12px;
  font-weight: 600;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.case-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.case-card .more {
  color: #005BFF;
  margin-top: 10px;
  font-weight: 600;
}

.case-card.is-hidden {
  display: none;
}

.cases-empty {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f3f6ff;
  color: #334155;
}

.case-detail {
  padding: 80px 0;
  max-width: 800px;
}

.case-detail h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.case-content {
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
}

@media (max-width: 900px) {
  .cases-hero .container {
    grid-template-columns: 1fr;
  }
}

.case-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 91, 255, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.cta-strip {
  background: linear-gradient(120deg, #e8f1ff, #ffffff);
  border-radius: 28px;
  padding: clamp(24px, 6vw, 50px);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

footer {
  text-align: center;
  padding: 40px 20px 60px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
}

@keyframes rise {
  from {
    transform: scaleY(0.2);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes handle-tilt {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@media (max-width: 760px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.seo-text {
  padding: 70px 0;
  background: #f8fafc;
}

.seo-text .seo-short {
  font-weight: 600;
  color: #0b1f33;
}

.seo-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 18px;
}

.seo-text h2,
.seo-text h3,
.seo-text h4 {
  color: #0b1f33;
  margin: 26px 0 12px;
}

.seo-text h2 {
  font-size: 28px;
}

.seo-text h3 {
  font-size: 24px;
}

.seo-text h4 {
  font-size: 20px;
}

/* End */
/* /local/templates/seo_top1/styles.css?176693011215971 */
