/* ====================================
   CSS Variables
   ==================================== */
:root {
    /* Colors */
    --primary-color: #78c9b1;
    --primary-dark: #5ab09a;
    --secondary-color: #2196F3;
    --accent-green: #00C853;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --border-color: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ====================================
   Reset & Base Styles
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

/* ====================================
   Container
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ====================================
   Typography
   ==================================== */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: var(--spacing-sm);
    text-align: center;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(120, 201, 177, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 201, 177, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Hero „Csomagok megtekintése” gomb – jobban kiemelve */
.btn-packages-cta {
    background: rgba(120, 201, 177, 0.18);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 14px rgba(120, 201, 177, 0.25);
    font-weight: 700;
}

.btn-packages-cta:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(120, 201, 177, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 4px 12px var(--shadow);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

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

/* ====================================
   Header & Navigation
   ==================================== */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-md);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.brand-text {
    color: var(--secondary-color);
}

.brand-separator {
    color: var(--text-light);
}

.brand-sweet {
    color: var(--primary-color);
}

.brand-logo {
    height: 35px;
    width: auto;
    display: block;
}

.macronet-logo-link {
    display: flex;
    align-items: center;
}

.macronet-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -2px 0 10px var(--shadow);
    z-index: 2000;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    margin-bottom: var(--spacing-md);
}

.mobile-menu-link {
    padding: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ====================================
   Hero Animations
   ==================================== */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeRight {
    from {
        opacity: 0;
        transform: translateX(36px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    background: linear-gradient(160deg, #080e1a 0%, #0d1828 55%, #0a1220 100%);
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 75% 50%, rgba(33, 150, 243, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 20% 30%, rgba(120, 201, 177, 0.10) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.05s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.2s;
}

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

.discount-text {
    color: var(--accent-green);
    text-shadow: 0 0 30px rgba(0, 200, 83, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--spacing-sm);
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.35s;
}

.hero-trial {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: var(--spacing-lg);
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.48s;
}

.hero-trial i {
    font-size: 1.125rem;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.58s;
}

.hero-stats {
    display: inline-flex;
    gap: 0;
    flex-wrap: nowrap;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem var(--spacing-md);
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.75s;
}

.stat {
    text-align: center;
    padding: 0 var(--spacing-md);
}

.stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
    white-space: nowrap;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.hero-image {
    position: relative;
    animation: heroFadeRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.25s;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(33, 150, 243, 0.18) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    min-height: 400px;
}

.hero-image-placeholder i {
    font-size: 6rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.hero-image-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
}

.hero-image-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.65),
        0 0 80px rgba(33, 150, 243, 0.12);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.hero-image-img:hover {
    transform: scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 110px rgba(33, 150, 243, 0.22);
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
    animation: pulse 2s infinite;
    z-index: 2;
}

.discount-badge-inner {
    text-align: center;
    color: var(--bg-white);
}

.discount-amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.discount-period {
    display: block;
    font-size: 0.875rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ====================================
   Value Proposition
   ==================================== */
.value-prop {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 2rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.value-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* ====================================
   Pricing Section
   ==================================== */
.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow-hover);
}

@keyframes borderGlow {

    0%,
    100% {
        box-shadow:
            0 0 0 3px var(--primary-color),
            0 0 18px rgba(120, 201, 177, 0.4),
            0 4px 20px var(--shadow);
    }

    50% {
        box-shadow:
            0 0 0 3px var(--secondary-color),
            0 0 28px rgba(33, 150, 243, 0.35),
            0 4px 20px var(--shadow);
    }
}

.pricing-card-featured {
    border: none;
    transform: scale(1.05);
    animation: borderGlow 3s ease-in-out infinite;
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: var(--spacing-md);
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    margin-bottom: var(--spacing-sm);
}

.price-original {
    display: block;
    font-size: 1.125rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-savings {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-green);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-features {
    margin-bottom: var(--spacing-md);
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-features .feature i {
    color: var(--accent-green);
    font-size: 1.125rem;
}

.pricing-features .feature-trial {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-trial-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: var(--spacing-md);
}

.pricing-trial-note i {
    font-size: 1.125rem;
}

/* ====================================
   Channel Showcase
   ==================================== */
.channel-showcase {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #08111d 0%, #0d1a2a 100%);
    overflow: hidden;
}

.channel-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 20% 20%, rgba(120, 201, 177, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 45% 60% at 80% 30%, rgba(33, 150, 243, 0.16) 0%, transparent 68%);
    pointer-events: none;
}

.channel-showcase .container {
    position: relative;
    z-index: 1;
}

.channel-showcase .section-title {
    color: #ffffff;
}

.channel-showcase .section-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.72);
}

.channel-showcase__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
}

.channel-showcase__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.125rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.channel-showcase__pill i {
    color: var(--primary-color);
}

.channel-showcase__embed {
    padding: 1rem;
    border-radius: 24px;
    background: rgba(6, 16, 28, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.channel-showcase__embed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.channel-showcase__embed-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.channel-showcase__embed-note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.66);
}

.channel-showcase__frame {
    width: 100%;
    height: 1060px;
    display: block;
    border: 0;
    border-radius: 20px;
    background: #08111d;
}

.channel-showcase__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

/* ====================================
   Features Section
   ==================================== */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--secondary-color), #1976D2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.75rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--text-light);
}

/* ====================================
   How It Works
   ==================================== */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    position: relative;
}

.step {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 4px 20px var(--shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(120, 201, 177, 0.3);
}

.step-icon {
    margin: var(--spacing-lg) auto var(--spacing-md);
    font-size: 3rem;
    color: var(--secondary-color);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.step-description {
    color: var(--text-light);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(-1 * var(--spacing-lg) / 2);
    top: 44%;
    transform: translate(50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent var(--primary-color);
    opacity: 0.55;
    z-index: 2;
}

/* ====================================
   FAQ Section
   ==================================== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
    line-height: 1.8;
}

/* ====================================
   Testimonials
   ==================================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-rating i {
    color: #FFC107;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ====================================
   Order Form Section
   ==================================== */
.order-form {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.order-info .section-title {
    text-align: left;
}

.order-info .section-subtitle {
    text-align: left;
}

.order-benefits {
    margin-top: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

/* Különleges ajánlat kártya (Net+TV 1000) */
.special-offer-card {
    margin-top: var(--spacing-lg);
    background: var(--bg-white);
    border: 2px dashed var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px var(--shadow);
}

.special-offer-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bg-white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 8px rgba(90, 176, 154, 0.35);
}

.special-offer-intro {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.45;
    padding-left: 0.25rem;
    border-left: 3px solid var(--primary-color);
    padding-left: var(--spacing-sm);
}

.special-offer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.special-offer-speed {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: var(--spacing-sm);
}

.special-offer-speed i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.special-offer-label {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.special-offer-value {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.special-offer-channels {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.special-offer-devices {
    font-size: 0.875rem;
    color: var(--text-light);
}

.special-offer-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: var(--spacing-sm) 0 0.25rem 0;
}

.special-offer-router {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.special-offer-router-img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.special-offer-extra {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.special-offer-router .special-offer-extra {
    margin-bottom: 0;
}

.special-offer-details {
    display: inline-block;
    font-size: 0.9375rem;
    color: var(--secondary-color);
    text-decoration: underline;
    margin-bottom: var(--spacing-sm);
}

.special-offer-details:hover {
    color: var(--primary-dark);
}

.special-offer-cta {
    margin-top: var(--spacing-sm);
}

.order-form-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    margin-bottom: var(--spacing-md);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ====================================
   CTA Section
   ==================================== */
.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-contact {
    margin-top: var(--spacing-md);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-contact a {
    color: var(--bg-white);
    font-weight: 600;
    text-decoration: underline;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--bg-white);
}

.footer-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: var(--spacing-sm);
    color: var(--text-light);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.copyright {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.disclaimer {
    color: var(--text-light);
    font-size: 0.75rem;
}

/* ====================================
   Back to Top Button
   ==================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(120, 201, 177, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* ====================================
   Scroll Reveal
   ==================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ====================================
   Responsive Design
   ==================================== */

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

    .hero .container {
        grid-template-columns: 1fr;
    }

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

    .value-grid,
    .pricing-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .channel-showcase__frame {
        height: 2200px;
    }

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

    .step:not(:last-child)::after {
        display: none;
    }

    .order-content {
        grid-template-columns: 1fr;
    }

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

/* Mobile */
@media (max-width: 767px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .brand-logo {
        height: 28px;
    }

    .macronet-logo {
        height: 32px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

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

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

    .channel-showcase__stats {
        flex-direction: column;
        align-items: stretch;
    }

    .channel-showcase__pill {
        justify-content: center;
        border-radius: var(--radius-lg);
    }

    .channel-showcase__embed {
        padding: 0.75rem;
        border-radius: 18px;
    }

    .channel-showcase__frame {
        height: 1400px;
        border-radius: 16px;
    }

    .channel-showcase__actions {
        flex-direction: column;
    }

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

    .btn-large {
        width: 100%;
    }

    .hero-stats {
        justify-content: space-between;
        width: 100%;
    }

    .stat {
        padding: 0 var(--spacing-sm);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .discount-badge {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }

    .discount-amount {
        font-size: 1.25rem;
    }

    .hero-image-img {
        border-radius: var(--radius-md);
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

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

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    /* Különleges ajánlat kártya – tablet/mobil */
    .special-offer-card {
        max-width: 100%;
        padding: var(--spacing-sm);
    }

    .special-offer-title {
        font-size: 1.125rem;
    }

    .special-offer-price {
        font-size: 1.35rem;
    }

    .special-offer-router {
        flex-wrap: wrap;
    }

    .special-offer-router-img {
        width: 64px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

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

    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .channel-showcase__embed-title {
        font-size: 1rem;
    }

    .channel-showcase__embed-note {
        font-size: 0.875rem;
    }

    .channel-showcase__frame {
        height: 1100px;
    }

    /* Különleges ajánlat kártya – kis mobil */
    .special-offer-card {
        padding: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }

    .special-offer-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .special-offer-intro {
        font-size: 0.9375rem;
    }

    .special-offer-title {
        font-size: 1rem;
    }

    .special-offer-price {
        font-size: 1.25rem;
    }

    .special-offer-router {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .special-offer-router-img {
        width: 56px;
    }

    .special-offer-cta {
        width: 100%;
    }
}