/* =========================================================
   LASER TECH SERVICE
   MAIN.CSS

   STRUCTURE:
   01. Imports
   02. Variables
   03. Base / Reset additions
   04. Typography
   05. Container / General
   06. Floating social menu
   07. Navigation
   08. Hero
   09. Buttons
   10. Devices carousel
   11. Why us / Key section
   12. Parallax service section
   13. Before / After
   14. Services
   15. PDF download
   16. Service form
   17. Instagram
   18. FAQ
   19. Process
   20. Common failures
   21. Contact
   22. Map
   23. 404
   24. Footer
   25. Scroll animations
   26. Tablet
   27. Mobile navigation
   28. Mobile
   29. Small mobile
   30. Reduced motion
========================================================= */


/* =========================================================
   01. IMPORTS
========================================================= */

@import url('./reset.css');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700&display=swap'
);


/* =========================================================
   02. VARIABLES
========================================================= */

:root {

    /* COLORS */

    --black: #171718;
    --black-deep: #0d0d0e;
    --black-soft: #202022;
    --black-card: #1c1c1e;

    --white: #ffffff;

    --text: #1c1c1d;
    --text-soft: #656569;

    --gold: #cbb26a;
    --gold-light: #eadc9d;
    --gold-dark: #a88d48;

    --border: rgba(203, 178, 106, 0.34);
    --border-soft: rgba(255, 255, 255, 0.10);

    --page-bg: #ffffff;
    --section-soft: #f7f7f6;

    /* TYPOGRAPHY */

    --font-main: 'Montserrat', sans-serif;

    /* LAYOUT */

    --container: 1200px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 26px;

    /* SHADOWS */

    --shadow-sm:
        0 8px 24px rgba(0, 0, 0, 0.08);

    --shadow-md:
        0 15px 40px rgba(0, 0, 0, 0.13);

    --shadow-dark:
        0 18px 50px rgba(0, 0, 0, 0.30);

    /* TRANSITIONS */

    --transition:
        0.3s ease;
}


/* =========================================================
   03. BASE / RESET ADDITIONS
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


html,
body {
    min-height: 100%;
}


body {
    margin: 0;

    font-family: var(--font-main);

    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;

    color: var(--text);

    background: var(--page-bg);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body.pl {
    font-family: var(--font-main);
}


body.nav-open {
    overflow: hidden;
}


img {
    display: block;

    max-width: 100%;

    height: auto;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


address {
    font-style: normal;
}


ul,
ol {
    margin: 0;
}


strong {
    font-weight: 700;

    color: var(--gold);
}


::selection {
    color: #000;

    background: var(--gold-light);
}


/* =========================================================
   04. TYPOGRAPHY
========================================================= */


/* -------------------------
   BRAND
------------------------- */

.brand-laser-tech {
    display: block;

    font-family: var(--font-main);

    font-size: 26px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.5px;

    color: var(--white);
}


.brand-service {
    display: block;

    margin-top: 4px;

    font-family: var(--font-main);

    font-size: 13px;
    font-weight: 700;
    font-style: italic;

    line-height: 1;

    letter-spacing: 4.4px;

    color: var(--gold);
}


/* -------------------------
   TITLE 1
------------------------- */

.title-1 {
    margin: 0 0 35px;

    font-family: var(--font-main);

    font-size: clamp(36px, 5vw, 58px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.8px;

    text-align: center;

    color: var(--gold);
}


/* -------------------------
   TITLE 2
------------------------- */

.title-2 {
    margin: 0 0 25px;

    font-size: clamp(24px, 3vw, 38px);

    font-weight: 500;

    line-height: 1.3;

    letter-spacing: -0.8px;
}


/* -------------------------
   TITLE 3
------------------------- */

.title-3 {
    margin: 0 0 24px;

    font-size: clamp(21px, 2.3vw, 30px);

    font-weight: 500;

    line-height: 1.4;

    color: var(--gold);
}


/* =========================================================
   05. CONTAINER / GENERAL
========================================================= */

.container {
    width: 100%;

    max-width: var(--container);

    margin: 0 auto;

    padding-left: 24px;
    padding-right: 24px;
}


.section {
    position: relative;

    padding: 90px 0;
}


.none {
    display: none !important;
}


.content {
    display: flex;

    justify-content: space-between;

    gap: 50px;
}


.container p+p {
    margin-top: 0.7em;
}


/* =========================================================
   06. FLOATING SOCIAL MENU
========================================================= */

.menu {
    position: relative;

    z-index: 1500;
}


menu {
    --size: 44px;
    --radius: 62px;

    position: fixed;

    right: 32px;
    bottom: 38px;

    z-index: 1500;

    margin: 0;
    padding: 0;

    list-style: none;
}


menu>* {
    position: absolute;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(203, 178, 106, 0.28);

    border-radius: 50%;

    background:
        rgba(23, 23, 24, 0.94);

    color: var(--white);

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
}


menu>.action {
    --factor: 0;
    --index: 1;

    width: var(--size);
    height: var(--size);

    right: 9px;
    bottom: 9px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateY(calc(-1 * var(--radius) * var(--factor) * var(--index)));

    transition:
        transform 0.28s ease,
        opacity 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}


menu.open>.action {
    --factor: 1;

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


menu>.action:nth-child(1) {
    --index: 1;
}


menu>.action:nth-child(2) {
    --index: 2;
}


menu>.action:nth-child(3) {
    --index: 3;
}


menu>.action:nth-child(4) {
    --index: 4;
}


menu>.action:nth-child(5) {
    --index: 5;
}


menu>.action img {
    width: 21px;
    height: 21px;

    object-fit: contain;
}


menu>.action:hover {
    border-color: var(--gold);

    background: #242426;

    transform:
        translateY(calc(-1 * var(--radius) * var(--factor) * var(--index))) scale(1.08);
}


menu>.trigger {
    width: 62px;
    height: 62px;

    right: 0;
    bottom: 0;

    padding: 0;

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

    background: #171718;

    transition:
        transform var(--transition),
        background var(--transition);
}


menu>.trigger img {
    width: 27px;
    height: 27px;
}


menu>.trigger:hover {
    background: #242426;

    transform: scale(1.04);
}


/* PULSE */

.pulse::before,
.pulse::after {
    content: '';

    position: absolute;

    inset: -6px;

    z-index: -1;

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

    border-radius: 50%;

    opacity: 0;

    animation: pulse 2.8s linear infinite;
}


.pulse::after {
    animation-delay: 1.4s;
}


@keyframes pulse {

    0% {
        transform: scale(0.75);
        opacity: 0;
    }

    30% {
        opacity: 0.6;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }

}


/* =========================================================
   07. NAVIGATION
   NEW VERSION
========================================================= */

.nav {
    position: sticky;

    top: 0;

    z-index: 1400;

    width: 100%;

    padding: 13px 0;

    border-bottom:
        1px solid rgba(203, 178, 106, 0.18);

    background:
        rgba(14, 14, 15, 0.96);

    color: var(--white);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.10);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);
}


.nav-row {
    display: flex;

    align-items: center;

    min-height: 48px;

    gap: 34px;
}


/* LOGO */

.logo {
    display: inline-flex;

    flex-direction: column;

    flex-shrink: 0;

    margin-right: auto;
}


.logo:hover .brand-laser-tech {
    color: var(--gold-light);
}


/* DESKTOP NAVIGATION */

.nav-list {
    display: flex;

    align-items: center;

    gap: 32px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.nav-list__item {
    margin: 0;
    padding: 0;
}


.nav-list__link {
    position: relative;

    display: inline-flex;

    align-items: center;

    min-height: 40px;

    padding: 5px 0;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    color:
        rgba(255, 255, 255, 0.74);

    transition:
        color var(--transition);
}


.nav-list__link::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: 1px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition:
        width var(--transition);
}


.nav-list__link:hover,
.nav-list__link--active {
    color: var(--white);
}


.nav-list__link:hover::after,
.nav-list__link--active::after {
    width: 100%;
}


/* LANGUAGE SWITCHER */

.language-switcher {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    gap: 6px;

    min-height: 36px;

    padding: 4px 9px;

    border:
        1px solid rgba(203, 178, 106, 0.30);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.035);
}


.language-switcher__link {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 30px;
    height: 27px;

    padding: 0 7px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.6px;

    color:
        rgba(255, 255, 255, 0.55);

    transition:
        color var(--transition),
        background var(--transition);
}


.language-switcher__link:hover {
    color: var(--white);

    background:
        rgba(255, 255, 255, 0.06);
}


.language-switcher__link--active {
    color: #111;

    background:
        linear-gradient(90deg,
            #b98947 0%,
            #eadc9d 100%);
}


.language-switcher__link--active:hover {
    color: #111;

    background:
        linear-gradient(90deg,
            #b98947 0%,
            #eadc9d 100%);
}


.language-switcher__separator {
    font-size: 11px;

    color:
        rgba(255, 255, 255, 0.23);
}


/* BURGER
   hidden on desktop */

.nav-toggle {
    display: none;

    position: relative;

    flex: 0 0 auto;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    width: 44px;
    height: 44px;

    padding: 0;

    border:
        1px solid rgba(203, 178, 106, 0.34);

    border-radius: 10px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--white);

    transition:
        border-color var(--transition),
        background var(--transition);
}


.nav-toggle:hover {
    border-color: var(--gold);

    background:
        rgba(203, 178, 106, 0.06);
}


.nav-toggle:focus-visible {
    outline:
        2px solid var(--gold);

    outline-offset: 3px;
}


.nav-toggle__line {
    display: block;

    width: 21px;
    height: 2px;

    border-radius: 3px;

    background: var(--white);

    transform-origin: center;

    transition:
        transform 0.28s ease,
        opacity 0.2s ease,
        background 0.28s ease;
}


/* BURGER -> X */

.nav.nav--open .nav-toggle__line:nth-child(1) {
    transform:
        translateY(7px) rotate(45deg);
}


.nav.nav--open .nav-toggle__line:nth-child(2) {
    opacity: 0;
}


.nav.nav--open .nav-toggle__line:nth-child(3) {
    transform:
        translateY(-7px) rotate(-45deg);
}


/* =========================================================
   08. HERO
========================================================= */

.header {
    position: relative;

    isolation: isolate;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 610px;

    padding: 90px 20px;

    text-align: center;

    color: var(--white);

    background-image:
        url('./../img/welcome.jpg');

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


.header::before {
    content: '';

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.70) 100%);
}


.header__wrapper {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;
}


.header__title {
    margin: 0 0 26px;
}


.header__title strong {
    display: block;

    font-size:
        clamp(38px, 5.3vw, 68px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2.3px;

    background:
        linear-gradient(90deg,
            #b98947 0%,
            #faf0a1 52%,
            #c9a85e 100%);

    color: transparent;

    background-clip: text;

    -webkit-background-clip: text;
}


.header__text {
    max-width: 760px;

    margin: 0 auto 35px;

    font-size: 19px;

    font-weight: 400;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.87);
}


/* =========================================================
   09. BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 13px 27px;

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

    border-radius: var(--radius-sm);

    background:
        linear-gradient(90deg,
            #b98947 0%,
            #faf0a1 100%);

    color: #111;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: 0.1px;

    box-shadow:
        0 7px 20px rgba(203, 178, 106, 0.16);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        opacity var(--transition);
}


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

    box-shadow:
        0 11px 28px rgba(203, 178, 106, 0.25);
}


.btn:active {
    transform:
        translateY(0);
}


.btn__down {
    margin-top: 30px;
}


.btn-whatsapp {
    margin-left: 10px;
}


.btn-outline {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 12px 22px;

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

    border-radius: var(--radius-sm);

    color: var(--gold);

    background: transparent;

    font-weight: 600;

    transition:
        background var(--transition),
        color var(--transition);
}


.btn-outline:hover {
    color: #111;

    background: var(--gold);
}


/* =========================================================
   10. DEVICES CAROUSEL
========================================================= */

.devices-carousel {
    overflow: hidden;

    padding: 28px 0;

    background: #121213;

    border-top:
        1px solid rgba(255, 255, 255, 0.04);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.04);
}


.carousel-wrapper {
    overflow: hidden;
}


.carousel-track {
    display: flex;

    align-items: center;

    width: max-content;

    cursor: grab;

    user-select: none;
}


.carousel-track:active {
    cursor: grabbing;
}


.device {
    flex: 0 0 220px;

    width: 220px;

    margin-right: 24px;
}


.device img {
    width: 100%;
    height: 145px;

    object-fit: cover;

    border-radius: var(--radius-md);

    opacity: 0.9;

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.30);

    transition:
        transform var(--transition),
        opacity var(--transition);
}


.device img:hover {
    transform: scale(1.035);

    opacity: 1;
}


/* =========================================================
   11. WHY US / KEY SECTION
========================================================= */

.key {
    display: grid;

    grid-template-columns:
        minmax(320px, 0.9fr) minmax(0, 1.1fr);

    align-items: center;

    gap: 70px;
}


.key__img {
    width: 100%;

    margin: 0;
}


.key__img img {
    width: 100%;

    max-height: 570px;

    object-fit: contain;
}


.key__content {
    max-width: 650px;
}


.key__content .title-3 {
    margin-bottom: 25px;
}


.key__content p {
    margin: 0 0 25px;

    padding: 0;

    font-size: 17px;

    line-height: 1.75;

    color: #555;
}


.key__list {
    display: flex;

    flex-direction: column;

    gap: 16px;

    margin: 0 0 35px;

    padding: 0;

    list-style: none;
}


.key__list li {
    position: relative;

    padding-left: 28px;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.65;
}


.key__list li::before {
    content: '';

    position: absolute;

    top: 11px;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 4px rgba(203, 178, 106, 0.13);
}


/* =========================================================
   12. PARALLAX SERVICE SECTION
========================================================= */

.page-section-ptb {
    position: relative;

    isolation: isolate;

    overflow: hidden;

    padding: 110px 0;

    color: var(--white);
}


.page-section-ptb::after {
    content: '';

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.84) 0%,
            rgba(0, 0, 0, 0.63) 55%,
            rgba(0, 0, 0, 0.42) 100%);
}


.page-section-ptb .container {
    position: relative;

    z-index: 3;
}


.jarallax {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    background-position: center;

    background-size: cover;
}


.page-section-ptb .section-title {
    max-width: 760px;

    margin: 0 0 35px;

    text-align: left;
}


.page-section-ptb h6 {
    margin: 0 0 15px;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    color: var(--gold);
}


.page-section-ptb h3 {
    margin: 0;

    font-size:
        clamp(31px, 4vw, 50px);

    font-weight: 600;

    line-height: 1.2;

    color: var(--white);
}


.page-section-ptb ul {
    max-width: 650px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.page-section-ptb ul li {
    position: relative;

    padding:
        9px 0 9px 30px;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.5;

    color:
        rgba(255, 255, 255, 0.91);
}


.page-section-ptb ul li::before {
    content: '';

    position: absolute;

    top: 20px;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--gold);
}


/* =========================================================
   13. BEFORE / AFTER
========================================================= */

.before-after {
    padding: 90px 0;

    background: #121213;

    color: var(--white);
}


.before-after .section-title {
    color: var(--gold);
}


.section-subtitle {
    max-width: 750px;

    margin:
        -15px auto 50px;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.6;

    text-align: center;

    color:
        rgba(255, 255, 255, 0.65);
}


.ba-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


.ba-item {
    overflow: hidden;

    border:
        1px solid rgba(203, 178, 106, 0.15);

    border-radius: var(--radius-lg);

    background: #1a1a1c;

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.20);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.ba-item:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(203, 178, 106, 0.40);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.32);
}


.ba-images {
    display: grid;

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


.ba-item img {
    width: 100%;
    height: 230px;

    object-fit: cover;

    float: none;
}


.ba-labels {
    display: grid;

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


.ba-labels span {
    width: auto;

    padding: 7px 10px;

    background: var(--gold);

    color: #111;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-align: center;
}


.ba-labels span:first-child {
    background: #323234;

    color:
        rgba(255, 255, 255, 0.7);
}


.ba-item h3 {
    margin: 0;

    padding:
        22px 22px 7px;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.4;

    color: var(--white);
}


.ba-item p {
    margin: 0;

    padding:
        0 22px 24px;

    font-size: 14px;

    line-height: 1.65;

    color:
        rgba(255, 255, 255, 0.58);
}


/* =========================================================
   14. SERVICES
========================================================= */

.row {
    display: flex;

    justify-content: center;

    width: 100%;

    text-align: center;
}


.row__item {
    width: 100%;
}


.row__item .section-title {
    max-width: 1000px;

    margin:
        0 auto 35px;
}


.row__item-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        12px 28px;

    max-width: 950px;

    margin:
        30px auto 45px;

    padding: 0;

    list-style: none;

    text-align: left;
}


.row__item-list li {
    position: relative;

    margin: 0;

    padding:
        14px 18px 14px 42px;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.07);

    font-size: 15px;

    font-weight: 500;

    line-height: 1.55;

    text-transform: none;
}


.row__item-list li::before {
    content: '✓';

    position: absolute;

    top: 14px;
    left: 14px;

    color: var(--gold-dark);

    font-size: 16px;

    font-weight: 700;
}


.row__item>p {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   15. PDF DOWNLOAD
========================================================= */

.pdf-download {
    position: relative;

    overflow: hidden;

    padding: 85px 20px;

    text-align: center;

    color: var(--white);

    background:
        linear-gradient(135deg,
            #151516 0%,
            #202022 100%);
}


.pdf-download::before {
    content: '';

    position: absolute;

    top: -150px;
    left: 50%;

    width: 500px;
    height: 300px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(203, 178, 106, 0.09);

    filter: blur(80px);
}


.pdf-download .container {
    position: relative;

    z-index: 2;
}


.pdf-download h2 {
    margin-bottom: 18px;
}


.pdf-download p {
    max-width: 800px;

    margin:
        0 auto 32px;

    font-size: 19px;

    line-height: 1.65;

    color:
        rgba(255, 255, 255, 0.70);
}


.btn-download {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        14px 30px;

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

    border-radius: var(--radius-sm);

    background: var(--gold);

    color: #111;

    font-size: 14px;

    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}


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

    background: transparent;

    color: var(--gold);
}


/* =========================================================
   16. SERVICE FORM
========================================================= */

.contact {
    width: 100%;

    max-width: 850px;

    margin: 0 auto;

    padding: 50px;

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

    border-radius: var(--radius-xl);

    background:
        linear-gradient(145deg,
            #171718 0%,
            #202022 100%);

    color: var(--white);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.18);
}


.contact h2.title-1 {
    margin-bottom: 12px;
}


.contact-form__title {
    margin-bottom: 32px;

    text-align: center;
}


.contact-form__title .title-3 {
    margin-bottom: 0;

    color:
        rgba(255, 255, 255, 0.68);
}


form#contactForm {
    display: flex;

    flex-direction: column;

    width: 100%;
}


.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

    margin-bottom: 15px;
}


.form {
    width: 100%;

    min-height: 54px;

    margin: 0;

    padding:
        14px 17px;

    border:
        1px solid rgba(203, 178, 106, 0.38);

    border-radius: var(--radius-sm);

    outline: none;

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--white);

    font-size: 15px;

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}


.form::placeholder {
    color:
        rgba(255, 255, 255, 0.42);
}


.form:focus {
    border-color: var(--gold);

    background:
        rgba(255, 255, 255, 0.055);

    box-shadow:
        0 0 0 3px rgba(203, 178, 106, 0.10);
}


/* CUSTOM SELECT */

.custom-select {
    position: relative;

    width: 100%;

    border:
        1px solid rgba(203, 178, 106, 0.38);

    border-radius: var(--radius-sm);

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--white);

    font-size: 15px;

    cursor: pointer;

    user-select: none;
}


.select-selected {
    position: relative;

    padding:
        15px 45px 15px 17px;
}


.select-selected::after {
    content: '';

    position: absolute;

    top: 50%;
    right: 18px;

    width: 8px;
    height: 8px;

    border-right:
        2px solid var(--gold);

    border-bottom:
        2px solid var(--gold);

    transform:
        translateY(-70%) rotate(45deg);
}


.select-items {
    position: absolute;

    top:
        calc(100% + 6px);

    left: 0;
    right: 0;

    z-index: 99;

    overflow-y: auto;

    max-height: 0;

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

    border-radius: var(--radius-sm);

    background: #242426;

    opacity: 0;

    visibility: hidden;

    box-shadow: var(--shadow-dark);

    transition:
        max-height 0.3s ease,
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.select-items.show {
    max-height: 230px;

    opacity: 1;

    visibility: visible;
}


.select-items div {
    padding:
        12px 17px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);

    transition:
        background var(--transition),
        color var(--transition);
}


.select-items div:last-child {
    border-bottom: 0;
}


.select-items div:hover {
    background: var(--gold);

    color: #111;
}


.select-items::-webkit-scrollbar {
    width: 5px;
}


.select-items::-webkit-scrollbar-thumb {
    border-radius: 10px;

    background: var(--gold);
}


.consent {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin:
        22px 0;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 12px;

    line-height: 1.55;
}


.consent input {
    flex: 0 0 auto;

    margin-top: 3px;

    accent-color: var(--gold);
}


button.btn {
    width: 100%;

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

    color: #111;
}


.success-message {
    display: none;

    margin-top: 22px;

    text-align: center;

    opacity: 0;

    transition:
        opacity 0.5s ease;
}


.success-message.show {
    display: block;

    opacity: 1;
}


/* =========================================================
   17. INSTAGRAM
========================================================= */

.inst__sub {
    display: grid;

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

    align-items: center;

    gap: 70px;

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.inst__sub.visible {
    opacity: 1;

    transform:
        translateY(0);
}


.inst__title {
    margin: 0;

    text-align: left;
}


.inst__screen {
    position: relative;

    overflow: hidden;

    width: 100%;

    max-width: 400px;

    border:
        1px solid rgba(203, 178, 106, 0.22);

    border-radius: 28px;

    box-shadow:
        0 16px 45px rgba(0, 0, 0, 0.16);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


.inst__screen img {
    width: 100%;

    border-radius: inherit;

    transition:
        transform 0.6s ease;
}


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

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.20);
}


.inst__screen:hover img {
    transform:
        scale(1.025);
}


/* =========================================================
   18. FAQ
========================================================= */

.container__faq {
    overflow: hidden;

    max-width: 950px;

    margin: 0 auto;

    padding:
        10px 32px;

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

    border-radius: var(--radius-lg);

    background: #171718;

    color: var(--white);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.14);
}


.faq__item {
    padding: 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.faq__item:last-child {
    border-bottom: 0;
}


.faq__question {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    width: 100%;

    padding:
        22px 0;

    border: 0;

    background: transparent;

    color: inherit;

    text-align: left;
}


.faq__question:hover {
    background: transparent;
}


.faq__item h3 {
    margin: 0;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.45;

    color:
        rgba(255, 255, 255, 0.92);
}


.faq__arrow {
    flex: 0 0 auto;

    padding: 0;

    color: var(--gold);

    font-size: 15px;

    transition:
        transform 0.35s ease;
}


.faq__item.active .faq__arrow {
    transform:
        rotate(180deg);
}


.faq__answer {
    overflow: hidden;

    max-height: 0;

    padding-right: 50px;

    opacity: 0;

    transform:
        translateY(-7px);

    font-size: 15px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.60);

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        transform 0.4s ease,
        padding 0.4s ease;
}


.faq__item.active .faq__answer {
    max-height: 350px;

    padding-bottom: 23px;

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   19. PROCESS
========================================================= */

.process {
    max-width: 800px;

    margin:
        -10px auto 55px;

    font-size: 18px;

    font-weight: 400;

    line-height: 1.7;

    text-align: center;

    color: var(--text-soft);
}


.process__list {
    display: grid;

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

    align-items: stretch;

    gap: 20px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.process__info {
    position: relative;

    padding:
        27px 22px;

    border:
        1px solid rgba(203, 178, 106, 0.24);

    border-radius: var(--radius-md);

    background: #fff;

    box-shadow:
        0 9px 28px rgba(0, 0, 0, 0.055);
}


.process__info-number {
    display: block;

    margin:
        0 0 20px;

    font-size: 40px;

    font-weight: 800;

    line-height: 1;

    text-align: left;

    color:
        rgba(203, 178, 106, 0.55);
}


.process__info-title {
    margin:
        0 0 12px;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.4;

    text-align: left;

    color: var(--text);
}


.process__info-text {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: var(--text-soft);
}


.process-actions {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 20px;
}


/* =========================================================
   20. COMMON FAILURES
========================================================= */

.faq-text {
    background: var(--section-soft);
}


.section-heading-small {
    max-width: 820px;

    margin:
        0 auto 45px;

    text-align: center;
}


.section-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    color: var(--gold-dark);
}


.section-description {
    max-width: 650px;

    margin:
        -15px auto 0;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.7;
}


.faq-visual {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin-top: 0;
}


.faq-card {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 74px;

    padding: 15px;

    border:
        1px solid rgba(203, 178, 106, 0.25);

    border-radius: var(--radius-sm);

    background: #fff;

    color: #353538;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.45;

    text-align: center;

    cursor: default;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.035);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.faq-card:hover {
    transform:
        translateY(-3px);

    border-color: var(--gold);

    background: #fff;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.07);
}


.faq-card--contact {
    cursor: pointer;

    background: var(--black);

    color: var(--gold);

    border-color: var(--gold);

    font-weight: 600;
}


.faq-card--contact:hover {
    background: #222224;

    color: var(--gold-light);
}


/* =========================================================
   21. CONTACT
========================================================= */

.contact-section {
    position: relative;

    overflow: hidden;

    padding: 95px 0;

    background:
        linear-gradient(145deg,
            #111112 0%,
            #19191b 55%,
            #101011 100%);

    color: var(--white);
}


.contact-section::before {
    content: '';

    position: absolute;

    top: -230px;
    right: -130px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        rgba(203, 178, 106, 0.065);

    filter: blur(70px);

    pointer-events: none;
}


.contact-section__header {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin-bottom: 50px;
}


.contact-section__eyebrow {
    display: block;

    margin-bottom: 12px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3.5px;

    color: var(--gold);
}


.contact-section__title {
    margin:
        0 0 16px;

    font-size:
        clamp(42px, 5vw, 62px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -2px;

    color: var(--white);
}


.contact-section__intro {
    max-width: 680px;

    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color:
        rgba(255, 255, 255, 0.56);
}


.contact-grid {
    position: relative;

    z-index: 2;

    display: grid;

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

    gap: 16px;
}


.contact-card {
    position: relative;

    min-height: 225px;

    padding:
        27px 23px;

    border:
        1px solid rgba(203, 178, 106, 0.27);

    border-radius: var(--radius-md);

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}


.contact-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(203, 178, 106, 0.65);

    background:
        rgba(255, 255, 255, 0.04);
}


.contact-card__icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 43px;
    height: 43px;

    margin-bottom: 30px;

    border:
        1px solid rgba(203, 178, 106, 0.40);

    border-radius: 50%;

    color: var(--gold);

    background:
        rgba(203, 178, 106, 0.06);
}


.contact-card__icon svg {
    width: 20px;
    height: 20px;
}


.contact-card__content h3 {
    margin:
        0 0 10px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.42);
}


.contact-card__content p,
.contact-card__content address,
.contact-card__primary {
    margin: 0;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.6;

    color: var(--white);
}


.contact-card__content span,
.contact-card__secondary {
    display: block;

    margin-top: 5px;

    font-size: 12px;

    line-height: 1.5;

    color:
        rgba(255, 255, 255, 0.42);
}


.contact-card__primary[href^="tel:"] {
    font-family: var(--font-main);

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 0.2px;
}


.contact-card a {
    transition:
        color var(--transition);
}


.contact-card a:hover {
    color: var(--gold);
}


.contact-card__secondary {
    color: var(--gold);

    font-weight: 500;
}


/* =========================================================
   22. MAP
========================================================= */

.map-section {
    width: 100%;

    background: #111112;
}


.map {
    position: relative;

    width: 100%;

    line-height: 0;
}


.map iframe {
    display: block;

    width: 100%;

    height: 430px;

    border: 0;

    filter:
        grayscale(0.18) contrast(1.02);
}


/* =========================================================
   23. 404 PAGE
========================================================= */

.error-page-section {
    background: var(--page-bg);
}


.error-page {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    min-height: 58vh;

    padding:
        90px 20px 80px;

    text-align: center;
}


.error-page__code {
    margin:
        20px 0 10px;

    font-family:
        var(--font-main);

    font-size:
        clamp(110px, 18vw, 220px);

    font-weight: 800;

    line-height: 0.9;

    background:
        linear-gradient(90deg,
            rgba(185, 137, 71, 1) 0%,
            rgba(250, 240, 161, 1) 100%);

    color: transparent;

    background-clip: text;

    -webkit-background-clip: text;
}


.error-page__title {
    margin-bottom: 20px;

    font-family:
        var(--font-main);

    font-size:
        clamp(32px, 5vw, 56px);

    font-weight: 700;

    line-height: 1.1;

    color: var(--text);
}


.error-page__text {
    max-width: 680px;

    margin-bottom: 10px;

    font-size: 21px;

    line-height: 1.6;
}


.error-page__hint {
    max-width: 720px;

    margin-bottom: 35px;

    font-size: 17px;

    line-height: 1.6;

    opacity: 0.7;
}


.error-page__actions {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 35px;
}


.error-page__phone {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    font-size: 17px;
}


.error-page__phone span {
    opacity: 0.65;
}


.error-page__phone a {
    font-family:
        var(--font-main);

    font-weight: 600;

    font-size: 20px;

    color: var(--gold);
}


@media (max-width: 620px) {

    .error-page {
        min-height: 55vh;

        padding:
            65px 15px 60px;
    }


    .error-page__text {
        font-size: 18px;
    }


    .error-page__hint {
        font-size: 15px;
    }


    .error-page__actions {
        width: 100%;

        flex-direction: column;
    }


    .error-page__actions .btn {
        width: 100%;

        max-width: 320px;

        text-align: center;
    }

}


/* =========================================================
   24. FOOTER
========================================================= */

.footer {
    margin-top: auto;

    padding:
        70px 0 20px;

    border-top:
        1px solid rgba(203, 178, 106, 0.15);

    background: #0e0e0f;

    color: var(--white);
}


.footer__main {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.35fr) minmax(190px, 0.75fr) minmax(260px, 1fr);

    align-items: start;

    gap: 70px;

    padding-bottom: 55px;
}


/* COMPANY LEFT */

.footer__company {
    max-width: 390px;

    text-align: left;
}


.footer__brand {
    display: inline-flex;

    flex-direction: column;

    align-items: flex-start;

    margin-bottom: 25px;
}


.footer__brand .brand-laser-tech {
    font-size: 30px;

    font-weight: 800;
}


.footer__brand .brand-service {
    margin-top: 5px;

    font-size: 14px;

    font-weight: 700;

    font-style: italic;

    letter-spacing: 5.2px;
}


.footer__description {
    max-width: 380px;

    margin:
        0 0 27px;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.75;

    color:
        rgba(255, 255, 255, 0.45);
}


/* SOCIAL */

.footer__social {
    display: flex;

    align-items: center;

    gap: 11px;
}


.footer__social a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 35px;
    height: 35px;

    border:
        1px solid rgba(203, 178, 106, 0.23);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.02);

    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}


.footer__social a:hover {
    transform:
        translateY(-2px);

    border-color: var(--gold);

    background:
        rgba(203, 178, 106, 0.07);
}


.footer__social img {
    width: 17px;
    height: 17px;

    object-fit: contain;
}


/* FOOTER COLUMNS */

.footer__column {
    text-align: left;
}


.footer__heading {
    margin:
        0 0 22px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color: var(--gold);
}


.footer__contact-list {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.footer__contact-list li {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 3px;
}


.footer__label {
    font-size: 10px;

    font-weight: 500;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.30);
}


.footer__contact-list a {
    font-size: 13px;

    font-weight: 500;

    color:
        rgba(255, 255, 255, 0.72);

    transition:
        color var(--transition);
}


.footer__contact-list a[href^="tel:"] {
    font-size: 15px;

    font-weight: 600;

    color: var(--white);
}


.footer__contact-list a:hover {
    color: var(--gold);
}


/* COMPANY DATA */

.footer__company-data address {
    margin-bottom: 22px;

    font-size: 13px;

    line-height: 1.75;

    color:
        rgba(255, 255, 255, 0.56);
}


.footer__legal-data {
    display: flex;

    flex-direction: column;

    gap: 6px;

    margin: 0;
}


.footer__legal-data div {
    display: flex;

    align-items: center;

    gap: 10px;
}


.footer__legal-data dt {
    min-width: 48px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.7px;

    color:
        rgba(255, 255, 255, 0.27);
}


.footer__legal-data dd {
    margin: 0;

    font-size: 11px;

    color:
        rgba(255, 255, 255, 0.48);
}


/* FOOTER BOTTOM */

.footer__bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, 0.055);
}


.footer__copyright {
    margin: 0;

    font-size: 10px;

    font-weight: 400;

    letter-spacing: 0.15px;

    color:
        rgba(255, 255, 255, 0.24);
}


.footer__creator {
    margin: 0;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 0.2px;

    color:
        rgba(255, 255, 255, 0.16);
}


.footer__creator a {
    color:
        rgba(203, 178, 106, 0.38);

    transition:
        color var(--transition);
}


.footer__creator a:hover {
    color: var(--gold);
}


/* =========================================================
   25. SCROLL ANIMATIONS
========================================================= */

.scroll-animate {
    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.scroll-left {
    transform:
        translateX(-45px);
}


.scroll-right {
    transform:
        translateX(45px);
}


.scroll-up {
    transform:
        translateY(40px);
}


.scroll-animate.visible {
    opacity: 1;

    transform:
        translate(0, 0);
}


/* =========================================================
   26. TABLET
   <= 900px
========================================================= */

@media (max-width: 900px) {

    /* GENERAL */

    .section {
        padding:
            75px 0;
    }


    /* NAV */

    .nav-row {
        gap: 20px;
    }


    .nav-list {
        gap: 20px;
    }


    .nav-list__link {
        font-size: 13px;
    }


    /* WHY US */

    .key {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .key__img {
        display: none;
    }


    .key__content {
        max-width: 760px;

        margin:
            0 auto;
    }


    /* BEFORE / AFTER */

    .ba-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* PROCESS */

    .process__list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* FAILURES */

    .faq-visual {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .contact-card {
        min-height: 205px;
    }


    /* FOOTER */

    .footer__main {
        grid-template-columns:
            1.3fr 0.8fr 1fr;

        gap: 35px;
    }


    .footer__description {
        font-size: 12px;
    }

}


/* =========================================================
   27. MOBILE NAVIGATION
   <= 760px
========================================================= */

@media (max-width: 760px) {

    .nav {
        padding:
            10px 0;
    }


    .nav-row {
        position: relative;

        min-height: 48px;

        gap: 12px;
    }


    .logo {
        margin-right: auto;
    }


    .language-switcher {
        order: 10;

        min-height: 34px;

        padding:
            3px 6px;

        gap: 3px;
    }


    .language-switcher__link {
        min-width: 28px;

        height: 26px;

        padding:
            0 5px;

        font-size: 10px;
    }


    .nav-toggle {
        display: inline-flex;

        order: 20;
    }


    /*
        MOBILE DROPDOWN

        Menu jest absolutne względem .nav.
        Po zamknięciu nie można go kliknąć.
    */

    .nav-list {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        z-index: 1390;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;

        max-height: 0;

        margin: 0;

        padding:
            0 18px;

        overflow: hidden;

        border-top:
            1px solid rgba(203, 178, 106, 0);

        border-bottom:
            1px solid rgba(203, 178, 106, 0);

        background:
            rgba(14, 14, 15, 0.985);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-8px);

        box-shadow:
            0 20px 35px rgba(0, 0, 0, 0.26);

        backdrop-filter:
            blur(18px);

        -webkit-backdrop-filter:
            blur(18px);

        transition:
            max-height 0.38s ease,
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.28s ease,
            padding 0.28s ease,
            border-color 0.28s ease;
    }


    .nav.nav--open .nav-list {
        max-height: 420px;

        padding:
            12px 18px 18px;

        border-top-color:
            rgba(203, 178, 106, 0.15);

        border-bottom-color:
            rgba(203, 178, 106, 0.20);

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }


    .nav-list__item {
        width: 100%;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.055);
    }


    .nav-list__item:last-child {
        border-bottom: 0;
    }


    .nav-list__link {
        display: flex;

        align-items: center;

        width: 100%;

        min-height: 58px;

        padding:
            8px 2px;

        font-size: 15px;

        font-weight: 500;

        color:
            rgba(255, 255, 255, 0.82);
    }


    .nav-list__link::after {
        display: none;
    }


    .nav-list__link:hover,
    .nav-list__link--active {
        color: var(--gold-light);
    }

}


/* =========================================================
   28. MOBILE
   <= 650px
========================================================= */

@media (max-width: 650px) {

    /* GENERAL */

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }


    .section {
        padding:
            60px 0;
    }


    .title-1 {
        margin-bottom: 25px;

        font-size: 34px;

        letter-spacing: -1.2px;
    }


    .title-2 {
        font-size: 24px;
    }


    .title-3 {
        font-size: 21px;
    }


    /* FLOAT MENU */

    menu {
        right: 18px;
        bottom: 28px;
    }


    /* NAV */

    .brand-laser-tech {
        font-size: 21px;
    }


    .brand-service {
        font-size: 10px;

        letter-spacing: 3.6px;
    }


    .nav-toggle {
        width: 42px;
        height: 42px;
    }


    /* HERO */

    .header {
        min-height: 560px;

        padding:
            70px 18px;
    }


    .header__title strong {
        font-size: 39px;

        letter-spacing: -1.5px;
    }


    .header__text {
        font-size: 16px;

        line-height: 1.65;
    }


    /* CAROUSEL */

    .device {
        flex-basis: 170px;

        width: 170px;

        margin-right: 15px;
    }


    .device img {
        height: 115px;
    }


    /* WHY US */

    .key__list li {
        font-size: 15px;
    }


    .key__content p {
        font-size: 15px;
    }


    /* PARALLAX */

    .page-section-ptb {
        padding:
            80px 0;
    }


    .page-section-ptb h3 {
        font-size: 32px;
    }


    .page-section-ptb ul li {
        font-size: 16px;
    }


    /* BEFORE / AFTER */

    .ba-grid {
        grid-template-columns: 1fr;
    }


    .ba-item img {
        height: 210px;
    }


    /* SERVICES */

    .row__item-list {
        grid-template-columns: 1fr;

        gap: 5px;
    }


    /* FORM */

    .contact {
        padding:
            32px 20px;

        border-radius: 18px;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    /* INSTAGRAM */

    .inst__sub {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .inst__title {
        text-align: center;
    }


    .inst__screen {
        margin:
            0 auto;
    }


    /* FAQ */

    .container__faq {
        padding:
            5px 18px;
    }


    .faq__question {
        padding:
            18px 0;
    }


    .faq__item h3 {
        font-size: 15px;
    }


    .faq__answer {
        padding-right: 20px;

        font-size: 14px;
    }


    /* PROCESS */

    .process {
        margin-bottom: 35px;

        font-size: 16px;
    }


    .process__list {
        grid-template-columns: 1fr;
    }


    .process-actions {
        flex-direction: column;

        align-items: stretch;

        margin-top: 10px;
    }


    .process-actions .btn {
        width: 100%;

        margin-left: 0;
    }


    /* FAILURES */

    .faq-visual {
        grid-template-columns: 1fr;
    }


    /* CONTACT SECTION */

    .contact-section {
        padding:
            70px 0;
    }


    .contact-section__header {
        margin-bottom: 35px;
    }


    .contact-section__title {
        font-size: 42px;
    }


    .contact-section__intro {
        font-size: 14px;
    }


    .contact-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .contact-card {
        display: grid;

        grid-template-columns:
            48px 1fr;

        align-items: start;

        gap: 18px;

        min-height: 0;

        padding:
            22px 20px;
    }


    .contact-card__icon {
        width: 42px;
        height: 42px;

        margin: 0;
    }


    /* MAP */

    .map iframe {
        height: 340px;
    }


    /* FOOTER */

    .footer {
        padding-top: 55px;
    }


    .footer__main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 40px;
    }


    .footer__company {
        max-width: 100%;
    }


    .footer__description {
        max-width: 440px;
    }


    .footer__bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

}


/* =========================================================
   29. SMALL MOBILE
   <= 420px
========================================================= */

@media (max-width: 420px) {

    /* TYPOGRAPHY */

    .title-1 {
        font-size: 29px;
    }


    .title-2 {
        font-size: 21px;
    }


    .title-3 {
        font-size: 19px;
    }


    /* NAV */

    .nav .container {
        padding-left: 14px;
        padding-right: 14px;
    }


    .brand-laser-tech {
        font-size: 18px;
    }


    .brand-service {
        font-size: 8px;

        letter-spacing: 3.1px;
    }


    .language-switcher {
        padding:
            3px 4px;
    }


    .language-switcher__separator {
        display: none;
    }


    .language-switcher__link {
        min-width: 26px;

        padding:
            0 4px;
    }


    .nav-toggle {
        width: 40px;
        height: 40px;
    }


    .nav-toggle__line {
        width: 19px;
    }


    /* HERO */

    .header {
        min-height: 520px;

        padding-top: 60px;
        padding-bottom: 60px;
    }


    .header__title strong {
        font-size: 33px;
    }


    .header__text {
        font-size: 15px;
    }


    /* PARALLAX */

    .page-section-ptb h3 {
        font-size: 27px;
    }


    /* FORM */

    .contact {
        padding:
            27px 16px;
    }


    /* CONTACT */

    .contact-section__title {
        font-size: 36px;
    }


    .contact-card {
        grid-template-columns:
            42px 1fr;

        gap: 14px;

        padding:
            19px 16px;
    }


    .contact-card__primary[href^="tel:"] {
        font-size: 16px;
    }


    /* FOOTER */

    .footer__brand .brand-laser-tech {
        font-size: 25px;
    }


    .footer__brand .brand-service {
        font-size: 11px;

        letter-spacing: 4.3px;
    }


    .footer__creator {
        font-size: 8px;
    }

}


/* =========================================================
   30. REDUCED MOTION / ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }


    .scroll-animate,
    .inst__sub {
        opacity: 1;

        transform: none;
    }

}
