*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent-primary: #09def1;
  --accent-primary-soft: #6befff;
  --accent-secondary: #58a6ff;

  --bg-900: #040b1a;
  --bg-800: #07142a;
  --bg-700: #0b1f3d;

  --text-100: #eaf6ff;
  --text-300: #9bb8d4;
  --border-600: #12345d;

  --success: #22c55e;
  --danger: #ef4444;

  --radius: 14px;
  --shadow-soft: 0 12px 40px rgba(2, 10, 24, 0.5);

  --container-pad: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Bahnschrift, "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: var(--text-100);
  background: radial-gradient(circle at 22% 20%, rgba(9, 222, 241, 0.07) 0%, transparent 35%),
              linear-gradient(180deg, var(--bg-800) 0%, var(--bg-900) 100%);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(100%, 1500px);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section:not(.hero) {
  padding: 32px 0;
}

.ticker-bar {
  position: static;
  border-bottom: 1px solid var(--border-600);
  background: rgba(4, 11, 26, 0.95);
}

@media (min-width: 1024px) {
  .ticker-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(8px);
  }
}

.ticker-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.spinner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: blink 1.2s ease-in-out infinite;
}

.spinner-dot:nth-child(2) { animation-delay: 0.2s; }
.spinner-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.7); }
  40% { opacity: 1; transform: scale(1); }
}

.ticker-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1500px);
  margin-inline: auto;
  border-inline: 1px solid var(--border-600);
}

.ticker-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 64px;
  padding: 10px 6px;
  border-right: 1px solid var(--border-600);
  border-bottom: 1px solid var(--border-600);
  background: linear-gradient(180deg, rgba(11, 31, 61, 0.2) 0%, rgba(4, 11, 26, 0.2) 100%);
}

.ticker-item:nth-child(3n) {
  border-right: none;
}

.ticker-item:nth-child(n+4) {
  border-bottom: none;
}

.t-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-300);
}

.t-price {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: var(--text-100);
}

.t-change {
  font-size: 13px;
  font-weight: 700;
}

.t-change.pos { color: var(--success); }
.t-change.neg { color: var(--danger); }

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 60px 0;
  background: linear-gradient(120deg, var(--bg-900) 0%, var(--bg-700) 55%, #08162f 100%);
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-layer-grid {
  background-image: linear-gradient(rgba(107, 239, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(107, 239, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-layer-glow {
  background: radial-gradient(circle at 18% 48%, rgba(9, 222, 241, 0.22) 0%, transparent 50%),
              radial-gradient(circle at 80% 18%, rgba(88, 166, 255, 0.12) 0%, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  animation: reveal 0.6s ease-out both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-brand {
  flex: 0 0 auto;
}

.hero-copy {
  flex: 1 1 auto;
  text-align: center;
}

.hero-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 88px;
}

.hero-title {
  font-size: 2.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-title em {
  display: inline;
  font-style: normal;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header {
  margin-bottom: 26px;
}

.section-title {
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-line {
  width: 50px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.services {
  background: linear-gradient(180deg, rgba(4, 11, 26, 0.96) 0%, rgba(7, 20, 42, 0.98) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-card {
  position: relative;
  border: 1px solid var(--border-600);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(11, 31, 61, 0.45) 0%, rgba(4, 11, 26, 0.82) 100%);
  padding: 22px 18px 20px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: rgba(9, 222, 241, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(2, 10, 24, 0.64);
}

.service-icon {
  width: 34px;
  height: 34px;
  color: var(--accent-primary);
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.06rem;
  line-height: 1.34;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-300);
  font-size: 0.95rem;
  line-height: 1.62;
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card-link .service-icon {
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-card-domain {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-primary);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.domain-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.service-card-link:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(2, 10, 24, 0.7), 0 0 26px rgba(9, 222, 241, 0.22);
}

.service-card-link:hover .service-icon {
  color: var(--accent-primary-soft);
  transform: scale(1.08);
}

.service-card-link:hover .service-card-domain {
  opacity: 1;
}

.service-card-link:hover .domain-arrow {
  transform: translateX(5px);
}

.service-card-link:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

.contact {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-item {
  border: 1px solid var(--border-600);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(11, 31, 61, 0.34) 0%, rgba(4, 11, 26, 0.75) 100%);
}

.c-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.contact-item a,
.contact-item .contact-details span {
  color: var(--text-100);
  display: block;
  font-size: 0.98rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.45;
}

.contact-item a.contact-link {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  color: var(--text-100);
  font-weight: 400;
  transition: text-decoration-color 0.2s ease;
}

.contact-item a.contact-link:hover {
  color: var(--accent-primary);
  text-decoration-color: var(--accent-primary);
}

.company-name {
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 6px;
}

footer {
  border-top: 1px solid var(--border-600);
  background: rgba(4, 11, 26, 0.95);
  padding: 20px 0;
  text-align: center;
}

footer p {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-300);
}

@media (min-width: 768px) {
  :root {
    --container-pad: 26px;
  }

  .hero-logo {
    max-height: 94px;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 1.82rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-pad: 34px;
  }

  .ticker-track {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .ticker-item {
    min-height: 70px;
    border-bottom: none;
  }

  .ticker-item:nth-child(3n) {
    border-right: 1px solid var(--border-600);
  }

  .ticker-item:last-child {
    border-right: none;
  }

  .t-label {
    font-size: 13px;
  }

  .t-price {
    font-size: 18px;
  }

  .hero-logo {
    max-height: 100px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .br-mob2 {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .service-card {
    padding: 26px 20px 22px;
  }

  .service-card h3 {
    font-size: 1.12rem;
  }
}

@media (min-width: 1280px) {
  section:not(.hero) {
    padding: 41px 0;
  }

  .hero-logo {
    max-height: 130px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .br-era {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}





















.contact-form-page {
  position: relative;
  min-height: 100vh;
  padding: 48px 0;
  overflow: hidden;
  background: linear-gradient(120deg, var(--bg-900) 0%, var(--bg-700) 55%, #08162f 100%);
}

.contact-form-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
}

.form-card {
  border: 1px solid var(--border-600);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(11, 31, 61, 0.45) 0%, rgba(4, 11, 26, 0.82) 100%);
  box-shadow: var(--shadow-soft);
  padding: 22px 18px;
}

.form-lead {
  color: var(--text-300);
  margin-bottom: 16px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-100);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border-600);
  border-radius: 10px;
  background: rgba(4, 11, 26, 0.82);
  color: var(--text-100);
  font-family: inherit;
  font-size: 0.98rem;
  padding: 11px 12px;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(9, 222, 241, 0.18);
}

.form-row textarea {
  resize: vertical;
  min-height: 190px;
}

.form-row small {
  color: var(--text-300);
  font-size: 0.85rem;
}

.req {
  color: var(--accent-primary);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.btn-send {
  border: 1px solid var(--accent-primary);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(9, 222, 241, 0.24), rgba(88, 166, 255, 0.24));
  color: var(--text-100);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 11px 16px;
  cursor: pointer;
}

.btn-send:hover {
  border-color: var(--accent-primary-soft);
  transform: translateY(-1px);
}

.form-back {
  color: var(--text-100);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
  width: fit-content;
}

.form-back:hover {
  color: var(--accent-primary);
}

.form-alert {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 0.94rem;
}

.form-alert-success {
  border: 1px solid rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.12);
  color: #b7f7cb;
}

.form-alert-danger {
  border: 1px solid rgba(239, 68, 68, 0.55);
  background: rgba(239, 68, 68, 0.12);
  color: #ffc9c9;
}

.form-alert-danger ul {
  margin-left: 18px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-form-page {
    padding: 62px 0;
  }

  .form-card {
    padding: 28px 24px;
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
}
