:root {
    --bg: #0e0e0e;
    --panel: #151515;
    --text: #f5f5f5;
    --muted: #b5b5b5;
    --accent: #ffcc00;
}

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #0e0e0e 0%, #121212 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(30px, 5vw, 38px);
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero p {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 32px;
}
.cta {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 16px 28px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
}
.cta1{color: yellow; text-decoration: none; }
.image-placeholder {
    position: relative;          
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;           
    border-radius: 12px;
}
.image-placeholder img {
    position: absolute;          
    inset: 0;                   
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
section {
    padding: 80px 0;
}
.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}
.section-desc {
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 48px;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.problem-card {
    position: relative;
    padding-right: 56px; 
    background: var(--panel);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #222;
}
.problem-card::after {
    content: "✓";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}
.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.service.reverse {
    grid-template-columns: 1fr 1fr;
}
.service-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
}
.service-text p {
    color: var(--muted);
}
.contact {
    background: #111;
    border-top: 1px solid #222;
    text-align: center;
}
.contact-box {
    max-width: 600px;
    margin: auto;
    padding: 48px;
    background: var(--panel);
    border-radius: 16px;
    border: 1px solid #222;
}
.contact-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
}
.contact-box p {
    color: var(--muted);
    margin-bottom: 24px;
}


.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 20px 0;
    border-top: 1px solid #1f1f1f;

    font-size: 14px;
}

/* BAL OLDAL */
.footer-copy {
    color: var(--muted);
    white-space: nowrap;
}

/* TOGGLE */
.footer-toggle {
    position: relative;
}

.footer-toggle summary {
    list-style: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px;
    border-radius: 999px;

    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(255,204,0,0.35);

    transition: background 0.2s ease;
}

.footer-toggle summary::-webkit-details-marker {
    display: none;
}

.footer-toggle summary:hover {
    background: rgba(255,204,0,0.08);
}

.footer-icon {
    font-size: 16px;
}

/* LENYÍLÓ TARTALOM */
.footer-toggle-content {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);

    width: min(520px, 90vw);
    padding: 18px 20px;

    background: var(--panel);
    border: 1px solid #222;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);

    color: var(--text);
}

.footer-toggle-content p {
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.footer-sub {
    font-size: 13px;
    color: var(--muted);
}


@media (max-width: 900px) {
    .hero-grid,
    .service {
        grid-template-columns: 1fr;
    }
    .problem-card {
        padding-right: 24px;
        padding-bottom: 40px;
    }
    .problem-card::after {
        top: auto;
        bottom: 16px;
        right: 16px;
        transform: none;
        font-size: 18px;
    }
}
.warning-box {
    background: #1a1a1a;
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.warning-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 22px;
}

.warning-box p {
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.6;
}
.warning-cta {
    margin-top: 16px;
    font-weight: 600;
    color: var(--text);
}
.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.price-title {
    font-weight: 700;
    font-size: 16px;
    min-height: 48px;
}
.price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    margin: 16px 0;
}
.price-desc {
    font-size: 14px;
    color: var(--muted);
    margin-top: auto;
}
@media (max-width: 900px) {
    body {
        font-size: 16px;
    }
    section {
        padding: 56px 0;
    }
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 64px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero h1 {
        font-size: 34px;
        line-height: 1.25;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .cta {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 18px;
        padding: 18px;
        border-radius: 12px;
    }
    .image-placeholder {
        aspect-ratio: 4 / 3;
    }
    .section-title {
        font-size: 28px;
    }
    .section-desc {
        font-size: 15px;
        margin-bottom: 32px;
    }
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .problem-card {
        padding: 24px;
    }
    .price-card {
        padding: 24px;
    }
    .price-title {
        font-size: 17px;
        min-height: auto;
    }
    .price-value {
        font-size: 26px;
        margin: 12px 0;
    }
    .price-desc {
        font-size: 15px;
    }
    .service,
    .service.reverse {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    .service.reverse .service-text {
        order: 1;
    }
    .service.reverse .image-placeholder {
        order: 2;
    }
    .service-text h3 {
        font-size: 24px;
    }
    .warning-box {
        padding: 24px;
        border-left-width: 3px;
    }
    .warning-box h3 {
        font-size: 20px;
    }
    .contact-box {
        padding: 32px 24px;
    }
    .contact-box h3 {
        font-size: 26px;
    }
    .contact-box p {
        font-size: 16px;
    }
    footer {
        font-size: 13px;
    }
}
@media (max-width: 900px) {
    .mobile-call {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        background: var(--accent);
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 800;
        text-decoration: none;
        z-index: 999;
    }
    body {
        padding-bottom: 56px;
    }
}
.service-item {
    border: 1px solid var(--accent);
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}
.service-item summary {
    list-style: none;
    cursor: pointer;

    padding: 18px 22px;

    font-size: 18px;
    font-weight: 600;
    color: var(--accent);

    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease;
}
.service-item summary::-webkit-details-marker {
    display: none;
}
.service-item summary::after {
    content: "+";
    margin-left: auto;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.service-item[open] summary::after {
    content: "–";
}
.service-item summary:hover {
    background: rgba(255, 204, 0, 0.12);
}
.service-item[open] {
    background: rgba(255, 204, 0, 0.06);
}
.service-icon {
    font-size: 22px;
}
.service-content {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;

    padding: 20px 22px 24px;
    border-top: 1px solid rgba(255, 204, 0, 0.35);
}
.service-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}
.service-content img {
    width: 100%;
    border-radius: 8px;
     height: auto;
    display: block;
}
.site-header {
    background: var(--bg);
    border-bottom: 1px solid #1f1f1f;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo img {
    height: 40px;
    width: auto;
    display: block;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav {
    display: flex;
    gap: 32px;
}
.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}
.main-nav a:hover {
    color: var(--accent);
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    margin: 6px 0;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--panel);
    border-top: 1px solid #222;
}
.mobile-nav a {
    padding: 16px 24px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid #222;
}
.mobile-nav a:hover {
    color: var(--accent);
}
.logo-text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 30px;      
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.2px; 
}
.logo-friday {
    color: var(--text);
    margin-right: 6px; 
}
.logo-vill {
    color: var(--accent);
    display: inline-flex;
    align-items: center;
}
.logo-bolt {
    width: 10px;
    height: 18px;
    margin: 0 2px;
    background: var(--accent);
    clip-path: polygon(
        40% 0%,
        100% 0%,
        60% 45%,
        85% 45%,
        30% 100%,
        45% 55%,
        20% 55%
        );
}
.accordion {
    display: grid;
    gap: 16px;
}
.accordion-item {
    border: 1px solid var(--accent);
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}
.accordion-item summary {
    list-style: none; 
    cursor: pointer;

    padding: 16px 20px;
    
    border-radius: 10px;

    font-weight: 600;
    color: var(--accent);

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition: background 0.2s ease, color 0.2s ease;
}
.accordion-item p {
    padding: 16px 20px 20px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}
.accordion-item summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    transition: transform 0.2s ease;
}
.accordion-item[open] summary {
    background: rgba(255, 204, 0, 0.06);
}
.accordion-item[open] summary::after {
    content: "–";
}
.mobile-call {
    display: none;
}
.mobile-call.is-visible {
    display: flex;
}
@media (max-width: 900px) {

    .site-header {
        position: static;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav.open {
        display: flex;
    }

    .logo-text {
        font-size: 21px;
    }

    .logo-vill {
        font-weight: 600;
    }
    .footer-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .footer-copy {
        white-space: normal;
        text-align: center;
    }

    .footer-toggle summary {
        justify-content: center;
    }

    .footer-toggle-content {
        position: static;
        margin-top: 12px;
        width: 100%;
    }
}

@media (max-width: 700px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    details img {
        aspect-ratio: 16 / 9;
    }
}
details {
    contain: layout;
}
details img {
    aspect-ratio: 4 / 3;
}
