/* Premium Real CashBox Style Rules */
:root {
    --primary-color: #1565c0;
    --primary-dark: #0d47a1;
    --dark-text: #212121;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --muted-text: #64748b;
    --font-family: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: #ffffff;
    color: var(--dark-text);
    line-height: 1.6;
}

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

/* Navigáció */
header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: block;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-text);
    text-decoration: none;
    float: left;
}

.logo-accent {
    color: var(--primary-color);
}

.nav-phone {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    float: right;
    font-size: 1.1rem;
    padding-top: 4px;
}

.nav-container::after {
    content: "";
    display: table;
    clear: both;
}

/* Hero szekció */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at 80% 20%, rgba(21,101,192,0.04) 0%, rgba(255,255,255,1) 100%);
}

.hero-grid {
    display: block;
}

.hero-text-block {
    width: 55%;
    float: left;
    padding-right: 40px;
}

.hero-image-block {
    width: 45%;
    float: right;
}

.hero-grid::after {
    content: "";
    display: table;
    clear: both;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(21, 101, 192, 0.08);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text-block p {
    color: var(--muted-text);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-cta-zone .btn {
    float: left;
    margin-right: 15px;
}

.hero-cta-zone::after {
    content: "";
    display: table;
    clear: both;
}

/* Gombok */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;

}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}
   
.btn-secondary {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 26px;
}
.btn-thirty {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 26px;
	margin-top: 10px;
}

.btn-secondary:hover {
    background-color: rgba(21, 101, 192, 0.05);
}

.btn-thirty:hover {
    background-color: rgba(21, 101, 192, 0.05);

}


/* Képkeret */
.image-placeholder {
    background-color: #e2e8f0;
    width: 100%;
    height: 340px;
    border-radius: 8px;
    border: 3px dashed #cbd5e1;
    text-align: center;
    padding-top: 130px;
}

.placeholder-text {
    font-weight: 700;
    color: #475569;
    font-size: 1.1rem;
}

.placeholder-subtext {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Termékek szekció */
.products-section {
    padding: 90px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted-text);
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.05rem;
}

.products-grid {
    display: block;
}

.product-card {
    width: 48%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.products-grid .product-card:first-child {
    float: left;
}

.products-grid .product-card:last-child {
    float: right;
}

.products-grid::after {
    content: "";
    display: table;
    clear: both;
}

.highlighted-card {
    border-top: 5px solid var(--primary-color);
}

.card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
}

.nav-permit {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: #f1f5f9;
    color: #334155;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 8px;
    margin-bottom: 15px;
}

.product-description {
    color: var(--muted-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
    height: 70px;
}

.technical-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.technical-table td {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

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

.price-tag {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    padding-top: 10px;
    border-top: 2px solid #f1f5f9;
}

/* Info és Űrlap szekció */
.info-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.info-grid {
    display: block;
}

.info-text {
    width: 50%;
    float: left;
    padding-right: 50px;
}

.form-container {
    width: 50%;
    float: right;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.04);
}

.info-grid::after {
    content: "";
    display: table;
    clear: both;
}

.info-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.info-text p {
    color: var(--muted-text);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.form-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-lead {
    font-size: 0.9rem;
    color: var(--muted-text);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #334155;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    background-color: #ffffff;
}

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

.select-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

/* FAQ */
.faq-section {
    padding: 60px 0 90px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.faq-inner {
    max-width: 800px;
}

.faq-inner h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--muted-text);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.footer-content p {
    font-size: 0.95rem;
}

.footer-sub {
    font-size: 0.8rem;
    margin-top: 6px;
    color: #64748b;
}

/* Reszponzivitás (Mobil nézet) */
@media (max-width: 992px) {
    .hero-text-block, .hero-image-block, .products-card, .info-text, .form-container, .products-section .product-card {
        width: 100% !important;
        float: none !important;
        padding-right: 0 !important;
    }
    .hero-image-block {
        margin-top: 40px;
    }
    .products-section .product-card:first-child {
        margin-bottom: 30px;
    }
    .form-container {
        margin-top: 40px;
    }
    h1 {
        font-size: 32px;
    }
    .hero-section {
        padding: 50px 0;
    }
	
	.btn-thirty {
	margin-top: 0px;
}
}
