/* =========================================
HELLOSEO - TELJES STÍLUSLAP
Fejléc egységesítve - GOMB FIX SZÍNNEL
========================================= */
/* =========================================
VÁLTOZÓK
========================================= */
:root {
--color-anthracite: #2D3748;
--color-anthracite-dark: #1A202C;
--color-orange: #FF7F00;
--color-orange-dark: #E67300;
--color-white: #FFFFFF;
--color-off-white: #F8F9FA;
--color-light-gray: #EDF2F7;
--color-text-black: #111827;
--color-text-dark: #4A5568;
--font-main: 'Inter', system-ui, -apple-system, sans-serif;
--font-size-base: 16px;
--container-width: 1200px;
--header-height: 100px;
--radius-sm: 4px;
--radius-md: 8px;
--radius-lg: 12px;
--transition: all 0.3s ease;
}
/* =========================================
2. ALAPOK
========================================= */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-main);
font-size: var(--font-size-base);
color: var(--color-text-dark);
background-color: var(--color-off-white);
line-height: 1.6;
padding-top: var(--header-height);
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
ul {
list-style: none;
}
img {
max-width: 100%;
height: auto;
display: block;
}
.container {
width: 100%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 20px;
}
/* =========================================
3. GOMBOK
========================================= */
.btn {
display: inline-block;
padding: 12px 28px;
font-weight: 600;
border-radius: var(--radius-sm);
cursor: pointer;
text-align: center;
transition: var(--transition);
border: 2px solid transparent;
font-size: 1rem;
line-height: 1.4;
}
.btn-primary {
background-color: var(--color-orange);
color: var(--color-white);
border-color: var(--color-orange);
}
.btn-primary:hover {
background-color: var(--color-orange-dark);
border-color: var(--color-orange-dark);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 127, 0, 0.25);
}
.btn-secondary {
background-color: transparent;
color: var(--color-anthracite);
border-color: var(--color-anthracite);
}
.btn-secondary:hover {
background-color: var(--color-anthracite);
color: var(--color-white);
transform: translateY(-2px);
}
/* =========================================
4. FEJLÉC - VÉGLEGES, GOMB FIX SZÍNNEL
========================================= */
.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: var(--header-height);
background-color: var(--color-white);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
z-index: 1000;
display: flex;
align-items: center;
}
.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 20px;
}
/* Logo */
.logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
color: inherit;
flex-shrink: 0;
}
.logo-icon {
width: 60px;
height: 60px;
flex-shrink: 0;
object-fit: contain;
}
.logo-text-wrapper {
display: flex;
flex-direction: column;
gap: 0.1rem;
line-height: 1.1;
}
.logo-text {
font-weight: 700;
font-size: 1.4rem;
white-space: nowrap;
display: flex;
}
.logo-text .hello { color: #111111; }
.logo-text .seo { color: var(--color-orange); }
.logo-subtitle {
font-size: 0.75rem;
color: var(--color-text-dark);
font-weight: 500;
white-space: nowrap;
}
/* Desktop Navigáció */
.desktop-nav {
display: none;
flex: 1;
justify-content: center;
}
.nav-list {
display: flex;
gap: 24px;
align-items: center;
margin: 0;
padding: 0;
}
.nav-link {
color: var(--color-anthracite);
font-weight: 500;
position: relative;
text-decoration: none;
padding: 4px 0;
white-space: nowrap;
transition: var(--transition);
}
.nav-link:hover {
color: var(--color-orange);
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -4px;
left: 0;
background-color: var(--color-orange);
transition: var(--transition);
}
.nav-link:hover::after {
width: 100%;
}
/* AKTÍV OLDAL - NARANCS SZÍN + ALÁHÚZÁS */
.nav-link.active {
color: var(--color-orange) !important;
font-weight: 600;
}
.nav-link.active::after {
width: 100%;
}
/* Fejléc jobb oldal - GOMB FIX MÉRET ÉS SZÍN */
.header-actions {
display: flex;
align-items: center;
gap: 16px;
flex-shrink: 0;
}
/* Explicit szabály a fejléc gombjára, hogy mindig narancs legyen */
.header-actions .btn,
.header-actions a.btn {
background-color: var(--color-orange) !important;
color: #fff !important;
border: 2px solid var(--color-orange) !important;
padding: 10px 24px !important;
font-size: 0.95rem !important;
font-weight: 600 !important;
border-radius: var(--radius-sm) !important;
white-space: nowrap;
line-height: 1.4;
}
.header-actions .btn:hover,
.header-actions a.btn:hover {
background-color: var(--color-orange-dark) !important;
border-color: var(--color-orange-dark) !important;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 127, 0, 0.25);
}
/* Mobil menü gomb */
.mobile-menu-btn {
display: flex;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 20px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 1001;
}
.hamburger-line {
width: 100%;
height: 2px;
background-color: var(--color-anthracite);
transition: var(--transition);
}
/* Mobil navigáció */
.mobile-nav-overlay {
position: fixed;
top: var(--header-height);
left: 0;
width: 100%;
height: calc(100vh - var(--header-height));
background-color: var(--color-white);
transform: translateX(100%);
transition: transform 0.4s ease;
z-index: 999;
overflow-y: auto;
}
.mobile-nav-overlay.active {
transform: translateX(0);
}
.mobile-nav-list {
padding: 40px 20px;
display: flex;
flex-direction: column;
gap: 20px;
}
.mobile-nav-list li a {
font-size: 1.2rem;
font-weight: 600;
color: var(--color-anthracite);
display: block;
padding: 10px 0;
border-bottom: 1px solid var(--color-light-gray);
}
.mobile-nav-list li a.active {
color: var(--color-orange) !important;
}
/* Hamburger animáció */
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
/* =========================================
5. HERO SZEKCIÓ
========================================= */
.hero-section {
position: relative;
width: 100%;
min-height: calc(100vh - var(--header-height));
display: flex;
align-items: center;
background: url('../images/hero-bg.webp') center center / cover no-repeat;
background-attachment: scroll;
}
.hero-section::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.6) 45%, rgba(255,255,255,0.1) 100%);
z-index: 1;
pointer-events: none;
}
.hero-container {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 4rem;
align-items: center;
width: 100%;
max-width: var(--container-width);
margin: 0 auto;
padding: 4rem 20px;
}
.hero-content h1 {
font-size: clamp(2.2rem, 5vw, 3.2rem);
font-weight: 800;
color: var(--color-anthracite);
line-height: 1.2;
margin-bottom: 1.2rem;
}
.text-orange { color: var(--color-orange); }
.hero-subtitle {
font-size: 1.15rem;
color: var(--color-text-dark);
line-height: 1.6;
margin-bottom: 2.5rem;
max-width: 540px;
}
.hero-ctas {
display: flex;
gap: 1rem;
margin-bottom: 2.5rem;
flex-wrap: wrap;
}
.trust-badges {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
}
.badge {
background: rgba(255,255,255,0.8);
border: 1px solid var(--color-light-gray);
padding: 0.6rem 1rem;
border-radius: var(--radius-sm);
font-size: 0.9rem;
color: var(--color-anthracite);
display: flex;
align-items: center;
gap: 0.5rem;
backdrop-filter: blur(4px);
}
.badge .check {
color: var(--color-orange);
font-weight: 700;
}
.hero-visual {
position: relative;
display: flex;
justify-content: center;
align-items: flex-end;
min-height: 520px;
}
.hero-mockup {
width: 100%;
max-width: 560px;
height: auto;
border-radius: var(--radius-lg);
box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.speech-bubble {
position: absolute;
background: var(--color-white);
padding: 1.2rem;
border-radius: var(--radius-lg);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
max-width: 250px;
z-index: 3;
border: 1px solid var(--color-light-gray);
}
.speech-bubble::after {
content: '';
position: absolute;
width: 0; height: 0;
border: 12px solid transparent;
}
.bubble-top { top: 8%; right: -100px; }
.bubble-top::after {
bottom: -24px; left: 40px;
border-top-color: var(--color-white);
border-bottom: 0;
}
.bubble-bottom { bottom: 10%; left: -60px; }
.bubble-bottom::after {
top: -24px; right: 40px;
border-bottom-color: var(--color-white);
border-top: 0;
}
.bubble-header {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 0.5rem;
}
.bubble-header img.avatar {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--color-orange);
}
.bubble-header strong {
font-size: 0.9rem;
color: var(--color-anthracite);
display: block;
}
.bubble-header span {
font-size: 0.75rem;
color: #718096;
}
.speech-bubble p {
font-size: 0.85rem;
color: var(--color-text-dark);
margin: 0;
font-style: italic;
line-height: 1.4;
}
@keyframes float-bubble {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.animate-float {
animation: float-bubble 4.5s ease-in-out infinite;
}
/* =========================================
6. LÁBLÉC
========================================= */
.site-footer {
background-color: var(--color-anthracite-dark);
color: #A0AEC0;
padding: 4rem 0 2rem;
margin-top: 4rem;
}
.footer-grid {
display: grid;
grid-template-columns: 1fr;
gap: 2.5rem;
margin-bottom: 2rem;
}
.footer-col h4 {
color: var(--color-white);
font-size: 1.1rem;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.footer-col h4::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 30px;
height: 2px;
background-color: var(--color-orange);
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a:hover {
color: var(--color-orange);
padding-left: 5px;
}
.footer-intro {
margin-top: 20px;
font-size: 0.95rem;
}
.footer-logo-wrapper {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 1rem;
}
.footer-logo-icon {
width: 100px;
height: 100px;
object-fit: contain;
filter: brightness(0) invert(1);
}
.footer-logo-text-wrapper {
display: flex;
flex-direction: column;
}
.footer-logo-text {
font-size: 1.8rem;
font-weight: 700;
color: #FFFFFF;
display: flex;
}
.footer-logo-text .hello { color: #FFFFFF; }
.footer-logo-text .seo { color: var(--color-orange); }
address { font-style: normal; }
.contact-list {
font-style: normal;
padding: 0;
margin: 0;
}
.contact-item {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 14px;
line-height: 1.5;
}
.contact-item a {
color: inherit;
text-decoration: none;
transition: color 0.2s ease;
}
.contact-item a:hover {
color: var(--color-orange);
}
.icon-box {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: var(--color-anthracite);
border-radius: 8px;
flex-shrink: 0;
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}
.icon-box svg {
width: 18px;
height: 18px;
stroke: #FFFFFF;
}
.icon-box:hover {
transform: rotateY(180deg);
background-color: var(--color-orange);
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
font-size: 0.85rem;
text-align: center;
}
.footer-bottom p {
margin: 0;
line-height: 1.4;
opacity: 0.85;
}
.tech-badge {
background-color: rgba(255, 255, 255, 0.08);
padding: 0.4rem 0.9rem;
border-radius: 20px;
font-size: 0.75rem;
white-space: nowrap;
}
/* =========================================
7. RESZPONZÍV SZABÁLYOK
========================================= */
@media (min-width: 768px) {
.desktop-nav { display: flex; }
.mobile-menu-btn { display: none; }
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
.footer-bottom {
flex-direction: row;
justify-content: space-between;
text-align: left;
}
}
@media (max-width: 768px) {
.site-header { height: 120px; }
.logo-icon { width: 50px; height: 50px; }
.logo-text { font-size: 1.25rem; }
.logo-subtitle { font-size: 0.7rem; }
body { padding-top: 120px; }
}
/* =========================================
8. TOVÁBBI SZEKCIÓK
========================================= */
.target-section,
.process-section,
.workflow-section,
.pricing-section,
.usp-section,
.final-cta-section {
padding: 6rem 0;
}
.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 4rem auto;
}
.section-header h2 {
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 800;
color: var(--color-anthracite);
margin-bottom: 1rem;
line-height: 1.2;
}
.section-subtitle {
font-size: 1.1rem;
color: var(--color-text-dark);
line-height: 1.6;
}
/* Bento Grid */
.bento-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}
.bento-card {
background-color: var(--color-white);
padding: 2rem;
border-radius: var(--radius-md);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
border: 1px solid transparent;
transition: var(--transition);
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
position: relative;
overflow: hidden;
}
.bento-card::before {
content: '';
position: absolute;
inset: 0;
background-color: var(--color-light-gray);
opacity: 0;
transition: opacity 0.3s ease;
z-index: 0;
border-radius: var(--radius-md);
}
.bento-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
border-color: var(--color-orange);
}
.bento-card:hover::before {
opacity: 1;
}
.bento-card > * {
position: relative;
z-index: 1;
}
.card-icon-wrapper {
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.25rem;
background-color: rgba(255, 127, 0, 0.1);
border-radius: var(--radius-sm);
flex-shrink: 0;
}
.icon-orange {
width: 28px;
height: 28px;
color: var(--color-orange);
}
.bento-card h3 {
font-size: 1.1rem;
font-weight: 700;
color: var(--color-text-black);
margin-bottom: 0.75rem;
line-height: 1.4;
}
.bento-card p {
font-size: 0.95rem;
color: var(--color-text-dark);
line-height: 1.6;
margin: 0;
}
/* Folyamat szekció */
.process-section {
background-color: var(--color-white);
}
.process-flow {
display: flex;
align-items: stretch;
gap: 2rem;
position: relative;
}
.process-card {
flex: 1;
padding: 2.5rem;
border-radius: var(--radius-lg);
border: 2px solid transparent;
transition: var(--transition);
display: flex;
flex-direction: column;
position: relative;
}
.card-primary {
background-color: var(--color-white);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.card-secondary {
background-color: var(--color-light-gray);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}
.process-card:hover {
border-color: var(--color-anthracite);
transform: translateY(-3px);
}
.step-badge {
position: absolute;
top: 1.5rem;
right: 1.5rem;
background-color: var(--color-orange);
color: var(--color-white);
font-size: 0.85rem;
font-weight: 700;
padding: 0.4rem 0.9rem;
border-radius: 20px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.feature-list {
margin: 0 0 2rem 0;
padding: 0;
list-style: none;
}
.feature-list li {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 0.8rem;
font-size: 0.95rem;
color: var(--color-text-dark);
}
.feature-list .icon-check {
width: 18px;
height: 18px;
color: var(--color-orange);
flex-shrink: 0;
margin-top: 3px;
}
.process-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--color-orange);
font-weight: 600;
font-size: 1rem;
transition: var(--transition);
margin-top: auto;
}
.process-link:hover {
color: var(--color-orange-dark);
gap: 0.75rem;
}
.process-link .icon-arrow {
width: 18px;
height: 18px;
transition: transform 0.2s ease;
}
.process-link:hover .icon-arrow {
transform: translateX(3px);
}
.process-arrow {
display: none;
align-items: center;
justify-content: center;
color: var(--color-orange);
}
.process-arrow svg {
width: 40px;
height: 40px;
opacity: 0.6;
}
/* Timeline */
.timeline {
list-style: none;
padding: 0;
margin: 0;
position: relative;
display: flex;
flex-direction: column;
gap: 2rem;
}
@media (min-width: 992px) {
.timeline {
flex-direction: row;
justify-content: space-between;
}
.timeline::before {
content: '';
position: absolute;
top: 40px;
left: 10%;
right: 10%;
height: 2px;
background-color: var(--color-anthracite);
z-index: 0;
opacity: 0.3;
}
}
.timeline-item {
position: relative;
z-index: 1;
flex: 1;
min-width: 0;
}
.timeline-card {
background-color: var(--color-white);
border-radius: var(--radius-lg);
padding: 2rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
border: 1px solid var(--color-light-gray);
transition: var(--transition);
display: flex;
flex-direction: column;
align-items: flex-start;
height: 100%;
}
.timeline-card:hover {
border-color: var(--color-orange);
transform: translateY(-3px);
}
.step-number {
position: absolute;
top: -20px;
left: 2rem;
width: 40px;
height: 40px;
background-color: var(--color-orange);
color: var(--color-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 1.1rem;
border: 4px solid var(--color-white);
box-shadow: 0 4px 10px rgba(255, 127, 0, 0.3);
z-index: 2;
}
.step-icon-wrapper {
width: 56px;
height: 56px;
background-color: rgba(255, 127, 0, 0.1);
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin: 1.5rem 0 1rem 0;
flex-shrink: 0;
}
.step-content h3 {
font-size: 1.25rem;
font-weight: 700;
color: var(--color-anthracite);
margin-bottom: 0.75rem;
}
.step-content p {
color: var(--color-text-dark);
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 1rem;
}
.step-details {
background-color: var(--color-light-gray);
border-radius: var(--radius-sm);
padding: 1rem;
margin-top: auto;
}
.detail-list {
list-style: none;
padding: 0;
margin: 0;
}
.detail-list li {
font-size: 0.85rem;
color: var(--color-text-dark);
line-height: 1.5;
padding-left: 1rem;
position: relative;
margin-bottom: 0.5rem;
}
.detail-list li:last-child {
margin-bottom: 0;
}
.detail-list li::before {
content: '';
position: absolute;
left: 0;
top: 0.5rem;
width: 6px;
height: 6px;
background-color: var(--color-orange);
border-radius: 50%;
}
/* Pricing */
.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
align-items: stretch;
}
.pricing-card {
background-color: var(--color-white);
border: 2px solid transparent;
border-radius: var(--radius-lg);
padding: 2.5rem 2rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: column;
position: relative;
transition: var(--transition);
}
.pricing-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.pricing-card.featured {
border-color: var(--color-orange);
box-shadow: 0 8px 20px -5px rgba(255, 127, 0, 0.15);
transform: scale(1.02);
z-index: 2;
}
.badge-popular {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background-color: var(--color-orange);
color: var(--color-white);
font-size: 0.8rem;
font-weight: 700;
padding: 0.35rem 1rem;
border-radius: 20px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.card-header h3 {
font-size: 1.5rem;
font-weight: 800;
color: var(--color-anthracite);
margin-bottom: 0.25rem;
}
.plan-desc {
font-size: 0.95rem;
color: var(--color-text-dark);
margin-bottom: 1.5rem;
}
.price-block {
display: flex;
flex-direction: column;
margin-bottom: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--color-light-gray);
}
.price-block .amount {
font-size: 2.2rem;
font-weight: 800;
color: var(--color-text-black);
line-height: 1.1;
}
.price-block .period {
font-size: 0.9rem;
color: var(--color-text-dark);
margin-top: 0.25rem;
}
.text-muted {
color: #718096;
font-style: italic;
font-size: 0.9rem;
}
.icon-minus {
width: 18px;
height: 18px;
color: #CBD5E0;
flex-shrink: 0;
margin-top: 2px;
}
.pricing-maintenance-note {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
background-color: var(--color-light-gray);
border-radius: var(--radius-md);
padding: 1rem 1.5rem;
margin-top: 2.5rem;
font-size: 0.95rem;
color: var(--color-text-dark);
}
.pricing-maintenance-note a {
color: var(--color-orange);
font-weight: 600;
}
.pricing-actions {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
margin-top: 2.5rem;
}
.btn-action {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.6rem;
padding: 14px 28px;
min-width: 260px;
font-size: 1rem;
transition: var(--transition);
}
.icon-btn {
width: 18px;
height: 18px;
flex-shrink: 0;
}
/* USP */
.usp-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.usp-card {
background-color: var(--color-white);
border-radius: var(--radius-md);
padding: 1.75rem;
display: flex;
gap: 1.25rem;
align-items: flex-start;
transition: var(--transition);
}
.usp-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
.usp-icon {
width: 48px;
height: 48px;
background-color: rgba(255, 127, 0, 0.1);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.usp-icon svg {
width: 24px;
height: 24px;
color: var(--color-orange);
}
.usp-content h3 {
font-size: 1.15rem;
font-weight: 700;
color: var(--color-text-black);
margin-bottom: 0.5rem;
}
.usp-content p {
font-size: 0.95rem;
color: var(--color-text-dark);
line-height: 1.6;
margin: 0;
}
/* Final CTA */
.final-cta-section {
background-color: var(--color-anthracite);
text-align: center;
}
.cta-content {
max-width: 720px;
margin: 0 auto;
}
.final-cta-section h2 {
color: var(--color-white);
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 800;
margin-bottom: 1rem;
}
.cta-text {
color: #CBD5E0;
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2.5rem;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}
.btn-outline-white {
background-color: transparent;
color: var(--color-white);
border: 2px solid var(--color-white);
padding: 14px 32px;
font-weight: 600;
border-radius: var(--radius-sm);
transition: var(--transition);
}
.btn-outline-white:hover {
background-color: var(--color-white);
color: var(--color-anthracite-dark);
transform: translateY(-2px);
}
.btn-lg {
padding: 14px 32px;
font-size: 1.05rem;
}
.cta-microcopy {
color: #718096;
font-size: 0.85rem;
margin: 0;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
/* Szolgáltatások hero */
.services-hero {
position: relative;
padding: 4rem 0;
background: url('../images/hero-bg.webp') center center / cover no-repeat;
margin-top: 0;
}
.services-hero::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.6) 45%, rgba(255,255,255,0.1) 100%);
z-index: 1;
pointer-events: none;
}
.hero-grid {
position: relative;
z-index: 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 20px;
}
.hero-content h1 {
font-size: 3rem;
font-weight: 800;
color: var(--color-anthracite) !important;
margin-bottom: 1.5rem;
}
.integrity-box {
background-color: var(--color-white);
border: 2px solid var(--color-anthracite);
border-radius: var(--radius-md);
padding: 1.5rem;
display: flex;
align-items: flex-start;
gap: 1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.integrity-icon {
width: 32px;
height: 32px;
color: var(--color-orange);
flex-shrink: 0;
}
.microcopy {
margin: 0;
font-size: 0.95rem;
color: var(--color-anthracite);
}
.hero-visual {
display: flex;
justify-content: center;
align-items: center;
}
.hero-image {
max-width: 100%;
height: 420px;
object-fit: cover;
border-radius: var(--radius-lg);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* 3D animációk - JAVÍTVA */
.card-icon-wrapper,
.usp-icon,
.step-icon-wrapper {
perspective: 1000px;
}

.card-icon-wrapper svg,
.card-icon-wrapper .icon-orange,
.usp-icon svg,
.step-icon-wrapper svg {
transition: transform 0.6s ease;
transform-style: preserve-3d;
transform-origin: center center;
}

/* Minden kártya típus hover effektei - !important-tal */
.bento-card:hover .card-icon-wrapper svg,
.bento-card:hover .card-icon-wrapper .icon-orange,
.usp-card:hover .usp-icon svg,
.timeline-card:hover .step-icon-wrapper svg,
.pricing-card:hover .card-icon-wrapper svg,
.pricing-card:hover .card-icon-wrapper .icon-orange,
.process-card:hover .card-icon-wrapper svg,
.process-card:hover .card-icon-wrapper .icon-orange,
.maintenance-card:hover .card-icon-wrapper svg,
.maintenance-card:hover .card-icon-wrapper .icon-orange {
transform: rotateY(180deg) !important;
}
/* Egyéb */
html {
scroll-behavior: smooth;
}
.package-confirmation {
background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
border: 2px solid var(--color-orange);
border-radius: var(--radius-md);
padding: 1rem 1.5rem;
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 0.75rem;
}
.package-confirmation::before {
content: "✓";
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
background: var(--color-orange);
color: white;
border-radius: 50%;
font-weight: bold;
font-size: 0.9rem;
}
/* Reszponzív kiegészítések */
@media (max-width: 1200px) {
.bento-grid { grid-template-columns: repeat(2, 1fr); }
.pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
.hero-container,
.hero-grid {
grid-template-columns: 1fr;
text-align: center;
}
.hero-content { order: 2; }
.hero-visual { order: 1; margin-bottom: 2rem; }
.hero-ctas, .trust-badges { justify-content: center; }
.hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-section::before { background: rgba(255,255,255,0.95); }
.speech-bubble { display: none; }
.process-flow { flex-direction: column; }
.process-arrow {
    display: flex;
    transform: rotate(90deg);
    margin: -0.5rem 0;
}
.step-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 39px;
    width: 2px;
    background-color: var(--color-anthracite);
    opacity: 0.3;
    z-index: 0;
}
.timeline-card {
    padding-left: 4.5rem;
    padding-top: 1.5rem;
}
.step-number {
    left: 20px;
    top: 1.5rem;
}

.usp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.target-section,
.process-section,
.workflow-section,
.pricing-section,
.usp-section,
.final-cta-section {
padding: 4rem 0;
}
.section-header { margin-bottom: 2.5rem; }
.bento-grid { grid-template-columns: 1fr; }
.bento-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}
.card-icon-wrapper {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
}
.icon-orange { width: 24px; height: 24px; }
.bento-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.bento-card p {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}
.pricing-card.featured {
    order: -1;
    transform: none;
}
.pricing-card.featured:hover { transform: translateY(-4px); }
.pricing-maintenance-note {
    flex-direction: column;
    text-align: center;
}
.pricing-actions {
    flex-direction: column;
    align-items: center;
}
.btn-action {
    width: 100%;
    max-width: 320px;
    min-width: auto;
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
}
.btn-lg, .btn-outline-white {
    width: 100%;
    max-width: 320px;
}

.services-hero { padding: 3rem 0; }
.hero-content h1 { font-size: 2.2rem; }
.hero-subtitle { font-size: 1.1rem; }
.integrity-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
}
}
@media (max-width: 480px) {
.hero-ctas { flex-direction: column; width: 100%; }
.btn { width: 100%; }
.trust-badges { flex-direction: column; }
.badge { width: 100%; justify-content: center; }
.process-card h3 { font-size: 1.25rem; }
.process-card p { font-size: 0.95rem; }
.feature-list li { font-size: 0.9rem; }

.timeline-card { padding: 1.5rem; padding-left: 4rem; }
.step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    left: 18px;
}
.step-content h3 { font-size: 1.15rem; }
.step-icon-wrapper { width: 48px; height: 48px; }

.pricing-card { padding: 2rem 1.5rem; }
.price-block .amount { font-size: 1.8rem; }

.hero-content h1 { font-size: 1.8rem; }
}
/* Görgetősáv */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--color-off-white);
}
::-webkit-scrollbar-thumb {
background: var(--color-light-gray);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--color-anthracite);
}