/* ═══════════════════════════════════════════════════
   absec.hu — Liquid Glass Design System
   Johajot-inspired palette + iOS 26 continuous corners
   ═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Figtree:wght@300;400;500;600;700&display=swap');

/* ─── Tokens (dark default) ────────────────────────── */
:root {
    --navy:         #071E38;
    --navy-mid:     #0C3459;
    --navy-light:   #1a5499;
    --teal:         #0B8FA0;
    --teal-light:   #3BC9DA;
    --gold:         #C9933A;
    --gold-light:   #E5BE70;
    --gold-dim:     rgba(201,147,58,0.16);

    --text:         #F0F5FB;
    --text2:        #C7D3E3;
    --muted:        #8AA0BB;

    --bg:           #040E1C;
    --bg2:          rgba(255,255,255,0.05);
    --bg3:          rgba(255,255,255,0.08);
    --bg4:          rgba(255,255,255,0.12);

    --border:       rgba(255,255,255,0.10);
    --borders:      rgba(255,255,255,0.22);

    --green:        #3DB87A;
    --blue:         #4A9EF5;
    --focus:        var(--gold-light);

    --radius:       22px;
    --radius-sm:    14px;
    --radius-btn:   18px;
    --radius-pill:  100px;

    --glass-blur:   blur(25px) saturate(160%);
    --shadow-glass: 0 20px 50px rgba(3,14,28,0.40),
                    inset 0 1px 0 rgba(255,255,255,0.18);
}

[data-theme="light"] {
    --text:         #0C2741;
    --text2:        #354E6A;
    --muted:        #5E7A94;

    --bg:           #EEF4F9;
    --bg2:          rgba(255,255,255,0.80);
    --bg3:          rgba(255,255,255,0.90);
    --bg4:          rgba(255,255,255,1);

    --border:       rgba(7,30,56,0.10);
    --borders:      rgba(7,30,56,0.18);

    --gold:         #8A6A1E;
    --gold-light:   #C9933A;
    --gold-dim:     rgba(138,106,30,0.12);

    --focus:        var(--teal);
    --shadow-glass: 0 12px 32px rgba(7,30,56,0.14),
                    inset 0 1px 0 rgba(255,255,255,0.95);
}

/* ─── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Figtree', -apple-system, system-ui, sans-serif;
    font-size: 16px; line-height: 1.6;
    color: var(--text); overflow-x: hidden;
    min-height: 100vh;
    background:
        radial-gradient(ellipse 100% 70% at 15% -8%, rgba(11,143,160,0.30) 0%, transparent 52%),
        radial-gradient(ellipse 80% 60% at 92% 5%, rgba(7,30,56,0.95) 0%, transparent 55%),
        radial-gradient(ellipse 90% 80% at 50% 115%, rgba(11,143,160,0.18) 0%, transparent 45%),
        radial-gradient(ellipse 55% 40% at 0% 75%, rgba(201,147,58,0.07) 0%, transparent 50%),
        linear-gradient(160deg, #03101e 0%, #071e38 28%, #0a2d5a 58%, #071e38 82%, #040e1c 100%);
    background-attachment: fixed;
    transition: background .3s, color .3s;
}
[data-theme="light"] body {
    background:
        radial-gradient(ellipse 80% 50% at -5% -5%, rgba(11,143,160,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 65% 60% at 105% 105%, rgba(7,30,56,0.06) 0%, transparent 55%),
        #EEF4F9;
    background-attachment: fixed;
}

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.20); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Typography ───────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600; color: var(--text); line-height: 1.15;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.15rem, 4.8vw, 3.9rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.12rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text2); }

.gold  { color: var(--gold-light); }
[data-theme="light"] .gold { color: var(--gold); }

.label {
    font-family: 'Figtree', sans-serif;
    font-size: .72rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gold-light);
    display: inline-flex; align-items: center; gap: 10px;
}
.label::before { content: ''; width: 26px; height: 1.5px; background: var(--gold-light); display: block; }

.skip {
    position: absolute; top: -100px; left: 1rem;
    background: var(--gold); color: #1a1000;
    padding: .7rem 1.3rem; font-weight: 700;
    font-size: .9rem; z-index: 9999;
    border-radius: 0 0 12px 12px;
    text-decoration: none; transition: top .2s;
}
.skip:focus { top: 0; }

/* ─── Container ────────────────────────────────────── */
.container {
    max-width: 1440px; width: 100%;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 48px);
}
section { position: relative; z-index: 1; }

/* ─── Buttons (iOS 26 squircle) ────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; min-height: 44px; padding: .85rem 1.6rem;
    font-family: 'Figtree', sans-serif; font-size: .92rem; font-weight: 600;
    letter-spacing: 0.2px; text-decoration: none; cursor: pointer;
    border: none; border-radius: var(--radius-btn);
    transition: transform .22s cubic-bezier(0.2,0.8,0.2,1),
                box-shadow .22s cubic-bezier(0.2,0.8,0.2,1),
                background .22s;
    position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; pointer-events: none; }

.btn-primary {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--teal) 100%);
    color: #fff;
    border: 0.5px solid rgba(255,255,255,0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25),
                0 10px 30px rgba(11,143,160,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28),
                0 14px 38px rgba(11,143,160,0.48);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: rgba(255,255,255,0.09);
    color: #fff;
    border: 0.5px solid rgba(255,255,255,0.28);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
[data-theme="light"] .btn-ghost {
    background: rgba(255,255,255,0.72);
    color: var(--text);
    border: 0.5px solid rgba(255,255,255,0.95);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.95),
                0 4px 14px rgba(7,30,56,0.08);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
    border-color: var(--gold-light);
    color: var(--gold-light);
}
[data-theme="light"] .btn-ghost:hover { background: rgba(255,255,255,0.95); color: var(--teal); border-color: var(--teal); }

/* ─── Language / Theme switchers ───────────────────── */
.lang-pill {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.09);
    border: 0.5px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-pill);
    padding: 3px; gap: 2px;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
[data-theme="light"] .lang-pill { background: rgba(255,255,255,0.70); border-color: rgba(7,30,56,0.12); }
.lang-btn {
    min-height: 32px; min-width: 44px;
    font-family: 'Figtree', sans-serif; font-size: .72rem;
    font-weight: 600; letter-spacing: .08em;
    padding: .35rem .8rem;
    border: none; cursor: pointer; border-radius: var(--radius-pill);
    background: transparent; color: var(--muted);
    transition: all .2s;
}
.lang-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1000; font-weight: 700;
    box-shadow: 0 2px 8px rgba(201,147,58,0.35);
}
.lang-btn:hover:not(.active) { color: var(--text); }

.theme-btn {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.09);
    border: 0.5px solid rgba(255,255,255,0.22);
    border-radius: 50%; cursor: pointer;
    color: var(--text2); font-size: 1rem;
    transition: all .25s; flex-shrink: 0;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
[data-theme="light"] .theme-btn { background: rgba(255,255,255,0.70); border-color: rgba(7,30,56,0.12); color: var(--text); }
.theme-btn:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-1px); }

/* ─── Nav ──────────────────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100; padding: 1rem 0;
    transition: all .3s;
    background: rgba(7,30,56,0.45);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
nav.scrolled {
    padding: .6rem 0;
    background: rgba(4,14,28,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 40px rgba(0,0,0,0.32);
}
[data-theme="light"] nav { background: rgba(238,244,249,0.75); border-bottom-color: rgba(7,30,56,0.08); }
[data-theme="light"] nav.scrolled { background: rgba(238,244,249,0.95); }

.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; max-width: 1440px; margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 48px);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--text); text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    flex-shrink: 0; letter-spacing: 0.3px;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
    display: flex; align-items: center; gap: 1.1rem;
    list-style: none;
}
.nav-links a {
    color: var(--text2); text-decoration: none;
    font-size: .85rem; font-weight: 500;
    padding: .5rem .4rem; min-height: 44px;
    display: inline-flex; align-items: center;
    transition: color .2s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active-page { color: var(--gold-light); }
.nav-links a.active-page { font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: .6rem; }

.hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 8px;
    cursor: pointer;
    background: rgba(255,255,255,0.09);
    border: 0.5px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transition: all .25s; flex-shrink: 0;
}
[data-theme="light"] .hamburger { background: rgba(255,255,255,0.70); border-color: rgba(7,30,56,0.14); }
.hamburger:hover { border-color: var(--gold-light); }
.hamburger span {
    display: block; width: 100%; height: 1.5px;
    background: var(--text); border-radius: 2px;
    transition: all .3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: rgba(4,14,28,0.97);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
    flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
    padding: 2rem;
}
[data-theme="light"] .mobile-nav { background: rgba(238,244,249,0.97); }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.5rem;
    color: var(--text); margin-bottom: 2rem;
}
.mobile-nav ul { list-style: none; text-align: center; width: 100%; max-width: 420px; }
.mobile-nav ul li { border-bottom: 1px solid var(--border); }
.mobile-nav ul li:first-child { border-top: 1px solid var(--border); }
.mobile-nav ul a {
    display: block; padding: 1.2rem 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600;
    color: var(--text); text-decoration: none;
    min-height: 44px;
    transition: color .2s, background .2s;
}
.mobile-nav ul a:hover,
.mobile-nav ul a.active-page {
    color: var(--gold-light);
    background: rgba(201,147,58,0.07);
}
.mobile-nav-bottom {
    margin-top: 2.5rem;
    display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.mobile-ctrl { display: flex; align-items: center; gap: .75rem; }

/* ─── Section heads ────────────────────────────────── */
.section-head { margin-bottom: 2.4rem; }
.section-head h2 { margin-top: .8rem; }
.section-head p { margin-top: .7rem; max-width: 640px; font-size: 1rem; line-height: 1.7; }

.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.hidden { opacity: 0; transform: translateY(24px); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal.hidden { opacity: 1; transform: none; }
}

/* ─── Footer ───────────────────────────────────────── */
footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
    background: rgba(3,10,20,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-top: 3rem;
}
[data-theme="light"] footer { background: rgba(255,255,255,0.55); }
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; color: var(--text); font-size: 1.15rem;
    display: flex; align-items: center; gap: 10px;
    letter-spacing: 0.3px;
}
.footer-copy { font-size: .8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
    font-size: .82rem; color: var(--muted);
    text-decoration: none; transition: color .2s;
    cursor: pointer; min-height: 44px;
    display: inline-flex; align-items: center;
}
.footer-links a:hover { color: var(--gold-light); }

/* ─── Modals ───────────────────────────────────────── */
.modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(3,10,20,0.78);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: rgba(12,52,89,0.78);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.22);
    max-width: 680px; width: 100%;
    max-height: 85vh; overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    border-radius: 24px;
    box-shadow: 0 32px 72px rgba(0,0,0,0.45),
                inset 0 1px 0 rgba(255,255,255,0.18);
    color: var(--text);
}
[data-theme="light"] .modal-box {
    background: rgba(255,255,255,0.96);
    border: 0.5px solid rgba(255,255,255,0.95);
    box-shadow: 0 32px 72px rgba(7,30,56,0.28),
                inset 0 1px 0 rgba(255,255,255,0.95);
}
.modal-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--gold-light));
    border-radius: 24px 24px 0 0;
}
.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.10);
    border: 0.5px solid rgba(255,255,255,0.22);
    border-radius: 50%; cursor: pointer;
    font-size: 1rem; color: var(--text2);
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
[data-theme="light"] .modal-close { background: rgba(7,30,56,0.08); border-color: rgba(7,30,56,0.12); color: var(--muted); }
.modal-close:hover { color: var(--text); border-color: var(--gold-light); }
.modal-box h3 { color: var(--text); font-size: 1.5rem; margin-bottom: 1.2rem; }
.modal-box h4 { color: var(--text); font-size: 1rem; margin: 1.4rem 0 .5rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; }
.modal-box p  { font-size: .92rem; line-height: 1.7; margin-bottom: .75rem; color: var(--text2); }
.modal-box ul { padding-left: 1.2rem; margin-bottom: .75rem; }
.modal-box li { font-size: .9rem; color: var(--text2); line-height: 1.7; }
.modal-box a  { color: var(--gold-light); }
[data-theme="light"] .modal-box a { color: var(--teal); }

/* ═══════════════════════════════════════════════════
   index.html — specific sections
   ═══════════════════════════════════════════════════ */

/* ─── Hero ─────────────────────────────────────────── */
#hero {
    min-height: 80vh;
    display: flex; align-items: center;
    padding: 7.5rem 0 3.2rem;
    position: relative; overflow: hidden;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent);
    mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent);
    pointer-events: none;
}
[data-theme="light"] .hero-grid {
    background-image:
        linear-gradient(rgba(7,30,56,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7,30,56,0.06) 1px, transparent 1px);
}
.hero-glow {
    position: absolute;
    width: min(100vw, 1200px); height: 700px;
    background: radial-gradient(ellipse,
        rgba(11,143,160,0.22) 0%,
        rgba(201,147,58,0.10) 35%,
        transparent 70%);
    top: -180px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: blur(20px);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; }
.hero-title {
    margin: 1rem 0 1.2rem;
    max-width: 22ch;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}
.hero-sub {
    font-size: 1.05rem; line-height: 1.7;
    color: var(--text2);
    max-width: 62ch; margin-bottom: 1.8rem;
}
.hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    align-items: center;
}
.hero-stats {
    display: flex; gap: 2rem;
    margin-top: 2.2rem; padding-top: 1.6rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 700;
    color: var(--gold-light);
    display: block; line-height: 1;
}
[data-theme="light"] .stat-num { color: var(--teal); }
.stat-lbl { font-size: .78rem; color: var(--muted); margin-top: .35rem; }

/* ─── Services ─────────────────────────────────────── */
#services { padding: 5rem 0; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.srv-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    padding: 1.8rem;
    position: relative; overflow: hidden;
    transition: transform .3s cubic-bezier(0.2,0.8,0.2,1),
                box-shadow .3s, border-color .3s;
    box-shadow: var(--shadow-glass);
}
[data-theme="light"] .srv-card {
    background: rgba(255,255,255,0.82);
    border: 0.5px solid rgba(255,255,255,0.95);
}
.srv-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s;
}
.srv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.28);
    box-shadow: 0 22px 52px rgba(3,14,28,0.42),
                inset 0 1px 0 rgba(255,255,255,0.28);
}
.srv-card:hover::after { transform: scaleX(1); }
.srv-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--teal-dim, rgba(11,143,160,0.18)), var(--gold-dim));
    border: 0.5px solid rgba(255,255,255,0.20);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.1rem;
    border-radius: 14px;
}
.srv-card h3 { color: var(--text); margin-bottom: .8rem; font-size: 1.2rem; }
.srv-card p { font-size: .9rem; line-height: 1.65; }
.srv-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.tag {
    font-size: .72rem; padding: .25rem .7rem;
    border: 0.5px solid rgba(255,255,255,0.22);
    color: var(--muted);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-pill);
    font-family: 'Figtree', sans-serif; font-weight: 500;
}
[data-theme="light"] .tag { background: rgba(7,30,56,0.04); border-color: rgba(7,30,56,0.12); }

/* ─── Why ──────────────────────────────────────────── */
#why { padding: 5rem 0; }
.why-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center;
}
.why-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.why-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    transition: all .25s cubic-bezier(0.2,0.8,0.2,1);
}
[data-theme="light"] .why-item { background: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.95); }
.why-item:hover {
    border-color: rgba(201,147,58,0.45);
    background: rgba(255,255,255,0.09);
    transform: translateX(4px);
    box-shadow: inset 3px 0 0 var(--gold-light),
                0 8px 24px rgba(3,14,28,0.25);
}
.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--gold-light); opacity: .6;
    line-height: 1; flex-shrink: 0;
}
.why-item h4 { color: var(--text); margin-bottom: .35rem; font-size: 1.05rem; }
.why-item p  { font-size: .88rem; }
.why-visual { display: flex; align-items: center; justify-content: center; }

.hex-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; padding: 2rem;
}
.hex {
    width: 72px; height: 72px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    animation: hpulse 3s ease-in-out infinite;
}
.hex:nth-child(odd) { animation-delay: .5s; }
.hex:nth-child(3n)  { animation-delay: 1s; }
@keyframes hpulse { 0%,100%{ opacity: .55; } 50%{ opacity: 1; } }
.hg { background: var(--gold-dim); color: var(--gold-light); }
.hb { background: rgba(59,201,218,0.14); color: var(--teal-light); }
.hd { background: rgba(255,255,255,0.07); color: var(--muted); }

/* ─── References ───────────────────────────────────── */
#references { padding: 5rem 0; }
.ref-hint {
    font-size: .78rem; color: var(--muted);
    font-family: 'Figtree', sans-serif;
    margin-bottom: 1.5rem; display: block;
    letter-spacing: 0.02em;
}
.ref-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.ref-item {
    background: rgba(255,255,255,0.06);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.1rem;
    display: flex; flex-direction: column; align-items: flex-start;
    gap: .5rem; cursor: pointer;
    position: relative;
    transition: all .25s;
}
[data-theme="light"] .ref-item { background: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.95); }
.ref-item:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.28); }
.ref-item.open {
    background: rgba(255,255,255,0.13);
    border-color: rgba(201,147,58,0.45);
    box-shadow: 0 12px 28px rgba(3,14,28,0.35);
    z-index: 2;
}
.ref-icon { font-size: 1.5rem; }
.ref-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--text);
}
.ref-sub { font-size: .78rem; color: var(--muted); }
.ref-arrow {
    position: absolute; top: 1.3rem; right: 1.2rem;
    font-size: .78rem; color: var(--gold-light);
    opacity: 0; transition: opacity .2s, transform .3s;
}
.ref-item:hover .ref-arrow { opacity: 1; }
.ref-item.open .ref-arrow { opacity: 1; transform: rotate(45deg); }
.ref-expand {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, opacity .3s;
    opacity: 0; width: 100%;
}
.ref-item.open .ref-expand { max-height: 260px; opacity: 1; }
.ref-expand-inner {
    padding-top: .8rem;
    border-top: 1px solid var(--border);
    margin-top: .3rem;
}
.ref-expand-inner p { font-size: .82rem; line-height: 1.65; color: var(--text2); }
.ref-badge {
    display: inline-block; margin-top: .7rem;
    font-size: .68rem; padding: .22rem .7rem;
    background: var(--gold-dim);
    color: var(--gold-light);
    border: 0.5px solid rgba(201,147,58,0.35);
    border-radius: var(--radius-pill);
    font-family: 'Figtree', sans-serif; font-weight: 600;
    letter-spacing: 0.04em;
}
[data-theme="light"] .ref-badge { color: var(--gold); }

/* ─── Process ──────────────────────────────────────── */
#process { padding: 5rem 0; }
.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem; gap: 1rem;
    position: relative;
}
.process-steps::after {
    content: ''; position: absolute;
    top: 36px; left: 12.5%; right: 12.5%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.step { padding: 0 .8rem; text-align: center; position: relative; z-index: 1; }
.step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(201,147,58,0.45);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--gold-light);
    box-shadow: 0 8px 24px rgba(3,14,28,0.30),
                inset 0 1px 0 rgba(255,255,255,0.22);
    transition: all .3s;
}
.step:hover .step-num {
    border-color: var(--gold-light);
    box-shadow: 0 12px 36px rgba(201,147,58,0.32),
                inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(-3px);
}
.step h3 { color: var(--text); font-size: 1.05rem; margin-bottom: .4rem; }
.step p { font-size: .85rem; }

/* ─── FAQ ──────────────────────────────────────────── */
#faq { padding: 5rem 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
.faq-col { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .25s, background .25s;
}
[data-theme="light"] .faq-item { background: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.95); }
.faq-item.open { border-color: rgba(201,147,58,0.38); }
.faq-q {
    width: 100%;
    background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 1.4rem;
    cursor: pointer; min-height: 44px;
    font-family: 'Figtree', sans-serif;
    font-size: .95rem; font-weight: 600;
    color: var(--text); text-align: left;
    gap: 1rem;
    transition: background .2s;
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    border: 0.5px solid var(--borders);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--gold-light);
    transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 1.4rem;
}
.faq-a p { font-size: .9rem; padding-bottom: 1.4rem; color: var(--text2); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─── YouTube ──────────────────────────────────────── */
#youtube { padding: 4rem 0 1.5rem; }
.yt-wrap {
    display: grid; grid-template-columns: 1.25fr .75fr;
    gap: 1.5rem; padding: 1.5rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow-glass);
}
[data-theme="light"] .yt-wrap { background: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.95); }
.yt-video {
    position: relative; padding-top: 56.25%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 0.5px solid rgba(255,255,255,0.18);
}
.yt-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-side { padding: .5rem; }
.yt-side h3 { font-size: 1.25rem; }
.yt-side p { font-size: .95rem; line-height: 1.7; margin-top: .75rem; }
.yt-meta { margin-top: 1.2rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.yt-chip {
    font-size: .68rem;
    font-family: 'Figtree', sans-serif; font-weight: 500;
    padding: .22rem .65rem;
    border: 0.5px solid rgba(255,255,255,0.22);
    color: var(--muted);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-pill);
    letter-spacing: 0.03em;
}
[data-theme="light"] .yt-chip { background: rgba(7,30,56,0.04); }

/* ─── CTA (full-bleed) ─────────────────────────────── */
#cta {
    padding: 5rem 0;
    position: relative; overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(11,143,160,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 90% 50%, rgba(201,147,58,0.10) 0%, transparent 60%),
        rgba(7,30,56,0.40);
}
[data-theme="light"] #cta {
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(11,143,160,0.10) 0%, transparent 60%),
        rgba(255,255,255,0.50);
}
#cta::before {
    content: 'ABSEC';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(8rem, 20vw, 16rem);
    color: rgba(255,255,255,0.035);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none;
}
[data-theme="light"] #cta::before { color: rgba(7,30,56,0.04); }
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.cta-inner h2 { margin-top: .8rem; }
.cta-inner p  { margin-top: .6rem; max-width: 560px; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Contact ──────────────────────────────────────── */
#contact { padding: 5rem 0; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 2.8rem; align-items: start;
}
.contact-info h2 { margin-top: .8rem; }
.contact-info > p { margin-top: 1rem; }
.contact-links {
    margin-top: 1.5rem;
    display: flex; flex-direction: column; gap: .75rem;
}
.c-row {
    display: flex; align-items: center; gap: 1rem;
    padding: .9rem 1.1rem; min-height: 44px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-sm);
    text-decoration: none; color: var(--text);
    transition: all .3s;
}
[data-theme="light"] .c-row { background: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.95); }
.c-row:hover {
    border-color: rgba(201,147,58,0.45);
    background: rgba(255,255,255,0.11);
    transform: translateX(4px);
}
.c-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold-dim), rgba(11,143,160,0.18));
    border: 0.5px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    font-size: 1.05rem; flex-shrink: 0;
}
.c-body { flex: 1; }
.c-lbl {
    font-size: .7rem; color: var(--muted);
    font-family: 'Figtree', sans-serif; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: .15rem;
}
.c-val { font-size: .92rem; color: var(--text); font-weight: 500; }
.c-caret {
    color: var(--gold-light); font-size: .85rem;
    opacity: 0; transition: opacity .2s, transform .2s;
}
.c-row:hover .c-caret { opacity: 1; transform: translateX(4px); }
.c-avail {
    margin-top: 1rem;
    padding: .95rem 1.1rem;
    background: rgba(61,184,122,0.08);
    border: 0.5px solid rgba(61,184,122,0.28);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: .85rem;
}
.avail-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--green); flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(61,184,122,0.22);
    animation: avpulse 2.5s ease-in-out infinite;
}
@keyframes avpulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(61,184,122,0.22); }
    50%     { box-shadow: 0 0 0 8px rgba(61,184,122,0.06); }
}
.avail-text { font-size: .85rem; color: var(--text2); }
.avail-text strong { color: var(--green); font-weight: 700; }

.form-box {
    background: rgba(255,255,255,0.08);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.22);
    border-radius: var(--radius);
    padding: 1.8rem;
    position: relative;
    box-shadow: var(--shadow-glass);
}
[data-theme="light"] .form-box { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.95); }
.form-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--gold-light));
    border-radius: var(--radius) var(--radius) 0 0;
}
.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--text); margin-bottom: 1.1rem;
}
.form-inner { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
    font-size: .72rem; color: var(--muted);
    font-family: 'Figtree', sans-serif; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
    background: rgba(255,255,255,0.06);
    border: 0.5px solid rgba(255,255,255,0.22);
    color: var(--text);
    padding: .8rem 1rem; min-height: 44px;
    font-family: 'Figtree', sans-serif;
    font-size: .92rem; outline: none;
    border-radius: 12px;
    transition: border-color .2s, box-shadow .2s, background .2s;
    width: 100%;
}
[data-theme="light"] .field input,
[data-theme="light"] .field textarea,
[data-theme="light"] .field select {
    background: rgba(255,255,255,0.95);
    border-color: rgba(7,30,56,0.18);
    color: var(--text);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--teal-light);
    box-shadow: 0 0 0 3px rgba(59,201,218,0.18);
    background: rgba(255,255,255,0.10);
}
[data-theme="light"] .field input:focus,
[data-theme="light"] .field textarea:focus,
[data-theme="light"] .field select:focus { background: #fff; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,143,160,0.14); }
.field select { appearance: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
[data-theme="light"] .field input::placeholder,
[data-theme="light"] .field textarea::placeholder { color: #98a6b8; }

.form-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem; margin-top: .5rem;
}
.form-note {
    font-size: .75rem; color: var(--muted);
    font-family: 'Figtree', sans-serif;
    max-width: 320px; line-height: 1.55;
}

/* ═══════════════════════════════════════════════════
   szoftverfejlesztes.html — specific
   ═══════════════════════════════════════════════════ */

.hero-pills {
    display: flex; gap: .55rem; flex-wrap: wrap;
    margin-top: 1.6rem;
}
.pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: .4rem 1rem; min-height: 32px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-pill);
    font-size: .8rem;
    font-family: 'Figtree', sans-serif; font-weight: 500;
    color: var(--text2);
}
[data-theme="light"] .pill { background: rgba(255,255,255,0.78); border-color: rgba(7,30,56,0.14); }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; background: var(--gold-light); }

/* USP */
#usp { padding: 4rem 0 0; }
.usp-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; margin-top: 2.5rem;
}
.usp-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    padding: 1.6rem;
    transition: all .25s;
    box-shadow: var(--shadow-glass);
}
[data-theme="light"] .usp-card { background: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.95); }
.usp-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); }
.usp-icon { font-size: 1.9rem; margin-bottom: 1rem; }
.usp-card h4 {
    color: var(--text); font-size: 1.1rem;
    margin-bottom: .45rem;
    font-family: 'Cormorant Garamond', serif; font-weight: 700;
}
.usp-card p { font-size: .88rem; line-height: 1.65; }

/* Portfolio showcase */
#portfolio-showcase { padding: 2rem 0 0; }
.ps-wrap {
    background: rgba(255,255,255,0.06);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.18);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-glass);
}
[data-theme="light"] .ps-wrap { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.95); }
.ps-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--gold-light));
    border-radius: var(--radius) var(--radius) 0 0;
}
.ps-head p { margin-top: .7rem; max-width: 780px; font-size: .95rem; }
.ps-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem; margin-top: 1.8rem;
}
.ps-card {
    background: rgba(255,255,255,0.05);
    border: 0.5px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-sm);
    padding: 1.3rem;
    transition: border-color .22s, transform .22s, background .22s;
    overflow: hidden;
}
.ps-cover { margin: -1.3rem -1.3rem 1rem; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-sm) var(--radius-sm) 0 0; background: rgba(0,0,0,0.15); }
.ps-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.ps-card:hover .ps-cover img { transform: scale(1.04); }
[data-theme="light"] .ps-card { background: rgba(255,255,255,0.70); border-color: rgba(7,30,56,0.10); }
.ps-card:hover { border-color: rgba(201,147,58,0.45); transform: translateY(-2px); background: rgba(255,255,255,0.08); }
.ps-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: .7rem; margin-bottom: .6rem;
}
.ps-app { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); }
.ps-head h2 { margin-top: .4rem; }
.ps-url { font-family: 'Figtree', sans-serif; font-weight: 500; font-size: .72rem; color: var(--gold-light); letter-spacing: 0.03em; }
[data-theme="light"] .ps-url { color: var(--teal); }
.ps-desc { font-size: .88rem; line-height: 1.65; color: var(--text2); }
.ps-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.ps-tag {
    font-size: .68rem; padding: .18rem .6rem;
    border: 0.5px solid rgba(255,255,255,0.22);
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-pill);
    font-family: 'Figtree', sans-serif; font-weight: 500;
}
[data-theme="light"] .ps-tag { background: rgba(7,30,56,0.04); border-color: rgba(7,30,56,0.12); }
.ps-badges { display: flex; align-items: center; gap: .45rem; margin-top: .9rem; }
.ps-badge {
    font-size: .68rem; padding: .2rem .65rem;
    border-radius: var(--radius-pill);
    font-family: 'Figtree', sans-serif; font-weight: 600;
    border: 0.5px solid transparent;
}
.ps-badge.ready { background: rgba(61,184,122,0.14); color: var(--green); border-color: rgba(61,184,122,0.32); }
.ps-badge.buy   { background: var(--gold-dim); color: var(--gold-light); border-color: rgba(201,147,58,0.32); }
[data-theme="light"] .ps-badge.buy { color: var(--gold); }
.ps-note {
    margin-top: 1.2rem; font-size: .8rem;
    color: var(--muted); font-family: 'Figtree', sans-serif;
}

/* Ref-cards (subpage) */
.ref-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.ref-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius);
    padding: 1.6rem;
    position: relative; overflow: hidden;
    transition: all .28s cubic-bezier(0.2,0.8,0.2,1);
    box-shadow: var(--shadow-glass);
}
[data-theme="light"] .ref-card { background: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.95); }
.ref-card:hover {
    border-color: rgba(201,147,58,0.42);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(3,14,28,0.38);
}
.ref-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--rcat, var(--gold-light)), transparent);
    border-radius: var(--radius) var(--radius) 0 0;
}
.ref-card.wide { grid-column: span 2; }
.ref-card h3 { color: var(--text); margin-bottom: .6rem; font-size: 1.3rem; }
.ref-desc { font-size: .9rem; line-height: 1.7; color: var(--text2); }
.ref-modules { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.2rem; }
.mod {
    font-size: .7rem; padding: .22rem .6rem;
    border: 0.5px solid rgba(255,255,255,0.22);
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-pill);
    font-family: 'Figtree', sans-serif; font-weight: 500;
}
[data-theme="light"] .mod { background: rgba(7,30,56,0.04); border-color: rgba(7,30,56,0.12); }
.ref-status {
    margin-top: 1.5rem; padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; gap: .5rem;
    font-size: .78rem; color: var(--green);
    font-family: 'Figtree', sans-serif; font-weight: 600;
}
.ref-status::before {
    content: ''; width: 7px; height: 7px;
    border-radius: 50%; background: var(--green);
    box-shadow: 0 0 0 3px rgba(61,184,122,0.22);
    flex-shrink: 0;
}

/* Catalog */
#catalog { padding: 0 0 5rem; }
.cat-filters {
    display: flex; gap: .6rem; flex-wrap: wrap;
    margin-bottom: 2rem;
}
.cat-f {
    padding: .45rem 1rem; min-height: 36px;
    border: 0.5px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-pill);
    font-size: .82rem; font-family: 'Figtree', sans-serif; font-weight: 500;
    color: var(--muted); cursor: pointer;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transition: all .2s;
}
[data-theme="light"] .cat-f { background: rgba(255,255,255,0.72); border-color: rgba(7,30,56,0.14); }
.cat-f:hover,
.cat-f.active {
    color: var(--gold-light);
    border-color: var(--gold-light);
    background: var(--gold-dim);
}
[data-theme="light"] .cat-f.active,
[data-theme="light"] .cat-f:hover { color: var(--gold); border-color: var(--gold); }

.catalog-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.cat-item {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    display: flex; flex-direction: column; gap: .5rem;
    position: relative; overflow: hidden;
    transition: all .22s;
}
[data-theme="light"] .cat-item { background: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.95); }
.cat-item:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); }
.cat-item::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--icat, var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
}
.cat-item:hover::after { transform: scaleX(1); }
.cat-icon { font-size: 1.4rem; }
.cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: .95rem; font-weight: 700;
    color: var(--text); line-height: 1.3;
}
.cat-area {
    font-size: .76rem; color: var(--muted);
    font-family: 'Figtree', sans-serif;
}
.cat-status {
    margin-top: auto; padding-top: .8rem;
    font-size: .7rem; font-family: 'Figtree', sans-serif; font-weight: 600;
    display: flex; align-items: center; gap: 5px;
    color: var(--icat, var(--muted));
    letter-spacing: 0.04em;
}
.cat-status::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--icat, var(--muted));
    flex-shrink: 0;
}

/* How */
#how { padding: 5rem 0; }
.how-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2.8rem; align-items: center;
    margin-top: 1.5rem;
}
.how-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.how-step {
    display: flex; gap: 1.2rem; align-items: flex-start;
    padding: 1.4rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    transition: all .22s;
}
[data-theme="light"] .how-step { background: rgba(255,255,255,0.78); border-color: rgba(255,255,255,0.95); }
.how-step:hover {
    border-color: rgba(201,147,58,0.38);
    background: rgba(255,255,255,0.09);
    transform: translateX(4px);
}
.how-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--gold-light); opacity: .5;
    line-height: 1; flex-shrink: 0; min-width: 44px;
}
.how-step h4 {
    color: var(--text); margin-bottom: .35rem;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif; font-weight: 700;
}
.how-step p { font-size: .88rem; }
.how-visual { display: flex; justify-content: center; }
.how-mockup {
    width: 100%;
    background: rgba(3,10,20,0.55);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 0.5px solid rgba(255,255,255,0.22);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 22px 52px rgba(3,14,28,0.45),
                inset 0 1px 0 rgba(255,255,255,0.18);
}
[data-theme="light"] .how-mockup { background: rgba(255,255,255,0.95); border-color: rgba(7,30,56,0.10); }
.mock-bar {
    background: rgba(255,255,255,0.06);
    padding: .6rem 1.1rem;
    display: flex; align-items: center; gap: .4rem;
    border-bottom: 1px solid var(--border);
}
[data-theme="light"] .mock-bar { background: rgba(7,30,56,0.04); }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; }
.mock-url {
    font-family: 'Figtree', sans-serif;
    font-size: .72rem; color: var(--muted);
    margin-left: auto;
}
.mock-body { padding: 1.3rem; }
.mock-label {
    font-family: 'Figtree', sans-serif;
    font-size: .72rem; color: var(--gold-light);
    font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 1rem;
}
[data-theme="light"] .mock-label { color: var(--gold); }
.mock-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: .55rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .86rem;
}
.mock-row:last-of-type { border-bottom: none; }
.mock-key {
    color: var(--muted);
    font-family: 'Figtree', sans-serif;
    font-size: .78rem;
}
.mbg,
.mba,
.mbb {
    font-size: .7rem; padding: .18rem .6rem;
    font-family: 'Figtree', sans-serif; font-weight: 600;
    border-radius: 6px; border: 0.5px solid transparent;
}
.mbg { background: rgba(61,184,122,0.14); color: var(--green); border-color: rgba(61,184,122,0.32); }
.mba { background: var(--gold-dim); color: var(--gold-light); border-color: rgba(201,147,58,0.30); }
[data-theme="light"] .mba { color: var(--gold); }
.mbb { background: rgba(74,158,245,0.14); color: var(--blue); border-color: rgba(74,158,245,0.30); }
.mock-footer {
    margin-top: 1rem;
    padding-top: .9rem;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 1440px) {
    /* hero + cta still full-bleed via body bg gradient */
}
@media (max-width: 1100px) {
    .services-grid,
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .why-inner { grid-template-columns: 1fr; }
    .why-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-steps::after { display: none; }
    .ref-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-cards { grid-template-columns: repeat(2, 1fr); }
    .ref-card.wide { grid-column: span 1; }
    .faq-grid { grid-template-columns: 1fr; }
    .yt-wrap { grid-template-columns: 1fr; }
    .ps-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: repeat(3, 1fr); }
    .how-grid { grid-template-columns: 1fr; }
    .how-visual { display: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right .btn { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }

    h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    h2 { font-size: clamp(1.45rem, 5vw, 2rem); }

    #hero { padding: 6rem 0 2.8rem; min-height: auto; }
    .hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-btns .btn { justify-content: center; width: 100%; }
    .hero-stats { gap: 1.4rem; }

    .services-grid,
    .usp-grid { grid-template-columns: 1fr; }
    .ref-grid { grid-template-columns: 1fr 1fr; }
    .ref-cards { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 1.8rem .8rem; }

    #services, #why, #references, #faq, #youtube, #contact,
    #process, #cta, #usp, #portfolio-showcase, #catalog, #how { padding: 3.6rem 0; }
    #usp { padding: 3.6rem 0 0; }
    #portfolio-showcase { padding: 1.5rem 0 0; }

    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-btns { flex-direction: column; width: 100%; }
    .cta-btns .btn { justify-content: center; width: 100%; }

    .form-row { grid-template-columns: 1fr; }
    .form-bottom { flex-direction: column; align-items: stretch; }
    .form-bottom .btn { justify-content: center; }

    .footer-inner { flex-direction: column; align-items: flex-start; }

    .yt-wrap { padding: 1rem; }
    .ps-wrap { padding: 1.4rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .ref-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hex-grid { grid-template-columns: repeat(3, 1fr); gap: .6rem; padding: 1rem; }
    .hex { width: 58px; height: 58px; font-size: 1.1rem; }
    .modal-box { padding: 1.6rem; }
}

@media print {
    nav, .mobile-nav, footer { display: none !important; }
    body { background: #fff !important; color: #000 !important; }
    .srv-card, .ref-item, .form-box, .modal-box {
        background: #fff !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}
/* ═══════════════════════════════════════════════════
   PENTEST SECTION + POPUP — appendelendő az absec.css végére
   ═══════════════════════════════════════════════════ */

/* ─── Pentest section ─────────────────────────────── */
.pentest-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(11,143,160,0.04) 50%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pentest-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.pentest-new-badge {
    display: inline-block; background: var(--gold-dim); color: var(--gold);
    padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.5px; margin-bottom: 14px;
}
.pentest-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 52px); font-weight: 700; line-height: 1.1;
    color: var(--text); margin: 0 0 14px;
}
.pentest-title .gold { color: var(--gold); }
.pentest-subtitle { color: var(--text2); font-size: 17px; margin: 0; line-height: 1.5; }

/* Service cards */
.pentest-services {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px; margin-bottom: 56px;
}
.ps-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 14px; padding: 24px;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    transition: all .25s;
}
.ps-card:hover {
    border-color: var(--gold); transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,147,58,0.15);
}
.ps-icon { font-size: 32px; margin-bottom: 10px; }
.ps-card h3 { font-size: 16px; margin: 0 0 8px; color: var(--text); }
.ps-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55; }

/* CTA grid */
.pentest-cta-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px;
}
@media (max-width: 900px) {
    .pentest-cta-grid { grid-template-columns: 1fr; }
}
.pentest-cta {
    background: var(--bg3); border: 1px solid var(--borders);
    border-radius: 18px; padding: 28px;
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    display: flex; flex-direction: column;
}
.tester-cta {
    background: linear-gradient(135deg, rgba(201,147,58,0.10), rgba(11,143,160,0.06));
    border: 2px solid var(--gold);
}
.cta-tag {
    display: inline-block; align-self: flex-start;
    background: var(--gold); color: var(--navy);
    padding: 4px 10px; border-radius: 6px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.pentest-cta h3 { font-size: 19px; margin: 0 0 10px; color: var(--text); }
.pentest-cta p { font-size: 13.5px; color: var(--text2); margin: 0 0 18px; line-height: 1.55; flex: 1; }

/* Tester form */
.tester-form { display: flex; flex-direction: column; gap: 10px; }
.tester-form input {
    background: var(--bg); border: 1px solid var(--borders); color: var(--text);
    padding: 12px 14px; border-radius: 10px; font-size: 14px; font-family: inherit;
}
.tester-form input:focus { outline: none; border-color: var(--gold); }
.tester-consent {
    display: flex; gap: 10px; align-items: flex-start;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 12px;
    font-size: 11.5px; color: var(--text2); line-height: 1.45;
    cursor: pointer;
}
.tester-consent input[type=checkbox] {
    margin-top: 3px; flex-shrink: 0; accent-color: var(--gold);
    width: 16px; height: 16px; cursor: pointer;
}
.tester-consent a { color: var(--gold); text-decoration: underline; }
.tester-consent strong { color: var(--text); font-weight: 600; }
.tester-consent-newsletter { background: rgba(201,147,58,0.06); border-color: rgba(201,147,58,0.25); }
.tester-legal-note {
    font-size: 10.5px; color: var(--muted); margin: 4px 0 0;
    line-height: 1.4; font-style: italic;
}
.btn-cta {
    background: var(--gold); color: var(--navy);
    padding: 12px 22px; border: none; border-radius: 10px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    text-decoration: none; text-align: center; display: inline-block;
    transition: all .2s;
}
.btn-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-cta-gold { background: var(--gold-light); }

/* Result box */
.tester-result {
    margin-top: 18px; padding: 18px; background: var(--bg);
    border: 1px solid var(--borders); border-radius: 12px;
}
.tester-grade {
    border: 3px solid; border-radius: 50%; width: 100px; height: 100px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.tester-grade .grade-num { font-size: 36px; font-weight: 700; line-height: 1; }
.tester-grade .grade-lbl { font-size: 9px; color: var(--muted); margin-top: 4px; text-transform: uppercase; }
.tester-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; font-size: 13px; color: var(--text2); margin-bottom: 14px; }
.tester-headers { margin-top: 14px; }
.tester-headers summary { cursor: pointer; color: var(--gold); font-size: 13px; padding: 6px 0; }
.tester-headers table { width: 100%; font-size: 11px; margin-top: 8px; border-collapse: collapse; }
.tester-headers td { padding: 5px 8px; border-bottom: 1px solid var(--border); color: var(--text2); }
.tester-headers td:first-child { font-weight: 600; color: var(--text); }
.tester-email-note { font-size: 12px; color: var(--muted); margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.tester-email-note.tester-email-ok {
    color: #1a6e3f;
    background: rgba(61,184,122,0.08);
    border: 1px solid rgba(61,184,122,0.35);
    border-radius: 8px;
    padding: 10px 14px;
    border-top: 1px solid rgba(61,184,122,0.35);
}
.tester-email-note.tester-email-fail {
    color: #8c1a1a;
    background: rgba(178,44,44,0.08);
    border: 1px solid rgba(178,44,44,0.35);
    border-radius: 8px;
    padding: 10px 14px;
    border-top: 1px solid rgba(178,44,44,0.35);
}
.tester-cta-note { font-size: 13px; margin-top: 10px; }
.tester-cta-note a { color: var(--gold); }
.tester-error { color: var(--red, #B22C2C); font-size: 14px; }

/* ─── AI summary blokk a tester eredményhez ──────── */
.tester-ai-summary {
    margin-top: 16px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(11,143,160,0.10), rgba(201,147,58,0.08));
    border: 1px solid rgba(11,143,160,0.35);
    border-radius: 12px;
    display: flex; gap: 12px; align-items: flex-start;
    backdrop-filter: blur(12px);
}
.tester-ai-summary .ai-icon {
    font-size: 26px; line-height: 1; flex-shrink: 0;
    padding-top: 2px;
}
.tester-ai-summary .ai-body { flex: 1; min-width: 0; }
.tester-ai-summary .ai-badge {
    display: inline-block;
    background: var(--teal); color: #fff;
    padding: 2px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.tester-ai-summary .ai-text {
    color: var(--text);
    font-size: 14px; line-height: 1.55;
}

/* ─── Pentest popup overlay ──────────────────────── */
.pentest-popup-overlay {
    position: fixed; inset: 0; background: rgba(4,14,28,0.85);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    padding: 20px; animation: popupFadeIn .3s;
}
@keyframes popupFadeIn { from { opacity: 0; } to { opacity: 1; } }
.pentest-popup {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border: 2px solid var(--gold); border-radius: 18px;
    padding: 36px 32px; max-width: 560px; width: 100%;
    text-align: center; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: popupSlideIn .4s;
}
@keyframes popupSlideIn { from { transform: translateY(40px) scale(0.95); opacity: 0; } to { transform: none; opacity: 1; } }
.popup-close {
    position: absolute; top: -14px; right: -14px;
    width: 44px; height: 44px;
    background: #fff; border: 2px solid var(--navy);
    color: var(--navy);
    font-size: 28px; font-weight: 700;
    cursor: pointer; line-height: 1; padding: 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    transition: all .15s ease;
    z-index: 10;
}
.popup-close:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(201,147,58,0.6);
}
.popup-close:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
.popup-badge {
    display: inline-block; background: var(--gold); color: var(--navy);
    padding: 6px 14px; border-radius: 999px; font-size: 12px;
    font-weight: 700; letter-spacing: 0.5px; margin-bottom: 18px;
}
.pentest-popup h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px; color: var(--text); margin: 0 0 14px;
}
.pentest-popup .gold { color: var(--gold); }
.pentest-popup p { color: var(--text2); font-size: 15px; line-height: 1.5; margin: 0 0 24px; }
.popup-cta-row {
    display: flex; flex-direction: column; gap: 10px;
    max-width: 380px; margin: 0 auto;
}
.popup-footer {
    margin-top: 18px !important; font-size: 12px !important;
    color: var(--muted) !important;
}
.popup-footer a { color: var(--gold); }

/* ─── Pentest popup share buttons ────────────────── */
.popup-share {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.share-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
    text-align: center;
}
.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text2);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    font-family: inherit;
}
.share-btn:hover {
    transform: translateY(-1px);
    border-color: var(--gold);
    color: var(--text);
    background: var(--bg4);
}
.share-btn svg { display: block; flex-shrink: 0; }
.share-linkedin:hover { color: #0a66c2; border-color: #0a66c2; }
.share-fb:hover       { color: #1877f2; border-color: #1877f2; }
.share-x:hover        { color: #fff;    border-color: #fff;    }
.share-mail:hover     { color: var(--teal-light); border-color: var(--teal-light); }
.share-copy           { font-family: inherit; }
.share-copy.copied {
    color: var(--green);
    border-color: var(--green);
    background: rgba(61,184,122,0.12);
}
@media (max-width: 600px) {
    .share-btn span { display: none; }
    .share-btn { padding: 10px 12px; }
}

/* ════════════════════════════════════════════════════════════════
   PENTEST SPOTLIGHT — Hero floating card (figyelemfelhívó)
   ════════════════════════════════════════════════════════════════ */
.pentest-spotlight {
    position: relative;
    margin: 56px auto 0;
    max-width: 1100px;
    border-radius: 22px;
    padding: 1px;                    /* gradient border outer */
    background: linear-gradient(135deg, var(--gold) 0%, rgba(201,147,58,0.4) 25%, var(--teal) 60%, var(--gold-light) 100%);
    background-size: 300% 300%;
    animation: psBorderShift 8s ease infinite;
    box-shadow: 0 30px 80px -20px rgba(201,147,58,0.35), 0 0 0 1px rgba(201,147,58,0.10);
    transform: translateY(0);
    opacity: 0;
    animation: psBorderShift 8s ease infinite, psSlideUp 1.2s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes psBorderShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
@keyframes psSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.ps-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(7,30,56,0.96) 0%, rgba(12,52,89,0.96) 100%);
    border-radius: 21px;
    padding: 38px 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 38px;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(40px);
}
.ps-glow {
    position: absolute; top: -120px; right: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(201,147,58,0.45) 0%, transparent 65%);
    pointer-events: none;
    filter: blur(40px);
    animation: psGlowPulse 5s ease-in-out infinite;
}
@keyframes psGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.15); }
}
.ps-pulse-ring {
    position: absolute; top: 28px; left: 32px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(61,184,122,0.7);
    animation: psPulseRing 2.2s infinite;
}
@keyframes psPulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(61,184,122,0.7); }
    70%  { box-shadow: 0 0 0 16px rgba(61,184,122,0); }
    100% { box-shadow: 0 0 0 0 rgba(61,184,122,0); }
}

.ps-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 11px; font-weight: 700;
    color: var(--green);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 14px;
    padding-left: 26px;
}
.ps-dot {
    width: 6px; height: 6px; background: var(--green); border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
}

.ps-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(38px, 4.6vw, 56px);
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.ps-line { display: block; }
.ps-line-1 { color: var(--gold); font-style: italic; }
.ps-line-2 { color: var(--text); font-size: 0.55em; font-weight: 400; opacity: 0.85; letter-spacing: 0.5px; }

.ps-tag {
    color: var(--text2);
    font-size: 13.5px;
    margin: 0 0 22px;
    line-height: 1.55;
}
.ps-tag strong { color: var(--gold-light); }

.ps-actions {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.ps-cta-primary {
    display: inline-flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 14px 22px 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 12px 30px -8px rgba(201,147,58,0.5);
    position: relative; overflow: hidden;
}
.ps-cta-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0; transition: opacity 0.3s;
}
.ps-cta-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 50px -10px rgba(201,147,58,0.7); }
.ps-cta-primary:hover::before { opacity: 1; }
.ps-cta-primary > * { position: relative; }
.ps-cta-icon { font-size: 22px; line-height: 1; }
.ps-cta-stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.ps-cta-stack strong { font-size: 14px; font-weight: 700; }
.ps-cta-stack small { font-size: 11px; opacity: 0.75; margin-top: 2px; }
.ps-cta-arrow { font-size: 20px; transition: transform 0.3s; }
.ps-cta-primary:hover .ps-cta-arrow { transform: translateX(4px); }

.ps-cta-ghost {
    color: var(--text2); text-decoration: none; font-size: 13px;
    padding: 10px 14px; border-radius: 10px; transition: all 0.2s;
    border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.ps-cta-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* Right side: Grade circle + mini stats */
.ps-right {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    padding-left: 32px;
    border-left: 1px solid rgba(255,255,255,0.10);
}
.ps-grade {
    width: 130px; height: 130px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: radial-gradient(circle at 30% 20%, rgba(201,147,58,0.18), transparent);
    position: relative;
    animation: psGradeRotate 20s linear infinite;
}
.ps-grade::before {
    content: ''; position: absolute; inset: -8px;
    border: 1px dashed rgba(201,147,58,0.4);
    border-radius: 50%;
    animation: psGradeRotate 30s linear infinite reverse;
}
@keyframes psGradeRotate {
    from { transform: rotate(0deg); } to { transform: rotate(360deg); }
}
.ps-grade > * { animation: psGradeRotate 20s linear infinite reverse; }
.ps-grade-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px; font-weight: 700; line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201,147,58,0.6);
}
.ps-grade-lbl {
    font-size: 9px; color: var(--muted); margin-top: 4px;
    letter-spacing: 1.5px; text-transform: uppercase;
}

.ps-mini-stats { display: flex; gap: 18px; }
.ps-mini { text-align: center; min-width: 60px; }
.ps-mini strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--gold-light);
    line-height: 1;
}
.ps-mini span {
    display: block; font-size: 9.5px; color: var(--muted);
    margin-top: 4px; line-height: 1.3;
}

@media (max-width: 880px) {
    .ps-inner { grid-template-columns: 1fr; padding: 28px 22px; }
    .ps-right { padding-left: 0; padding-top: 24px; border-left: none; border-top: 1px solid rgba(255,255,255,0.10); flex-direction: row; justify-content: space-between; }
    .ps-headline { font-size: 36px; }
    .ps-cta-stack strong { font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════════
   STICKY FAB — minden oldalon látható pulse-os gomb
   ════════════════════════════════════════════════════════════════ */
.pentest-fab {
    position: fixed; bottom: 24px; left: 24px; z-index: 9000;
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 12px 20px 12px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    box-shadow: 0 12px 30px -6px rgba(201,147,58,0.55), 0 0 0 1px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    overflow: visible;
    transform: translateY(80px); opacity: 0;
    animation: fabAppear 0.7s 2.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes fabAppear {
    to { transform: translateY(0); opacity: 1; }
}
.pentest-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px -8px rgba(201,147,58,0.75);
}
.fab-pulse {
    position: absolute; inset: 0;
    border-radius: 999px;
    border: 2px solid var(--gold);
    animation: fabPulseOut 2s infinite;
    pointer-events: none;
}
@keyframes fabPulseOut {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}
.fab-icon {
    font-size: 22px; line-height: 1;
    background: var(--navy); color: var(--gold);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.fab-text { display: flex; flex-direction: column; line-height: 1.1; }
.fab-text strong { font-size: 13px; font-weight: 700; }
.fab-text small { font-size: 10px; opacity: 0.7; }

@media (max-width: 600px) {
    .pentest-fab { left: 12px; right: 12px; bottom: 12px; justify-content: center; padding: 14px; }
    .pentest-fab .fab-text strong { font-size: 14px; }
}

/* ════════════════════════════════════════════════════════════════
   PENTEST SECTION — drámaibb háttér + tipográfia (override)
   ════════════════════════════════════════════════════════════════ */
.pentest-section {
    position: relative;
    padding: 110px 0 100px;
    background: var(--bg);
    overflow: hidden;
    border-top: 1px solid rgba(201,147,58,0.18);
    border-bottom: 1px solid rgba(201,147,58,0.18);
}
.ps-bg-mesh {
    position: absolute; inset: 0;
    background:
        radial-gradient(at 20% 25%, rgba(201,147,58,0.12) 0%, transparent 45%),
        radial-gradient(at 80% 70%, rgba(11,143,160,0.10) 0%, transparent 50%),
        radial-gradient(at 50% 100%, rgba(201,147,58,0.08) 0%, transparent 60%);
    animation: meshFloat 18s ease-in-out infinite;
    pointer-events: none;
}
@keyframes meshFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50%      { transform: scale(1.08) rotate(2deg); }
}
.ps-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}
.ps-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.55;
}
.ps-bg-orb-1 {
    top: 8%; left: -10%;
    width: 460px; height: 460px;
    background: radial-gradient(circle, var(--gold), transparent);
    animation: orbFloat1 22s ease-in-out infinite;
}
.ps-bg-orb-2 {
    bottom: 8%; right: -12%;
    width: 540px; height: 540px;
    background: radial-gradient(circle, var(--teal), transparent);
    animation: orbFloat2 26s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0,0); }
    50%      { transform: translate(60px, 40px); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0,0); }
    50%      { transform: translate(-50px, -60px); }
}

.pentest-header { position: relative; z-index: 2; margin-bottom: 64px; }
.pentest-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    margin-bottom: 22px;
}
.pe-line {
    height: 1px; width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pentest-new-badge {
    background: rgba(201,147,58,0.12);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    border: 1px solid rgba(201,147,58,0.4);
    text-transform: uppercase;
    margin-bottom: 0;
    animation: badgeGlow 3s ease-in-out infinite;
}
@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,147,58,0.3); }
    50%      { box-shadow: 0 0 30px 4px rgba(201,147,58,0.4); }
}

.pentest-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(56px, 8vw, 96px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0 0 24px;
    color: var(--text);
    position: relative;
}
.pt-overline {
    display: block;
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.pt-italic { font-style: italic; font-weight: 600; }
.pentest-title .gold { color: var(--gold); }
.pentest-subtitle {
    color: var(--text2);
    font-size: 18px;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}
.pentest-subtitle strong { color: var(--gold-light); }

/* Service cards — staggered entry + tilt-hover */
.pentest-services {
    position: relative; z-index: 2;
    margin-bottom: 72px;
}
.ps-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    opacity: 0;
    animation: cardIn 0.7s forwards;
}
.ps-card:nth-child(1) { animation-delay: 0.05s; }
.ps-card:nth-child(2) { animation-delay: 0.15s; }
.ps-card:nth-child(3) { animation-delay: 0.25s; }
.ps-card:nth-child(4) { animation-delay: 0.35s; }
@keyframes cardIn {
    from { opacity: 0; transform: translateY(30px) rotate3d(1,0,0,8deg); }
    to   { opacity: 1; transform: none; }
}
.ps-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: var(--gold);
    box-shadow: 0 20px 60px -10px rgba(201,147,58,0.25);
    background: linear-gradient(135deg, rgba(201,147,58,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.ps-card .ps-icon {
    font-size: 36px;
    display: inline-block;
    transition: transform 0.4s;
}
.ps-card:hover .ps-icon { transform: scale(1.2) rotate(-6deg); }

/* CTA grid */
.pentest-cta-grid {
    position: relative; z-index: 2;
}


/* ════════════════════════════════════════════════════════════════
   POPUP — drámaibb glow + double-ring
   ════════════════════════════════════════════════════════════════ */
.pentest-popup {
    position: relative;
}
.pentest-popup::before {
    content: ''; position: absolute; inset: -3px;
    border-radius: 21px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 50%, var(--gold-light) 100%);
    background-size: 300% 300%;
    z-index: -1;
    animation: psBorderShift 5s ease infinite;
    filter: blur(2px);
    opacity: 0.85;
}
.pentest-popup::after {
    content: ''; position: absolute;
    top: -50px; left: 50%; transform: translateX(-50%);
    width: 120%; height: 80px;
    background: radial-gradient(ellipse, rgba(201,147,58,0.6) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(20px);
}
.popup-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 4px 20px rgba(201,147,58,0.5);
    animation: badgeGlow 2.5s ease-in-out infinite;
}
.pentest-popup h2 {
    font-size: 36px;
    letter-spacing: -0.5px;
}
.pentest-popup .gold {
    text-shadow: 0 0 20px rgba(201,147,58,0.4);
}

/* ════════════════════════════════════════════════════════════════
   PROMO STRIP — májusi bevezető ár (Spotlight tetején)
   ════════════════════════════════════════════════════════════════ */
.ps-promo-strip {
    position: relative;
    background:
        linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%),
        repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 18px);
    background-blend-mode: overlay;
    color: var(--navy);
    padding: 12px 22px;
    border-radius: 21px 21px 0 0;
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    overflow: hidden;
    z-index: 3;
    /* Diagonális csíkok textúra */
    background-image:
        repeating-linear-gradient(45deg, transparent 0 14px, rgba(0,0,0,0.06) 14px 16px),
        linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.ps-promo-strip::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    animation: promoShine 3.5s ease-in-out infinite;
}
@keyframes promoShine {
    0%, 100% { transform: translateX(-100%); }
    50%      { transform: translateX(100%); }
}
.ps-promo-pin {
    font-size: 18px;
    animation: promoPinShake 1.5s ease-in-out infinite;
    transform-origin: bottom;
}
@keyframes promoPinShake {
    0%, 90%, 100% { transform: rotate(0deg); }
    93% { transform: rotate(15deg); }
    96% { transform: rotate(-15deg); }
}
.ps-promo-msg em { font-style: italic; font-weight: 700; }
.ps-promo-countdown {
    display: inline-flex; align-items: baseline; gap: 4px;
    background: rgba(0,0,0,0.18);
    padding: 4px 10px;
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
    margin-left: 4px;
}
.psc-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700; font-size: 17px;
    color: var(--navy);
    line-height: 1;
}
.psc-lbl {
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    color: var(--navy); opacity: 0.75;
    margin-right: 4px;
}

/* Spotlight átírás: a promo-strip beleilleszkedik */
.pentest-spotlight {
    overflow: hidden;
}
.pentest-spotlight .ps-inner {
    border-radius: 0 0 21px 21px;
}

/* ════════════════════════════════════════════════════════════════
   COMPLIANCE HOOK CARDS — NIS2 + ISO 27001 a Spotlight bal oldalán
   ════════════════════════════════════════════════════════════════ */
.ps-compliance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}
.psc-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
.psc-card::after {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
}
.psc-nis2::after { background: linear-gradient(180deg, #ff5e62, #c9933a); }
.psc-iso::after  { background: linear-gradient(180deg, #3DB87A, #0B8FA0); }
.psc-card:hover {
    border-color: var(--gold);
    background: rgba(201,147,58,0.08);
    transform: translateX(2px);
}
.psc-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.psc-body { flex: 1; }
.psc-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 4px;
}
.psc-nis2 .psc-tag { background: rgba(255,94,98,0.15); color: #ff8a8d; }
.psc-iso .psc-tag  { background: rgba(61,184,122,0.15); color: var(--green); }
.psc-body strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.3;
}
.psc-body small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.ps-cta-ghost-gold {
    color: var(--gold);
    border: 1px solid rgba(201,147,58,0.4);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
    background: rgba(201,147,58,0.06);
}
.ps-cta-ghost-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(201,147,58,0.5);
}

@media (max-width: 700px) {
    .ps-compliance { grid-template-columns: 1fr; }
    .ps-promo-strip { font-size: 11px; padding: 10px 14px; gap: 8px; }
    .psc-num { font-size: 14px; }
}

/* ════════════════════════════════════════════════════════════════
   "KINEK KÖTELEZŐ?" — pentest section mandate sáv
   ════════════════════════════════════════════════════════════════ */
.ps-mandate {
    position: relative; z-index: 2;
    margin: 56px 0 72px;
}
.ps-mandate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}
@media (max-width: 880px) {
    .ps-mandate-grid { grid-template-columns: 1fr; }
}
.psm-card {
    background: linear-gradient(135deg, rgba(7,30,56,0.85) 0%, rgba(12,52,89,0.85) 100%);
    border: 1px solid var(--borders);
    border-radius: 18px;
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    backdrop-filter: blur(18px);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}
.psm-card::before {
    content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.psm-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 22px 50px -16px rgba(201,147,58,0.3);
}
.psm-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 88px;
    font-weight: 700;
    line-height: 0.85;
    background: linear-gradient(135deg, var(--gold) 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(201,147,58,0.3);
    letter-spacing: -2px;
}
.psm-num span {
    display: block;
    font-size: 0.45em;
    line-height: 1;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
    margin-top: 4px;
    letter-spacing: 0;
}
.psm-content { flex: 1; }
.psm-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Figtree', sans-serif;
}
.psm-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.25;
}
.psm-content p {
    color: var(--text2);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 12px;
}
.psm-content p strong { color: var(--gold-light); }
.psm-content ul {
    margin: 0; padding: 0;
    list-style: none;
}
.psm-content li {
    color: var(--muted);
    font-size: 12.5px;
    padding: 4px 0 4px 20px;
    position: relative;
    line-height: 1.4;
}
.psm-content li::before {
    content: '▸';
    position: absolute;
    left: 4px;
    color: var(--gold);
}

.ps-mandate-cta {
    background: linear-gradient(135deg, rgba(201,147,58,0.12) 0%, rgba(11,143,160,0.08) 100%);
    border: 1px solid rgba(201,147,58,0.3);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.psmc-text {
    flex: 1; min-width: 280px;
    color: var(--text2);
    font-size: 14px;
    line-height: 1.55;
}
.psmc-text strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    margin-bottom: 4px;
}
.psmc-btn {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s;
    flex-shrink: 0;
    box-shadow: 0 10px 24px -8px rgba(201,147,58,0.5);
}
.psmc-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px -8px rgba(201,147,58,0.7);
}

/* ════════════════════════════════════════════════════════════════
   POPUP — promo flag + mandate pills
   ════════════════════════════════════════════════════════════════ */
.popup-promo-flag {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(201,147,58,0.4);
    animation: promoPulseBg 2s ease-in-out infinite;
}
@keyframes promoPulseBg {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.03); }
}
.popup-promo-cd {
    background: rgba(0,0,0,0.18);
    padding: 3px 10px;
    border-radius: 999px;
    font-variant-numeric: tabular-nums;
}

.popup-mandate-row {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center;
    margin: 14px 0 22px;
}
.pmr-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.pmr-nis2 { border-color: rgba(255,138,141,0.4); color: #ff8a8d; }
.pmr-iso  { border-color: rgba(61,184,122,0.4); color: var(--green); }


/* ─── Free Tools section (Subdomain, DMARC, CVE, WP, Email Leak) ─── */
.ftools-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:18px; margin-top:24px; }
.ftool-card { background:var(--bg2); border:1px solid var(--border); border-radius:12px; padding:20px; transition:all .2s; backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px); }
.ftool-card:hover { border-color:var(--gold-dim); transform:translateY(-2px); box-shadow:0 8px 20px rgba(0,0,0,0.18); }
.ftool-card .ftool-ico { font-size:32px; margin-bottom:8px; }
.ftool-card h3 { font-size:16px; margin:4px 0 6px; color:var(--text); }
.ftool-card p { font-size:12.5px; color:var(--text2); margin:0 0 12px; line-height:1.55; }
.ftool-form { display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.ftool-form input { background:var(--bg); border:1px solid var(--borders); color:var(--text); padding:10px 12px; border-radius:8px; font-size:13px; font-family:inherit; }
.ftool-form input:focus { outline:none; border-color:var(--gold); }
.btn-cta-small { padding:9px 16px; font-size:13px; }
.ftool-result { margin-top:12px; padding:12px; background:var(--bg); border:1px solid var(--border); border-radius:8px; font-size:12px; max-height:280px; overflow-y:auto; }
.ftool-result .ftool-grade { display:inline-block; padding:4px 10px; border-radius:6px; font-weight:700; color:#fff; margin-bottom:8px; }
.ftool-result .ftool-grade.A,.ftool-result .ftool-grade.A-plus { background:#3DB87A; }
.ftool-result .ftool-grade.B { background:#C9933A; }
.ftool-result .ftool-grade.C { background:#E67E22; }
.ftool-result .ftool-grade.D,.ftool-result .ftool-grade.F { background:#B22C2C; }
.ftool-result ul { margin:6px 0; padding-left:20px; font-size:11.5px; }
.ftool-result li { margin:2px 0; }
.ftool-result code { background:rgba(0,0,0,0.2); padding:1px 5px; border-radius:3px; font-size:11px; }
.ftool-result .ftool-issue { color:#ff8a8d; }
.ftool-result .ftool-ok { color:var(--green); }
.ftool-result .ftool-loading { color:var(--gold); font-style:italic; }
/* ╔═════════════════════════════════════════════════════════════╗ */
/* ║  AKADÉMIA SECTION — Absec Online Oktatási Platform             ║ */
/* ║  Insert: append to /css/absec.css OR load separately            ║ */
/* ╚═════════════════════════════════════════════════════════════╝ */

.akademia-section {
    padding: 70px 0 80px;
    position: relative;
}

.akademia-card {
    position: relative;
    background: linear-gradient(135deg,
        rgba(11, 143, 160, 0.10) 0%,
        rgba(7, 30, 56, 0.6) 40%,
        rgba(7, 30, 56, 0.85) 100%);
    border: 1px solid var(--borders);
    border-radius: var(--radius);
    padding: 48px 44px;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-glass);
}

.akademia-bg-glow {
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 201, 218, 0.18) 0%, rgba(59, 201, 218, 0) 70%);
    top: -200px; right: -180px;
    pointer-events: none;
    filter: blur(20px);
}
.akademia-card::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 147, 58, 0.10) 0%, transparent 70%);
    bottom: -180px; left: -150px;
    pointer-events: none;
    filter: blur(30px);
}

.akademia-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.akademia-content { min-width: 0; }

.akademia-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(59, 201, 218, 0.12);
    border: 1px solid rgba(59, 201, 218, 0.35);
    color: var(--teal-light);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.akademia-badge-dot {
    width: 8px; height: 8px;
    background: var(--teal-light);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--teal-light);
    animation: akadPulse 2s infinite ease-in-out;
}
@keyframes akadPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.25); }
}

.akademia-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.akademia-title-accent {
    color: var(--teal-light);
    font-style: italic;
    font-weight: 500;
}

.akademia-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text2);
    margin: 0 0 26px;
    max-width: 580px;
}

.akademia-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    gap: 12px;
}
.akademia-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text2);
    transition: border-color .2s, background .2s, transform .2s;
}
.akademia-features li:hover {
    border-color: rgba(59, 201, 218, 0.45);
    background: rgba(11, 143, 160, 0.08);
    transform: translateX(2px);
}
.akademia-features li svg {
    color: var(--teal-light);
    flex-shrink: 0;
    margin-top: 2px;
}
.akademia-features strong {
    color: var(--text);
    font-weight: 600;
}

.akademia-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}
.akademia-cta-row .btn { gap: 8px; }

.akademia-fineprint {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}
.akademia-fineprint a {
    color: var(--gold-light);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.akademia-fineprint a:hover { color: var(--gold); }

/* Right column — stat grid */
.akademia-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-self: stretch;
}
.akad-stat {
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all .2s ease;
}
.akad-stat:hover {
    border-color: rgba(59, 201, 218, 0.4);
    transform: translateY(-2px);
    background: rgba(11, 143, 160, 0.10);
}
.akad-stat-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 6px;
}
.akad-stat-lbl {
    font-size: 0.82rem;
    color: var(--text2);
    line-height: 1.35;
    font-weight: 600;
}
.akad-stat-lbl span {
    display: block;
    color: var(--muted);
    font-weight: 400;
    font-size: 0.78rem;
    margin-top: 2px;
}
.akad-stat-accent {
    background: linear-gradient(135deg, rgba(201, 147, 58, 0.12), rgba(11, 143, 160, 0.06));
    border-color: rgba(201, 147, 58, 0.32);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.akad-stat-accent svg { color: var(--gold-light); }

/* Mobile */
@media (max-width: 880px) {
    .akademia-card { padding: 34px 24px; }
    .akademia-grid { grid-template-columns: 1fr; gap: 28px; }
    .akademia-stats { grid-template-columns: 1fr 1fr; }
    .akademia-title { font-size: 1.9rem; }
}
@media (max-width: 480px) {
    .akademia-stats { grid-template-columns: 1fr; }
    .akademia-card { padding: 28px 20px; }
}

/* Light theme adjustments (data-theme="light") */
html[data-theme="light"] .akademia-card {
    background: linear-gradient(135deg,
        rgba(11, 143, 160, 0.04) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(238, 244, 249, 0.95) 100%);
}
html[data-theme="light"] .akademia-features li {
    background: rgba(255, 255, 255, 0.7);
}
html[data-theme="light"] .akad-stat {
    background: rgba(255, 255, 255, 0.85);
}

/* ── Absec Akadémia lead-form ── */
.akademia-lead-form { margin-top: 22px; padding: 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.akademia-lead-title { font-weight: 600; color: var(--text); margin: 0 0 14px; font-size: .98rem; }
.akademia-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.akademia-lead-grid input, .akademia-lead-grid select {
  width: 100%; padding: 11px 14px; font-family: inherit; font-size: .92rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--borders); border-radius: var(--radius-btn); transition: border-color .2s;
}
.akademia-lead-grid input::placeholder { color: var(--muted); }
.akademia-lead-grid input:focus, .akademia-lead-grid select:focus { outline: none; border-color: var(--gold-light); }
.akademia-lead-grid select { cursor: pointer; }
.akademia-lead-form button { width: 100%; justify-content: center; }
@media (max-width: 560px){ .akademia-lead-grid { grid-template-columns: 1fr; } }
