/* ========================================
   GÉPI FÖLDMUNKA – FŐOLDAL STÍLUSOK
   Szín: Teal rgb(0, 167, 172) + Fekete (#1a1a1a)
   Font Awesome ikonok + Unsplash stock fotók
   ======================================== */

/* === RESET & ALAPOK === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: rgb(0, 167, 172);
    --orange-dark: rgb(0, 134, 138);
    --orange-light: #E6F8F9;
    --orange-glow: rgba(0, 167, 172, 0.15);
    --black: #1a1a1a;
    --black-light: #2d2d2d;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Hind', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.2;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--orange-dark);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

.highlight {
    color: var(--orange);
}

.section-tag {
    display: inline-block;
    background: var(--orange-glow);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.section-tag-center {
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* === GOMBOK === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn i {
    font-size: 0.95em;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === NAVIGÁCIÓ === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.4rem;
    color: var(--orange);
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.logo-highlight {
    color: var(--orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    color: var(--gray-300);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(17, 24, 39, 0.85) 50%,
        rgba(42, 26, 10, 0.80) 100%
    );
}

/* Háromszög dekorációk: tetején/alján levágja, oldalra kilóghat */
.hero,
.intro,
.features,
.services,
.calculator,
.benefits,
.machines,
.comparison,
.contact {
    clip-path: inset(0 -100vw 0 -100vw);
    overflow: visible !important;
}

/* Hero háromszög dekorációk */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 25%;
    right: -60px;
    width: 380px;
    height: 380px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.18) 49.65%, rgba(0,167,172,0.18) 50.35%, transparent 50.35%),
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.18) 49.65%, rgba(0,167,172,0.18) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.18), rgba(0,167,172,0.18));
    background-size: 50% 100%, 50% 100%, 100% 0.7%;
    background-position: left top, right top, bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    transform: rotate(25deg);
    animation: triFloat1 9s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 60%;
    right: -40px;
    width: 150px;
    height: 150px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.12) 49.65%, rgba(0,167,172,0.12) 50.35%, transparent 50.35%),
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.12) 49.65%, rgba(0,167,172,0.12) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.12), rgba(0,167,172,0.12));
    background-size: 50% 100%, 50% 100%, 100% 0.7%;
    background-position: left top, right top, bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    transform: rotate(-15deg);
    animation: triFloat2 11s ease-in-out infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge i {
    font-size: 0.9em;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.08;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--orange), #5CE0E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 1.05rem;
}

.trust-icon {
    color: var(--orange);
    font-size: 1.1rem;
}

/* === BEMUTATKOZÁS === */
.intro {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -80px;
    width: 300px;
    height: 300px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.1) 49.65%, rgba(0,167,172,0.1) 50.35%, transparent 50.35%),
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.1) 49.65%, rgba(0,167,172,0.1) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.1), rgba(0,167,172,0.1));
    background-size: 50% 100%, 50% 100%, 100% 0.7%;
    background-position: left top, right top, bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(35deg);
    animation: triFloat1 10s ease-in-out infinite;
}


.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text .section-title {
    margin-top: 8px;
}

.intro-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    line-height: 1.8;
}

.intro-highlights {
    display: flex;
    gap: 32px;
}

.intro-highlight-item {
    text-align: center;
}

.intro-highlight-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange);
}

.intro-highlight-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* === KONVERZIÓS AJÁNLAT === */
.features {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -50px;
    width: 260px;
    height: 260px;
    background:
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.09) 49.65%, rgba(0,167,172,0.09) 50.35%, transparent 50.35%),
        linear-gradient(to top left, transparent 49.65%, rgba(0,167,172,0.09) 49.65%, rgba(0,167,172,0.09) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.09), rgba(0,167,172,0.09));
    background-size: 100% 50%, 100% 50%, 0.7% 100%;
    background-position: right top, right bottom, left;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(40deg);
    animation: triFloat3 10s ease-in-out infinite 1s;
}

.features::after {
    content: '';
    position: absolute;
    top: 65%;
    right: -55px;
    width: 130px;
    height: 130px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 50% 100%, 50% 100%, 100% 0.7%;
    background-position: left top, right top, bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-55deg);
    animation: triFloat1 11s ease-in-out infinite 2s;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-glow);
}

.feature-card-highlight {
    border-color: var(--orange);
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--white) 100%);
}

.feature-card-highlight:hover {
    border-color: var(--orange);
}

.feature-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    border-radius: 50%;
    font-size: 1.7rem;
    color: var(--orange);
    transition: all var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.93rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* === SZOLGÁLTATÁSOK === */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 400px;
    height: 400px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to top right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 100% 50%, 100% 50%, 0.7% 100%;
    background-position: left top, left bottom, right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(15deg);
    animation: triFloat2 9s ease-in-out infinite;
}

.services::after {
    content: '';
    position: absolute;
    top: 60%;
    left: -35px;
    width: 150px;
    height: 150px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 50% 100%, 50% 100%, 100% 0.7%;
    background-position: left top, right top, bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-30deg);
    animation: triFloat3 12s ease-in-out infinite 2s;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.08);
}

.service-body {
    padding: 24px 20px 28px;
    text-align: center;
    position: relative;
}

.service-icon-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    margin: -44px auto 14px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    border: 3px solid var(--white);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === KALKULÁTOR === */
.calculator {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.calculator::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -70px;
    width: 350px;
    height: 350px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.15) 49.65%, rgba(0,167,172,0.15) 50.35%, transparent 50.35%),
        linear-gradient(to top right, transparent 49.65%, rgba(0,167,172,0.15) 49.65%, rgba(0,167,172,0.15) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.15), rgba(0,167,172,0.15));
    background-size: 100% 50%, 100% 50%, 0.7% 100%;
    background-position: left top, left bottom, right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(50deg);
    animation: triFloat1 10s ease-in-out infinite;
}


.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.calc-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-300);
    margin-bottom: 10px;
}

.calc-group label i {
    color: var(--orange);
    margin-right: 6px;
    width: 18px;
    text-align: center;
}

/* Select */
.calc-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Hind', sans-serif;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F97316' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.calc-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.calc-group select option {
    background: var(--black);
    color: var(--white);
}

/* Range slider */
.calc-range-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calc-range-wrap input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(255,255,255,0.12);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.calc-range-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.calc-range-wrap input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-range-wrap input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
    cursor: pointer;
}

.calc-range-wrap input[type="range"]::-moz-range-track {
    height: 6px;
    background: rgba(255,255,255,0.12);
    border-radius: 3px;
}

.calc-range-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    min-width: 90px;
    text-align: right;
    white-space: nowrap;
}

.calc-difficulty-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* Checkbox */
.calc-checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0 !important;
    padding: 16px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.calc-checkbox-label:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.calc-checkbox-label input[type="checkbox"] {
    display: none;
}

.calc-checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
}

.calc-checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.calc-checkbox-label input[type="checkbox"]:checked ~ .calc-checkbox-custom {
    background: var(--orange);
    border-color: var(--orange);
}

.calc-checkbox-label input[type="checkbox"]:checked ~ .calc-checkbox-custom::after {
    opacity: 1;
}

.calc-surcharge {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Result card */
.calc-result-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid var(--orange);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.calc-result-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.calc-result-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 24px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.calc-result-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
}

.calc-result-note i {
    color: var(--orange);
    margin-right: 6px;
}

.calc-cta-btn {
    width: 100%;
    justify-content: center;
}

/* === ELŐNYÖK === */
.benefits {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -80px;
    width: 200px;
    height: 200px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.14) 49.65%, rgba(0,167,172,0.14) 50.35%, transparent 50.35%),
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.14) 49.65%, rgba(0,167,172,0.14) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.14), rgba(0,167,172,0.14));
    background-size: 50% 100%, 50% 100%, 100% 0.7%;
    background-position: left top, right top, bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(60deg);
    animation: triFloat3 10s ease-in-out infinite;
}

.benefits::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -70px;
    width: 380px;
    height: 380px;
    background:
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.12) 49.65%, rgba(0,167,172,0.12) 50.35%, transparent 50.35%),
        linear-gradient(to top left, transparent 49.65%, rgba(0,167,172,0.12) 49.65%, rgba(0,167,172,0.12) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.12), rgba(0,167,172,0.12));
    background-size: 100% 50%, 100% 50%, 0.7% 100%;
    background-position: right top, right bottom, left;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-45deg);
    animation: triFloat1 12s ease-in-out infinite 1s;
}

.benefits .section-title {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.benefit-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}

.benefit-card:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--orange);
    transition: all var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* === GÉPEINK === */
.machines {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.machines::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -80px;
    width: 300px;
    height: 300px;
    background:
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to top left, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 100% 50%, 100% 50%, 0.7% 100%;
    background-position: right top, right bottom, left;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-25deg);
    animation: triFloat2 9s ease-in-out infinite 2s;
}

.machines::after {
    content: '';
    position: absolute;
    top: 60%;
    right: -45px;
    width: 140px;
    height: 140px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 50% 100%, 50% 100%, 100% 0.7%;
    background-position: left top, right top, bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(45deg);
    animation: triFloat3 11s ease-in-out infinite 1s;
}

.machines-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.machines-grid .machine-card {
    width: calc((100% - 112px) / 5);
}

.machine-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.machine-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.machine-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.machine-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.machine-card:hover .machine-img-wrap img {
    transform: scale(1.06);
}

.machine-body {
    padding: 24px;
}

.machine-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.machine-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === ÖSSZEHASONLÍTÁS === */
.comparison {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -90px;
    width: 360px;
    height: 360px;
    background:
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to top left, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 100% 50%, 100% 50%, 0.7% 100%;
    background-position: right top, right bottom, left;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(20deg);
    animation: triFloat1 10s ease-in-out infinite;
}

.comparison::after {
    content: '';
    position: absolute;
    top: 55%;
    left: -55px;
    width: 180px;
    height: 180px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to top right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 100% 50%, 100% 50%, 0.7% 100%;
    background-position: left top, left bottom, right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-40deg);
    animation: triFloat2 12s ease-in-out infinite 2s;
}

/* ========== FACEBOOK BANNER ========== */
.fb-banner {
    padding: 48px 0;
    background: linear-gradient(135deg, rgb(0, 167, 172) 0%, rgb(0, 120, 124) 100%);
}

.fb-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.fb-banner-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.fb-banner-text h3 i {
    margin-right: 10px;
}

.fb-banner-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 520px;
}

.btn-fb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: rgb(0, 167, 172);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-fb:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-width: 540px;
}

.comparison-table thead {
    background: var(--black);
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.comparison-table th.comp-us {
    background: var(--orange);
    text-align: center;
}

.comparison-table th.comp-others {
    text-align: center;
    color: var(--gray-400);
}

.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.93rem;
}

.comparison-table td.comp-us {
    text-align: center;
    background: var(--orange-light);
    font-weight: 600;
    color: var(--gray-800);
}

.comparison-table td.comp-others {
    text-align: center;
    color: var(--gray-500);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table tbody tr:hover td.comp-us {
    background: #FFF1E0;
}

.comp-check {
    color: #22C55E;
    margin-right: 6px;
}

.comp-x {
    color: #EF4444;
    margin-right: 6px;
}

/* === CTA SZAKASZ === */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.93) 0%, rgba(17, 24, 39, 0.88) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-box {
    text-align: center;
    padding: 20px 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box p strong {
    color: var(--orange);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* === KAPCSOLAT === */
.contact {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -90px;
    width: 300px;
    height: 300px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to top right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 100% 50%, 100% 50%, 0.7% 100%;
    background-position: left top, left bottom, right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(55deg);
    animation: triFloat3 10s ease-in-out infinite 3s;
}

.contact::after {
    content: '';
    position: absolute;
    top: 60%;
    right: -45px;
    width: 160px;
    height: 160px;
    background:
        linear-gradient(to bottom right, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(to bottom left, transparent 49.65%, rgba(0,167,172,0.08) 49.65%, rgba(0,167,172,0.08) 50.35%, transparent 50.35%),
        linear-gradient(rgba(0,167,172,0.08), rgba(0,167,172,0.08));
    background-size: 50% 100%, 50% 100%, 100% 0.7%;
    background-position: left top, right top, bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-10deg);
    animation: triFloat1 11s ease-in-out infinite 1s;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 50%;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--orange);
}

.contact-promise {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--orange-light);
    border: 2px solid var(--orange);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 24px;
}

.promise-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-promise p {
    font-size: 0.93rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* === FORM === */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.required {
    color: var(--orange);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Hind', sans-serif;
    font-size: 0.95rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--gray-50);
    color: var(--black);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 12px;
}

/* === LÁBJEGYZET === */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 172, 0.6), transparent);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);
}

.footer-contact a i {
    width: 18px;
    text-align: center;
    margin-right: 6px;
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.82rem;
}

.footer-legal a:hover {
    color: var(--orange);
}

.footer-copyright {
    font-size: 0.82rem;
    color: var(--gray-600);
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 6px;
}

.footer-credit a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* === VISSZA A TETEJÉRE === */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* === DEKORATÍV KEYFRAME-EK === */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatDiag {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -12px); }
}

@keyframes pulseSoft {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes triFloat1 {
    0%, 100% { translate: 0 0; }
    33% { translate: 8px -12px; }
    66% { translate: -5px -6px; }
}

@keyframes triFloat2 {
    0%, 100% { translate: 0 0; }
    25% { translate: -10px -8px; }
    50% { translate: -4px -15px; }
    75% { translate: 6px -5px; }
}

@keyframes triFloat3 {
    0%, 100% { translate: 0 0; }
    40% { translate: 12px -10px; }
    70% { translate: -3px -14px; }
}

/* === ANIMÁCIÓK === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animációk */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #22C55E;
}

.form-success h3 {
    color: var(--orange);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-500);
}

/* === RESZPONZÍV === */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .machines-grid .machine-card {
        width: calc((100% - 28px) / 2);
    }

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

/* Tablet kicsi */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-visual {
        order: -1;
    }

    .intro-highlights {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .calc-result-card {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .fb-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .fb-banner-text p {
        max-width: 100%;
    }

    .comparison-table {
        min-width: 0;
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid var(--gray-200);
    }

    .comparison-table tbody tr:hover {
        background: transparent;
    }

    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
        text-align: center;
        border-bottom: none;
    }

    .comparison-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.65rem;
        color: var(--gray-400);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 3px;
    }

    .comparison-table td:first-child {
        grid-column: 1 / -1;
        background: var(--black);
        color: var(--white);
        font-weight: 700;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .comparison-table td:first-child::before {
        display: none;
    }

    .comparison-table tbody tr:nth-child(even) td:first-child {
        background: var(--orange);
    }

    .comparison-table td.comp-us {
        background: var(--orange-light);
        border-right: 1px solid var(--gray-100);
    }

    .comparison-table td.comp-others {
        background: var(--gray-50);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s ease;
        border-bottom: 2px solid var(--orange);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav-cta {
        text-align: center;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

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

    .machines-grid .machine-card {
        width: 100%;
    }

    .intro-highlights {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .service-img-wrap {
        height: 200px;
    }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    border-top: 1px solid var(--gray-700);
    z-index: 99999;
    padding: 14px 0;
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.cookie-hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    font-family: 'Hind', sans-serif;
    font-size: 0.88rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin: 0;
}

.cookie-text i {
    color: var(--orange);
    margin-right: 6px;
}

.cookie-link {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.cookie-link:hover {
    color: var(--orange-dark);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.cookie-btn-accept:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--gray-400);
    border-color: var(--gray-600);
}

.cookie-btn-reject:hover {
    color: var(--white);
    border-color: var(--gray-400);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px 0;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .cookie-text {
        font-size: 0.82rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 160px;
    }
}
