:root
{
    --white: #ffffff;
    --black: #000000;
    --black-l: #3f3f3f;
    --dark: #222222;
    --dark-accent: #666666;
    --gray-light: #00000014;
    --gray-light-d: #00000025;
}
/* Убираем outline, но только для мыши */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Оставляем для клавиатуры (доступность) */
*:focus-visible {
  outline: none;
}
html
{
    scroll-behavior: smooth;
}
html, body {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;

    background-color: var(--white);

    transition: all 150ms ease-in-out;
}
body {
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
    padding: 80px 0 0 0;
}
header, footer {
    flex-shrink: 0;
}
footer
{
    margin-top: 100px;
}
header, footer, main
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
header
{
    width: 100%;
    position: fixed;
    z-index: 20;
    background-color: #ffffff;
}
.wrapper
{
    width: 100%;
    max-width: 1200px;
}
.hero
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 20px;

    box-sizing: border-box;
    padding: 60px 0;
}
.hero-title
{
    font-size: 60px;
    font-weight: 600;
    font-style: normal;
    color: var(--black);
    margin: 0;
    padding: 0;
    line-height: 110%;
}
.hero-subtitle
{
    width: 100%;
    max-width: 800px;

    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
    margin: 0;
    padding: 0;
    line-height: 130%;
}
.hero-notice
{
    color: var(--white);
    background-color: #ffcf00;

    display: inline-block;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 10px;
    transform: rotate(-1deg);

    transition: all 150ms ease-in-out;
}
.hero-notice:hover
{
    transform: rotate(1deg);
}
.hero-notice-2
{
    color: var(--white);
    background-color: #8BC34A;

    display: inline-block;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 10px;
    transform: rotate(1deg);

    transition: all 150ms ease-in-out;
}
.hero-notice-2:hover
{
    transform: rotate(-1deg);
}

.hero-notice-3
{
    color: var(--white);
    background-color: #ff5722;

    display: inline-block;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 10px;
    transform: rotate(-1deg);

    transition: all 150ms ease-in-out;
}
.hero-notice-3:hover
{
    transform: rotate(1deg);
}

.hero-notice-bold
{
    font-weight: 600;
}
.hero-point-wrapper
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;

    gap: 10px;
}
.hero-point
{
    width: 8px;
    min-width: 8px;
    max-width: 8px;
    height: 8px;
    min-height: 8px;
    max-height: 8px;
    background-color: #90a955;
    border-radius: 10px;
    border: 4px solid #ecf39e;
}
.hero-point-text
{
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--dark-accent);
    margin: 0;
    padding: 0;
    line-height: 110%;
}
.hero-separator
{
    width: 100%;
    height: 0px;
    border-bottom: 1px dashed #dadada;
    margin: 20px 0;
}
.hero-counters
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 40px;
}
.hero-counter
{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 10px;
}
.hero-counter-number
{
    font-family: "JetBrains Mono", monospace;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    color: var(--dark);
    margin: 0;
    padding: 0;
    line-height: 110%;

    transition: all 150ms ease-in-out;
}
.hero-counter:hover .hero-counter-number
{
    color: #ff5722;
}
.hero-counter-number-small
{
    font-family: "Inter", sans-serif;
    color: var(--dark-accent);
    font-size: 12px;
    font-weight: 400;
    margin-right: 4px;
}
.hero-counter-text
{
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: var(--dark-accent);
    margin: 0;
    padding: 0;
    line-height: 110%;
}

.header
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    box-sizing: border-box;
    padding: 16px 0;
}
.header-logo
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;

    gap: 20px;

    font-family: "JetBrains Mono", monospace;
    font-size: 32px;
    font-weight: 700;
    font-style: normal;
    color: var(--dark);
    margin: 0;
    padding: 0;
    line-height: 110%;

    text-transform: uppercase;
}
.logo-text-1,
.logo-text-2
{
    transition: all 150ms ease-in-out;
}
.header-logo:hover .logo-text-1
{
    color: #8BC34A;
}
.header-logo:hover .logo-text-2
{
    color: #ffcf00;
}

.logotype
{
    width: 56px;
    height: auto;
}
.phone
{
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    color: #222222;
    margin: 0;
    padding: 0;
    line-height: 110%;

    text-decoration: none;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

    gap: 10px;
}
.header nav
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;

    gap: 30px;
}
.header nav a
{
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    color: #222222;
    margin: 0;
    padding: 0;
    line-height: 110%;

    text-decoration: none;
}
.header-smooth-border
{
    position: relative;
}
.header-smooth-border::after {
    content: "";
    position: absolute;
    bottom: -4px; /* Расстояние от текста до линии */
    left: 50%; /* Начинаем из центра */
    width: 0; /* Изначально линия скрыта */
    height: 2px;
    background-color: var(--dark); /* Линия будет того же цвета, что и текст */
    transition: all 0.3s ease; /* Плавность анимации */
    transform: translateX(-50%); /* Центрируем линию */
}

.header-smooth-border:hover::after {
    width: 100%; /* При наведении растягиваем на всю ширину */
}

.hero-actions
{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;

    margin-top: 16px;

    gap: 16px;
}
.hero-actions-buttons
{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;

    gap: 30px;
}
.hero-actions-point-wrapper
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;

    gap: 10px;
}
.hero-actions-point
{
    width: 8px;
    min-width: 8px;
    max-width: 8px;
    height: 8px;
    min-height: 8px;
    max-height: 8px;
    background-color: #ff5722;
    border-radius: 10px;
    border: 4px solid #f7c7b7;
}
.hero-actions-point-green
{
    width: 8px;
    min-width: 8px;
    max-width: 8px;
    height: 8px;
    min-height: 8px;
    max-height: 8px;
    background-color: #90a955;
    border-radius: 10px;
    border: 4px solid #ecf39e;
}
.hero-actions-point-text
{
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--dark-accent);
    margin: 0;
    padding: 0;
    line-height: 110%;
}
.btn-primary
{
    min-width: 250px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    padding: 16px 32px;

    border: 0;

    cursor: pointer;

    background-color: #222222;
    color: #ffffff;

    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 110%;
    letter-spacing: 1px;

    border-radius: 8px;
    font-family: "Inter", sans-serif;


    transition: all 150ms ease-in-out;

    text-decoration: none;
}
.btn-primary:hover
{
    transform: translateY(-2px);
}
.hero-actions-text
{
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--dark-accent);
    margin: 0;
    padding: 0;
    line-height: 110%;
}

.product-wrapper
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;

    background: #fbfbfb;

    box-sizing: border-box;
    padding: 60px 0;
}
.block-title
{
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--black);
}
.product
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    gap: 20px;
}
.product-column
{
    width: 50%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 20px;
}
.product-column-item
{
    width: 100%;
    height: 100%;
    min-height: 350px;
    background-color: #f2f2f2;

    border-radius: 8px;

    box-sizing: border-box;
    padding: 40px;

    transition: all 150ms ease-in-out;
}
.product-column-item:hover
{
    transform: translateY(-4px);

}
.product-column-item-left:hover
{
    transform: rotate(-1deg);
}
.product-column-item-right:hover
{
    transform: rotate(1deg);
}
.product-column-item-box
{
    background: url(../images/box_clear.png) no-repeat bottom -100px right -80px, #ffffff;
    background-size: contain;
}
.product-column-item-example
{
    background: url(../images/drill.jpg) no-repeat center center, #ffffff;
    background-size: cover;
}
.product-column-item-instruction
{
    background: url(../images/instruction2.png) no-repeat center center, #ffffff;
    background-size: cover;
}
.product-column-item-title
{
    font-size: 26px;
    font-weight: 500;
    font-style: normal;
    color: var(--dark);
    margin: 0 0 24px 0;
    padding: 0;
    line-height: 110%;
}
.product-column-item-title span
{
    font-family: "JetBrains Mono", monospace;
    margin-right: 10px;
}
.product-column-item-text
{
    display: block;
    width: 100%;
    max-width: 400px;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    color: var(--dark);
    margin: 0;
    padding: 0;
    line-height: 135%;
}

.faq-wrapper
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;

    box-sizing: border-box;
    padding: 60px 0;
}
.faq-list
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;

    box-sizing: border-box;

}
.faq-item-group
{
    font-family: "JetBrains Mono", monospace;
    background-color: #000000;
    border:  1px solid #000000;
    color: #ffffff;

    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;

    box-sizing: border-box;
    padding: 20px 30px;
}
.faq-item-group:first-child
{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.faq-item
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;

    box-sizing: border-box;
    padding: 20px 30px;

    gap: 16px;

    border-left:  1px solid #dadada;
    border-right:  1px solid #dadada;
}
.faq-item-question
{
    font-weight: 600;
    line-height: 130%;
}
.faq-item-answer
{
    font-weight: 400;
    line-height: 135%;
}
.faq-item-question-border
{
    border-bottom: 1px dashed #dadada;
}
.faq-item-question-border-full
{
    border-bottom: 1px solid #dadada;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.faq-important
{
    color: #ff5722;
    font-weight: 500;
}
.mb-16
{
    margin-bottom: 16px;
}



.contact-wrapper
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;

    background: #fbfbfb;

    box-sizing: border-box;
    padding: 60px 0;
}
.contact-block
{
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;

    gap: 20px;
}
.contact-block-column-1
{
    width: 60%;
}
.contact-block-column-2
{
    width: 40%;
}
.contact-block-text
{
    font-weight: 400;
    line-height: 135%;
}
.contact-form
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 20px;
}
.form-row
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 8px;
}
.doc-row
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    gap: 4px;
}
.form-row label
{
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.form-row input[type="text"],
.form-row input[type="email"]
{
    width: 100%;
    height: 40px;


    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;

    font-weight: 400;
    font-size: 16px;
    color: #000000;

    background-color: #ffffff;
    border: 1px solid #dadada;
    border-radius: 4px;

    box-sizing: border-box;
    padding: 0 10px;
}
.text-doc
{
    font-weight: 400;
    font-size: 13px;
    color: var(--dark-accent);
    margin: 0;
}
.link-doc
{
    font-weight: 400;
    font-size: 13px;
    color: var(--dark-accent);
}
.link-doc:hover
{
    text-decoration: none;
}
.wrapper-doc
{
    padding-top: 80px;
    padding-bottom: 80px;
}
.wrapper-doc h1
{
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--black);
}
.wrapper-doc h2
{
    font-size: 36px;
    font-weight: 600;
    margin: 20px 0 20px 0;
    color: var(--black);
}
.wrapper-doc h3
{
    font-size: 32px;
    font-weight: 600;
    margin: 20px 0 20px 0;
    color: var(--black);
}
.wrapper-doc h4
{
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0 20px 0;
    color: var(--black);
}
.wrapper-doc h5
{
    font-size: 28px;
    font-weight: 600;
    margin: 20px 0 20px 0;
    color: var(--black);
}
.wrapper-doc p
{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 135%;
}


/* Стиль для уведомления */
#notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #333;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 360px;
}

#notification.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

#notification button {
    background: #8BC34A;
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s;
    white-space: nowrap;
}

#notification button:hover {
    background: #45a049;
}

/* Стили для уведомления "Спасибо" */
#thanks-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #4CAF50;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: none;
    align-items: center;
    gap: 16px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
    max-width: 360px;
    animation: slideUp 0.3s ease;
}

#thanks-notification.show {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#thanks-notification .close-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

#thanks-notification .close-btn:hover {
    background: rgba(255,255,255,0.3);
}


@media (min-width: 0px) and (max-width: 1000px)
{
  .hero-title
  {
    font-size: 32px !important;
  }
  .header
  {
    flex-direction: column;
    gap: 16px;
  }
  .header nav
  {
    display: none;
  }
  main {
    padding: 100px 0 0 0;
  }
  .wrapper
  {
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
  }
  .product,
  .contact-block
  {
    width: 100%;
    flex-direction: column;
  }
  .contact-block-column-1,
  .contact-block-column-2,
  .product-column-item,
  .product-column
  {
    width: 100%;
  }
  .hero-actions-buttons
  {
    flex-direction: column;
    gap: 16px;
  }
  .hero-counters
  {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .hero-counter
  {
    width: 100%;
  }
}

@media (min-width: 0px) and (max-width: 300px)
{
  .hero-title
  {
    font-size: 20px !important;
  }
}
