:root {
    --bg-color: #0f0f0f;
    --accent-color: #e45b00;
    --text-color: #F8F9FA;
    --gray-color: #555;

    --noise-texture: url(https://i.gyazo.com/a26366e538851a5c569ff648e99b7fd4.png);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 50%, #222222 100%);
    color: var(--text-color);
}

/*                 */
/*     HEADER      */
/*                 */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 5%;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 17px;
    text-decoration: none;
    cursor: pointer;
}

.logo-container img {
    width: 40px;
    height: 40px;
    transition: transform 0.4s ease;
}

.logo-container:hover img {
    transform: rotate(15deg) scale(1.07);
}

.site-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    letter-spacing: -0.3px;
    transition: all 0.35s ease;
    background-image: linear-gradient(90deg, #fff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-container:hover .site-title {
    background-image: linear-gradient(90deg, #e45b00, #ff9a4d);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    font-family: 'Montserrat', system-ui, sans-serif;
}

.nav-links a {
    font-family: 'Montserrat', system-ui, sans-serif;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    transform: translateY(-1px);
}

.btn-login {
    background: var(--accent-color);
    font-family: 'Montserrat', system-ui, sans-serif;
    border: none;
    color: rgb(0, 0, 0);
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: transform 0.2s, background 0.3s;
}

.fas {
    padding-left: 5px;
}

.btn-login:hover {
    background: #ff781f;
    transform: translateY(-0.5px);
}



/*                 */
/*     FOOTER      */
/*                 */
footer {
    padding: 15px 5%;
    padding-top: 7px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(2, 2, 2, 0.9);
    backdrop-filter: blur(10px);
    background-image: var(--noise-texture);
    background-blend-mode: overlay;
}

.footer-left {
    max-width: 500px;
}

.footer-right {
    display: flex;
    gap: 45px;
}

.footer-col h3 {
    font-size: 0.9rem;
    color: rgb(173, 173, 173);
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: var(--gray-color);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 5px;
}



/*                 */
/*     CONTENT     */
/*                 */
.hero {
    text-align: center;
    padding: 100px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #e45b00;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 1.05rem;
    color: #888;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
  }

  .hero-desc strong {
    color: #bbb;
    font-weight: 600;
  }

  .hero-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #333;
    border-left: 2px solid #e45b00;
    padding: 6px 0 6px 14px;
    margin-bottom: 48px;
    text-align: left;
  }

  .hero img {
    width: 100%;
    max-width: 640px;
    border-radius: 4px;
    border: 1px solid #1e1e1e;
    opacity: 0.92;
  }

.copy {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

main {
    flex: 1;
}

/* Sections */
.content-section {
    padding: 80px 7%;
}

.section-divider {
    border: none;
    border-top: 1px solid #1e1e1e;
    margin: 0 7%;
}

.section-label {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.section-sub {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 48px;
    max-width: 480px;
    line-height: 1.6;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
}

.stat-item {
    background: #111;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-value {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-value span {
    font-size: 1.4rem;
    color: #c04a00;
}

.stat-label {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.45;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
}

.feature-card {
    background: #111;
    padding: 28px 26px;
    transition: background 0.2s;
}

.feature-card:hover {
    background: #161616;
}

.feature-icon {
    font-size: 22px;
    margin-bottom: 14px;
    display: block;
}

.feature-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px;
}

.feature-desc {
    font-size: 0.83rem;
    color: #555;
    line-height: 1.55;
}

.feature-desc a {
    color: var(--accent-color);
    text-decoration: none;
}

.feature-desc a:hover {
    text-decoration: underline;
}

.feature-tag {
    display: inline-block;
    margin-top: 10px;
    margin-right: 4px;
    font-size: 0.72rem;
    color: var(--accent-color);
    background: rgba(228, 91, 0, 0.08);
    border: 1px solid rgba(228, 91, 0, 0.2);
    padding: 3px 8px;
    border-radius: 2px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Steps */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #1e1e1e;
    border: 1px solid #1e1e1e;
    border-radius: 4px;
    overflow: hidden;
    max-width: 720px;
}

.step-item {
    background: #111;
    padding: 26px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: background 0.2s;
}

.step-item:hover {
    background: #161616;
}

.step-num {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    opacity: 0.7;
}

.step-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.83rem;
    color: #555;
    line-height: 1.55;
}

.step-desc a {
    color: var(--accent-color);
    text-decoration: none;
}

.step-desc a:hover {
    text-decoration: underline;
}

.step-cta {
    display: inline-block;
    margin-top: 10px;
    background: var(--accent-color);
    color: #000;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.step-cta:hover {
    background: #ff781f;
    transform: translateY(-0.5px);
}




/*                 */
/*     TOOLTIP     */
/*                 */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  background-color: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;

  /* Эффект скрытия */
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s, opacity 0.2s;

  /* Перенос текста */
  width: max-content;
  max-width: 200px;
  white-space: normal;
  line-height: 1.4;
  text-align: center;
}

/* Сверху */
[data-tooltip]:not([data-position="bottom"])::after {
  bottom: 100%;
  margin-bottom: 8px;
}

/* Снизу */
[data-tooltip][data-position="bottom"]::after {
  top: 100%;
  margin-top: 8px;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

[data-tooltip]:not([data-position="bottom"]):hover::after { transform: translateX(-50%) translateY(-5px); }
[data-tooltip][data-position="bottom"]:hover::after { transform: translateX(-50%) translateY(5px); }
