/* =========================================
   ALAPOK
========================================= */

:root {
    --red: #e21b23;
    --red-dark: #b90f16;
    --black: #111111;
    --dark: #181818;
    --dark-2: #222222;
    --gray-900: #292929;
    --gray-700: #555555;
    --gray-500: #777777;
    --gray-300: #dddddd;
    --gray-200: #eeeeee;
    --gray-100: #f5f6f7;
    --white: #ffffff;

    --max-width: 1200px;

    --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
   font-family: "Inter", Arial, sans-serif;


    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* =========================================
   NAVIGATION
========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #eeeeee;

    backdrop-filter: blur(12px);
}

.nav {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 900;
}

.logo-mark {
    width: 48px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--red);
    color: white;

    font-size: 16px;
    font-weight: 900;

    transform: skew(-8deg);
}

.logo-text {
    font-size: 19px;
    line-height: 1;

    letter-spacing: -0.5px;
}

.logo-text small {
    display: block;

    margin-top: 5px;

    font-size: 8px;
    letter-spacing: 3px;

    color: var(--red);
}


/* MENU */

.main-menu {
    display: flex;
    align-items: center;
    gap: 25px;

    font-size: 13px;
    font-weight: 600;
}

.main-menu > a,
.legal-menu > a {
    position: relative;
    padding: 29px 0;
}

.main-menu > a::after,
.legal-menu > a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 21px;

    width: 0;
    height: 2px;

    background: var(--red);

    transition: var(--transition);
}

.main-menu > a:hover::after,
.legal-menu > a:hover::after {
    width: 100%;
}


/* LEGAL DROPDOWN */

.legal-menu {
    position: relative;
}

.legal-menu > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legal-menu > a span {
    font-size: 15px;
}

.legal-dropdown {
    position: absolute;

    top: 68px;
    right: 0;

    min-width: 250px;

    padding: 10px;

    background: white;
    border: 1px solid #eeeeee;

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition: var(--transition);
}

.legal-menu:hover .legal-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.legal-dropdown a {
    display: block;

    padding: 11px 13px;

    border-radius: 5px;

    font-size: 13px;
}

.legal-dropdown a:hover {
    background: var(--gray-100);
    color: var(--red);
}


/* PHONE */

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 15px;

    background: var(--black);
    color: white;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--red);
    transform: translateY(-2px);
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    background-color: #1b1b1b;

    /*
        FŐKÉP HELYE

        Később például:

        background-image:
        url("images/hero.jpg");

        A saját képedet ide tedd.
    */

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.25) 100%
        ),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.15),
            transparent
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 100px 0;

    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;

    color: #eeeeee;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-badge span {
    width: 8px;
    height: 8px;

    background: var(--red);

    border-radius: 50%;
}

.hero h1 {
    max-width: 800px;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.98;
    letter-spacing: -4px;

    margin-bottom: 30px;
}

.hero h1 strong {
    color: var(--red);
}

.hero-text {
    max-width: 650px;

    color: #dddddd;

    font-size: 18px;
    line-height: 1.7;

    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 23px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 800;

    transition: var(--transition);
}

.btn-primary {
    background: var(--red);
    color: white;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--black);
}


/* HERO INFO */

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;

    color: #cccccc;

    font-size: 12px;
    font-weight: 600;
}

.hero-info strong {
    color: var(--red);
    margin-right: 5px;
}


/* =========================================
   INTRO
========================================= */

.intro {
    padding: 120px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 220px 1fr;

    gap: 70px;
}

.section-label {
    color: var(--red);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}

.intro h2,
.section-heading h2 {
    max-width: 850px;

    margin-bottom: 25px;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.05;
    letter-spacing: -2.5px;
}

.intro h2 span,
.section-heading h2 span,
.direct-section h2 span,
.contact h2 span {
    color: var(--red);
}

.intro p {
    max-width: 750px;

    margin-bottom: 16px;

    color: var(--gray-700);
    font-size: 16px;
}


/* =========================================
   PARTS
========================================= */

.section-light {
    background: var(--gray-100);
}

.parts {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading.center {
    text-align: center;
}

.section-heading p {
    max-width: 650px;

    color: var(--gray-500);

    font-size: 16px;
}

.section-heading.center p {
    margin: 0 auto;
}

.eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--red);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}

.parts-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.part-card {
    padding: 32px;

    background: white;

    border: 1px solid #e8e8e8;

    transition: var(--transition);
}

.part-card:hover {
    transform: translateY(-6px);

    border-color: var(--red);

    box-shadow: var(--shadow);
}

.part-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    background: #fff0f0;

    border-radius: 7px;

    font-size: 23px;
}

.part-card h3 {
    margin-bottom: 10px;

    font-size: 18px;
}

.part-card p {
    color: var(--gray-500);

    font-size: 13px;
}


/* =========================================
   DIRECT SECTION
========================================= */

.direct-section {
    padding: 100px 0;

    background: var(--dark);

    color: white;
}

.direct-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.eyebrow.light {
    color: #ff6268;
}

.direct-section h2 {
    max-width: 550px;

    font-size: clamp(35px, 4vw, 55px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.direct-section p {
    max-width: 550px;

    margin-bottom: 17px;

    color: #bbbbbb;

    font-size: 15px;
}

.btn-white {
    margin-top: 15px;

    background: white;
    color: var(--black);
}

.btn-white:hover {
    background: var(--red);
    color: white;
}


/* =========================================
   HOW IT WORKS
========================================= */

.how {
    padding: 115px 0;
}

.steps {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;
}

.step {
    position: relative;

    padding-top: 20px;
}

.step-number {
    margin-bottom: 25px;

    color: var(--red);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}

.step h3 {
    margin-bottom: 12px;

    font-size: 16px;
}

.step p {
    color: var(--gray-500);

    font-size: 13px;
}


/* =========================================
   DELIVERY
========================================= */

.delivery {
    padding: 80px 0;

    background: #fff3f3;
}

.delivery-box {
    display: flex;

    align-items: center;

    gap: 35px;

    padding: 45px 55px;

    background: white;

    border-left: 5px solid var(--red);

    box-shadow: var(--shadow);
}

.delivery-icon {
    width: 70px;
    height: 70px;

    flex: 0 0 70px;

    display: grid;
    place-items: center;

    background: var(--red);

    color: white;

    border-radius: 50%;

    font-size: 27px;
}

.delivery h2 {
    margin-bottom: 7px;

    font-size: 35px;

    letter-spacing: -1px;
}

.delivery h2 strong {
    color: var(--red);
}

.delivery p {
    max-width: 700px;

    color: var(--gray-700);

    font-size: 14px;
}


/* =========================================
   CONTACT
========================================= */

.contact {
    padding: 120px 0;
}

.contact-content {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.contact h2 {
    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.contact-content > p {
    max-width: 650px;

    margin: 0 auto 40px;

    color: var(--gray-500);
}

.contact-methods {
    display: flex;
    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 15px;

    min-width: 280px;

    padding: 18px 22px;

    border: 1px solid var(--gray-200);

    text-align: left;

    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--red);

    box-shadow: var(--shadow);
}

.contact-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    background: #fff0f0;

    color: var(--red);

    border-radius: 5px;
}

.contact-item small {
    display: block;

    margin-bottom: 2px;

    color: var(--gray-500);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.contact-item strong {
    font-size: 14px;
}


/* =========================================
   LEGAL
========================================= */

.legal-section {
    padding: 110px 0;

    background: var(--gray-100);
}

.legal-document {
    margin-bottom: 20px;

    background: white;

    border: 1px solid #e4e4e4;
}

.legal-document h3 {
    padding: 24px 28px;

    border-bottom: 1px solid #eeeeee;

    font-size: 18px;
}

.document-placeholder {
    padding: 30px;

    color: var(--gray-500);

    font-size: 13px;
}

.document-placeholder strong {
    display: block;

    margin-bottom: 8px;

    color: var(--gray-900);
}

.document-placeholder p {
    color: var(--gray-500);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: var(--dark);

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 70px;

    padding: 70px 0;
}

.footer-logo {
    display: inline-flex;

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;

    color: #999999;

    font-size: 13px;
}

.footer-contact h4,
.footer-links h4 {
    margin-bottom: 20px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.footer-contact a,
.footer-links a {
    display: block;

    margin-bottom: 9px;

    color: #aaaaaa;

    font-size: 13px;

    transition: var(--transition);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #303030;
}

.footer-bottom-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    min-height: 70px;

    color: #777777;

    font-size: 11px;
}

.footer-bottom strong {
    color: #aaaaaa;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .main-menu {
        gap: 15px;
    }

    .nav-phone {
        display: none;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 850px) {

    .nav {
        min-height: 70px;
    }

    .main-menu {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 16px;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .direct-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(90%, 1200px);
    }

    .hero {
        min-height: 650px;

        background-position: 60% center;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        flex-direction: column;

        gap: 10px;
    }

    .intro,
    .parts,
    .how,
    .contact,
    .legal-section {
        padding: 80px 0;
    }

    .parts-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .delivery-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

    .delivery h2 {
        font-size: 29px;
    }

    .contact h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .contact-methods {
        flex-direction: column;
    }

    .contact-item {
        width: 100%;
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom-inner {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 20px 0;

        gap: 8px;
    }

}


/* =========================================
   KISEBB MOBILOK
========================================= */

@media (max-width: 380px) {

    .logo-text {
        font-size: 16px;
    }

    .logo-mark {
        width: 42px;
        height: 38px;
    }

    .hero h1 {
        font-size: 39px;
    }

}

/* =========================================
   KÜLÖN JOGI OLDALAK
========================================= */

.page-header {
    padding: 110px 0 80px;

    background: var(--gray-100);

    border-bottom: 1px solid var(--gray-200);
}

.page-header h1 {
    margin-bottom: 18px;

    font-size: clamp(40px, 5vw, 64px);

    line-height: 1;

    letter-spacing: -2px;
}

.page-header p {
    max-width: 650px;

    color: var(--gray-500);

    font-size: 16px;
}


/* JOGI DOKUMENTUM LISTA */

.legal-page {
    padding: 80px 0 120px;

    background: white;
}

.legal-link {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 30px 35px;

    margin-bottom: 15px;

    border: 1px solid var(--gray-200);

    background: white;

    transition: 0.25s ease;
}

.legal-link:hover {
    border-color: var(--red);

    transform: translateX(5px);

    box-shadow: var(--shadow);
}

.legal-link span {
    display: block;

    margin-bottom: 7px;

    color: var(--red);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.legal-link strong {
    display: block;

    margin-bottom: 5px;

    font-size: 19px;
}

.legal-link p {
    margin: 0;

    color: var(--gray-500);

    font-size: 13px;
}

.legal-link b {
    color: var(--red);

    font-size: 25px;
}


/* DOKUMENTUM OLDAL */

.document-page {
    padding: 80px 0 120px;

    background: var(--gray-100);
}

.back-link {
    display: inline-block;

    margin-bottom: 40px;

    color: var(--red);

    font-size: 13px;
    font-weight: 700;
}

.document-page h1 {
    margin-bottom: 40px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1;

    letter-spacing: -2px;
}

.document-content {
    max-width: 900px;

    padding: 50px;

    background: white;

    border: 1px solid var(--gray-200);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.document-content h2 {
    margin-bottom: 15px;

    font-size: 22px;
}

.document-content p {
    margin-bottom: 15px;

    color: var(--gray-700);

    font-size: 15px;
    line-height: 1.8;
}


/* NEM KATTINTHATÓ TELEFON */

.phone-display {
    display: inline-flex;

    flex-direction: column;

    padding: 15px 20px;

    margin-top: 15px;

    border: 1px solid #444;

    background: #202020;
}

.phone-display span {
    margin-bottom: 3px;

    color: #999;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.phone-display strong {
    color: white;

    font-size: 17px;
}


/* MOBIL */

@media (max-width: 600px) {

    .page-header {
        padding: 80px 0 60px;
    }

    .legal-link {
        padding: 25px 20px;
    }

    .legal-link strong {
        font-size: 16px;
    }

    .document-content {
        padding: 28px 22px;
    }

}
