/* =========================================================
   THEME
   ========================================================= */

:root {

  --bg: #081018;
  --bg2: #0b151e;
  --bg3: #0f1b25;
  --bg4: #12212c;

  --border: rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.12);

  --text: #f2f7fa;
  --text2: #a9b7c2;
  --text3: #6e7e8a;

  --green: #3dcc8e;
  --green2: #29b878;

  --sky: #4a9ee8;
  --sky2: #7ec8f0;

  --purple: #8888f8;

  --orange: #f0a030;
  --red: #e85a5a;

  --max-w: 1180px;

  --shadow:
    0 25px 80px rgba(0,0,0,.35);

  --glow:
    0 0 40px rgba(74,158,232,.08);
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}



a {

  color: inherit;

  text-decoration: none;
}


button,
input,
select,
textarea {

  font: inherit;
}


button {

  cursor: pointer;
}


/* =========================================================
   NOSCRIPT
   ========================================================= */

noscript div {

  padding: 12px 16px;

  background: #111827;

  color: #fff;

  text-align: center;

  font: 14px/1.5 Arial,sans-serif;
}


/* =========================================================
   TICKER
   ========================================================= */

.ticker {

  height: 30px;

  overflow: hidden;

  border-bottom: 1px solid var(--border);

  background: rgba(7,14,20,.8);

  display: flex;

  align-items: center;
}


.ticker-track {

  width: max-content;

  display: flex;

  gap: 35px;

  padding-left: 100%;

  white-space: nowrap;

  color: var(--text3);

  font-size: 10px;

  letter-spacing: .12em;

  text-transform: uppercase;

  animation: tickerMove 28s linear infinite;
}


.ticker-item::before {

  content: "●";

  color: var(--green);

  margin-right: 8px;

  font-size: 7px;

  vertical-align: middle;
}


@keyframes tickerMove {

  from {
    transform: translateX(0);
  }

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

}


/* =========================================================
   MAIN
   ========================================================= */

main {

  position: relative;

  min-height: 100vh;
}


.contact-section {

  position: relative;

  max-width: var(--max-w);

  margin: 0 auto;

  padding: 90px 28px 110px;
}


/* Decorative grid */

.contact-section::before {

  content: "";

  position: absolute;

  left: 0;
  right: 0;

  top: 0;

  height: 500px;

  pointer-events: none;

  background-image:

    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size: 44px 44px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent
    );
}


/* =========================================================
   HERO
   ========================================================= */

.hero-contact {

  position: relative;

  max-width: 760px;

  margin: 0 auto 55px;

  text-align: center;
}


.section-tag {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: var(--sky);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: .16em;

  text-transform: uppercase;

  margin-bottom: 15px;
}


.section-tag::before {

  content: "";

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 10px rgba(61,204,142,.6);
}


.hero-contact h1 {

  margin: 0;

  font-family: "Outfit", sans-serif;

  font-size: clamp(42px, 6vw, 72px);

  line-height: .95;

  letter-spacing: -.04em;

  font-weight: 800;
}


.hero-contact h1 span {

  color: var(--sky);
}


.hero-contact p {

  max-width: 630px;

  margin: 24px auto 0;

  color: var(--text2);

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   CONTACT GRID
   ========================================================= */

.contact-grid {

  position: relative;

  display: grid;

  grid-template-columns: 360px minmax(0,1fr);

  gap: 22px;

  align-items: stretch;
}


.contact-card,
.form-card {

  position: relative;

  background:

    linear-gradient(
      145deg,
      rgba(255,255,255,.025),
      rgba(255,255,255,.008)
    ),

    var(--bg3);

  border: 1px solid var(--border);

  border-radius: 16px;

  box-shadow: var(--shadow);

  overflow: hidden;
}


.contact-card::after,
.form-card::after {

  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  right: -100px;

  top: -110px;

  border-radius: 50%;

  background: rgba(74,158,232,.08);

  filter: blur(40px);

  pointer-events: none;
}


/* =========================================================
   LEFT INFORMATION CARD
   ========================================================= */

.contact-card {

  padding: 30px;

  display: flex;

  flex-direction: column;
}


.terminal-bar {

  display: flex;

  align-items: center;

  gap: 7px;

  padding-bottom: 25px;

  border-bottom: 1px solid var(--border);
}


.terminal-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;
}


.terminal-title {

  margin-left: 7px;

  color: var(--text3);

  font-family: monospace;

  font-size: 10px;
}


.status {

  margin-left: auto;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  color: var(--green);

  font-size: 10px;
}


.status-dot {

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 9px rgba(61,204,142,.65);
}


.contact-card h2 {

  margin: 28px 0 10px;

  font-family: "Outfit", sans-serif;

  font-size: 28px;

  line-height: 1.1;
}


.contact-card > p {

  margin: 0;

  color: var(--text3);

  font-size: 13px;

  line-height: 1.7;
}


.contact-list {

  display: flex;

  flex-direction: column;

  gap: 11px;

  margin-top: 30px;
}


.contact-info-item {

  display: flex;

  align-items: center;

  gap: 13px;

  padding: 13px;

  border: 1px solid var(--border);

  border-radius: 10px;

  background: rgba(255,255,255,.015);
}


.contact-info-icon {

  width: 38px;

  height: 38px;

  flex: 0 0 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 9px;

  background: rgba(74,158,232,.09);

  border: 1px solid rgba(74,158,232,.13);

  color: var(--sky);
}


.contact-info-icon svg {

  width: 18px;

  height: 18px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.contact-info-label {

  color: var(--text3);

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: .08em;

  margin-bottom: 3px;
}


.contact-info-value {

  color: var(--text2);

  font-size: 12px;

  line-height: 1.4;
}


.contact-note {

  margin-top: auto;

  padding-top: 28px;
}


.contact-note-inner {

  padding: 15px;

  border-radius: 10px;

  border: 1px solid rgba(61,204,142,.13);

  background: rgba(61,204,142,.045);
}


.contact-note-title {

  display: flex;

  align-items: center;

  gap: 7px;

  color: var(--green);

  font-size: 11px;

  font-weight: 600;

  margin-bottom: 7px;
}


.contact-note-title span {

  width: 5px;

  height: 5px;

  border-radius: 50%;

  background: var(--green);
}


.contact-note p {

  margin: 0;

  color: var(--text3);

  font-size: 11px;

  line-height: 1.6;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.form-card {

  padding: 30px;
}


.form-header {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 20px;

  padding-bottom: 24px;

  border-bottom: 1px solid var(--border);
}


.form-header h2 {

  margin: 0 0 6px;

  font-family: "Outfit", sans-serif;

  font-size: 25px;

  font-weight: 700;
}


.form-header p {

  margin: 0;

  color: var(--text3);

  font-size: 12px;

  line-height: 1.6;
}


.form-code {

  color: var(--text3);

  font-family: monospace;

  font-size: 9px;

  white-space: nowrap;

  opacity: .7;
}


form {

  padding-top: 25px;
}


.form-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}


.form-group {

  margin-bottom: 17px;
}


.form-label {

  display: block;

  margin-bottom: 7px;

  color: var(--text2);

  font-size: 11px;

  font-weight: 500;
}


.required {

  color: var(--green);
}


.input-wrap {

  position: relative;
}


.input-icon {

  position: absolute;

  left: 13px;

  top: 50%;

  transform: translateY(-50%);

  width: 16px;

  height: 16px;

  color: var(--text3);

  pointer-events: none;
}


.input-icon svg {

  width: 100%;

  height: 100%;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.form-control {

  width: 100%;

  min-height: 46px;

  padding: 0 13px;

  color: var(--text);

  background: var(--bg2);

  border: 1px solid var(--border2);

  border-radius: 8px;

  outline: none;

  font-size: 12px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}


.has-icon .form-control {

  padding-left: 40px;
}


textarea.form-control {

  min-height: 145px;

  padding: 13px;

  resize: vertical;

  line-height: 1.6;
}


select.form-control {

  appearance: none;

  -webkit-appearance: none;

  padding-right: 38px;
}


.select-arrow {

  position: absolute;

  right: 13px;

  top: 50%;

  transform: translateY(-50%);

  color: var(--text3);

  pointer-events: none;
}


.form-control::placeholder {

  color: #52616c;
}


.form-control:hover {

  border-color: rgba(255,255,255,.17);
}


.form-control:focus {

  border-color: rgba(74,158,232,.65);

  background: #0d1923;

  box-shadow:

    0 0 0 3px rgba(74,158,232,.08),

    0 0 25px rgba(74,158,232,.04);
}


.form-control:invalid:not(:placeholder-shown) {

  border-color: rgba(232,90,90,.5);
}


.message-meta {

  display: flex;

  justify-content: space-between;

  margin-top: 5px;
}


.message-meta span {

  color: var(--text3);

  font-size: 9px;
}


.form-footer {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 18px;

  margin-top: 7px;

  padding-top: 20px;

  border-top: 1px solid var(--border);
}


.privacy-text {

  max-width: 390px;

  color: var(--text3);

  font-size: 10px;

  line-height: 1.6;
}


.privacy-text a {

  color: var(--sky);
}


.submit-btn {

  min-width: 175px;

  min-height: 47px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  border: 1px solid rgba(61,204,142,.35);

  border-radius: 8px;

  background:

    linear-gradient(
      135deg,
      rgba(61,204,142,.18),
      rgba(61,204,142,.08)
    );

  color: var(--green);

  font-size: 12px;

  font-weight: 600;

  transition:

    transform .2s ease,

    background .2s ease,

    box-shadow .2s ease;
}


.submit-btn:hover:not(:disabled) {

  transform: translateY(-1px);

  background: rgba(61,204,142,.18);

  box-shadow:
    0 8px 25px rgba(61,204,142,.08);
}


.submit-btn:disabled {

  opacity: .65;

  cursor: not-allowed;
}


.submit-btn svg {

  width: 16px;

  height: 16px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.spinner {

  display: none;

  width: 14px;

  height: 14px;

  border: 2px solid rgba(61,204,142,.25);

  border-top-color: var(--green);

  border-radius: 50%;

  animation: spin .7s linear infinite;
}


.submit-btn.loading .spinner {

  display: block;
}


.submit-btn.loading .send-icon {

  display: none;
}


@keyframes spin {

  to {
    transform: rotate(360deg);
  }

}


/* =========================================================
   FORM STATUS
   ========================================================= */

.form-status {

  display: none;

  margin-top: 18px;

  padding: 13px 15px;

  border-radius: 9px;

  font-size: 11px;

  line-height: 1.5;
}


.form-status.success {

  display: block;

  color: var(--green);

  background: rgba(61,204,142,.07);

  border: 1px solid rgba(61,204,142,.17);
}


.form-status.error {

  display: block;

  color: #f58c8c;

  background: rgba(232,90,90,.07);

  border: 1px solid rgba(232,90,90,.17);
}


/* =========================================================
   SERVICE STRIP
   ========================================================= */

.service-strip {

  position: relative;

  display: grid;

  grid-template-columns: repeat(4,1fr);

  gap: 12px;

  margin-top: 22px;
}


.service-item {

  padding: 17px;

  border: 1px solid var(--border);

  border-radius: 11px;

  background: rgba(255,255,255,.012);
}


.service-number {

  color: var(--text3);

  font-family: monospace;

  font-size: 9px;

  margin-bottom: 9px;
}


.service-item h3 {

  margin: 0 0 5px;

  color: var(--text);

  font-family: "Outfit", sans-serif;

  font-size: 13px;
}


.service-item p {

  margin: 0;

  color: var(--text3);

  font-size: 10px;

  line-height: 1.55;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

  .contact-grid {

    grid-template-columns:
      310px minmax(0,1fr);
  }

}


@media (max-width: 820px) {

  .contact-section {

    padding-top: 65px;
  }


  .contact-grid {

    grid-template-columns: 1fr;
  }


  .contact-card {

    min-height: auto;
  }


  .contact-note {

    margin-top: 28px;
  }


  .service-strip {

    grid-template-columns: 1fr 1fr;
  }

}


@media (max-width: 580px) {

  .ticker {

    height: 27px;
  }


  .contact-section {

    padding:
      50px 16px
      70px;
  }


  .hero-contact {

    margin-bottom: 35px;
  }


  .hero-contact h1 {

    font-size: 43px;
  }


  .hero-contact p {

    font-size: 13px;
  }


  .contact-card,
  .form-card {

    padding: 21px;

    border-radius: 13px;
  }


  .form-header {

    flex-direction: column;

    gap: 8px;
  }


  .form-code {

    display: none;
  }


  .form-row {

    grid-template-columns: 1fr;

    gap: 0;
  }


  .form-footer {

    flex-direction: column;

    align-items: stretch;
  }


  .privacy-text {

    max-width: none;
  }


  .submit-btn {

    width: 100%;
  }


  .service-strip {

    grid-template-columns: 1fr;
  }

}


.logos-track-contact{
    display: none;
}

.logos-section{
    border: none;
}




/* =========================================================
   PRIVACY CONSENT
   ========================================================= */

.privacy-text {
    margin-top: 18px;
    color: #8aaec8;
    font-size: 12px;
    line-height: 1.7;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}


/* Hide default checkbox */

.privacy-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/* Small custom checkbox */

.checkmark {
    flex: 0 0 14px;

    width: 14px;
    height: 14px;

    margin-top: 3px;

    border: 1px solid #506070;
    border-radius: 3px;

    background: #141920;

    position: relative;

    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


/* Checked */

.privacy-checkbox input:checked + .checkmark {
    background: #12b371;
    border-color: #12b371;
    box-shadow: 0 0 12px rgba(74, 158, 232, .18);
}

/* Check icon */

.privacy-checkbox input:checked + .checkmark::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 7px;

    left: 4px;
    top: 1px;

    border-right: 2px solid #0a1a2c;
    border-bottom: 2px solid #0a1a2c;

    transform: rotate(45deg);
}


/* Keyboard focus */

.privacy-checkbox input:focus-visible + .checkmark {
    outline: 2px solid rgba(74, 158, 232, .35);
    outline-offset: 2px;
}


/* Text */

.privacy-content {
    flex: 1;
}


/* Privacy link */

.privacy-content a {
    color: #7ec8f0;
    text-decoration: none;
    margin-left: 3px;

    transition: color .2s ease;
}

.privacy-content a:hover {
    color: #ffffff;
    text-decoration: underline;
}