/* ==========================================================
   UNITA SERVICES — Unified Stylesheet
   Migrated from inline <style> blocks (7 HTML files)
   ========================================================== */

/* ==========================================================
   1. CSS VARIABLES & RESET
   ========================================================== */
:root {
    --clr-bg:           #0A0A0A;
    --clr-surface:      #111111;
    --clr-surface-2:    #1A1A1A;
    --clr-accent:       #00C853;
    --clr-accent-dim:   #00963E;
    --clr-text:         #FFFFFF;
    --clr-text-muted:   #A0A0A0;
    --clr-text-dim:     #777777;
    --clr-badge-bg:     #2A2A2A;
    --clr-badge-border: #3A3A3A;
    --clr-danger:       #FF3D3D;
    --font-display:     'Barlow Condensed', sans-serif;
    --font-body:        'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-green: 0 0 40px rgba(0, 200, 83, 0.15);
    --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text-muted);
    background: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ==========================================================
   2. UTILITY
   ========================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--surface { background: var(--clr-surface); }
.section--surface2 { background: var(--clr-surface-2); }
.text-center { text-align: center; }

/* Dot pattern overlay */
.dot-pattern { position: relative; }
.dot-pattern::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,200,83,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}

/* ==========================================================
   3. TYPOGRAPHY
   ========================================================== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 0.95; color: var(--clr-text); }
h1 { font-size: 72px; font-weight: 900; text-transform: uppercase; }
h2 { font-size: 48px; font-weight: 900; text-transform: uppercase; margin-bottom: 20px; }
h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
.subtitle { font-size: 17px; line-height: 1.6; color: var(--clr-text-muted); }
.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 16px;
}

/* ==========================================================
   4. BADGE
   ========================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-badge-bg);
    border: 1px solid var(--clr-badge-border);
    border-radius: 50px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-text);
}

/* ==========================================================
   5. BUTTONS
   ========================================================== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}
.btn--primary { background: var(--clr-accent); color: #000; }
.btn--primary:hover { background: var(--clr-accent-dim); transform: translateY(-1px); }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.2); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.04); }
.btn--dark { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.btn--dark:hover { background: rgba(255,255,255,0.1); border-color: var(--clr-accent); }
.btn--full { width: 100%; text-align: center; padding: 18px; font-size: 14px; }

/* ==========================================================
   6. HEADER (main pages)
   ========================================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: all 0.3s ease;
}
.header.scrolled { border-bottom: 1px solid #1A1A1A; }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 38px; }
.header__right { display: flex; align-items: center; gap: 24px; }
.header__phone { color: var(--clr-text-muted); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.header__phone i { color: var(--clr-accent); margin-right: 6px; }
.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.header__nav a:hover { color: #fff; }
.header__cta {
    background: var(--clr-accent);
    color: #000;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s;
}
.header__cta:hover { background: var(--clr-accent-dim); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* Header — legal/simple pages */
.header--legal { background: rgba(10,10,10,0.92); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 16px 0; }
.header--legal .container { display: flex; align-items: center; justify-content: space-between; }
.header__back {
    font-size: 14px; color: var(--clr-text-muted);
    transition: color 0.2s; display: flex; align-items: center; gap: 8px;
}
.header__back:hover { color: var(--clr-accent); }

/* ==========================================================
   7. HERO (shared base)
   ========================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--clr-bg);
    overflow: hidden;
    padding-top: 80px;
}
.hero > .container { width: 100%; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.25; }
.hero__bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.hero__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,200,83,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
}
.hero__reveal {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    opacity: 0.55;
    pointer-events: none; z-index: 1;
    mask-image: radial-gradient(350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), black 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(350px circle at var(--mouse-x, -999px) var(--mouse-y, -999px), black 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
}
.hero__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.hero__content { max-width: 680px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-badge-bg);
    border: 1px solid var(--clr-badge-border);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 28px;
}
.hero__badge i { font-size: 8px; }
.hero h1 { margin-bottom: 24px; line-height: 0.95; }
.hero .subtitle { margin-bottom: 40px; max-width: 520px; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero — index.html specific */
.hero--index .hero__bg {
    background-image: url('../images/unitafekete.webp');
    opacity: 0.15;
    animation: heroBreathe 8s ease-in-out infinite;
}
@keyframes heroBreathe {
    0%, 100% { opacity: 0.12; }
    50% { opacity: 0.22; }
}
.hero--index .hero__glow {
    position: absolute;
    top: 50%; right: -5%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    animation: glowPulse 8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}
.hero--index .hero__reveal {
    background-image: url('../images/unitafekete.webp');
    opacity: 0.55;
}
.hero--index .hero__inner { justify-content: flex-start; }

/* Hero — ipari-takaritas specific */
.hero--ipari {
    background:
        radial-gradient(ellipse at 70% 50%, rgba(0,200,83,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(0,200,83,0.04) 0%, transparent 50%),
        var(--clr-bg);
}
.hero--ipari .hero__bg { background-image: url('../images/hero-ipari-hokamera.jpg'); }
.hero--ipari .hero__reveal { background-image: url('../images/hero-ipari-hokamera.jpg'); opacity: 0.6; }

/* Hero — fesztival specific */
.hero--fesztival {
    background:
        radial-gradient(ellipse at 70% 50%, rgba(0,200,83,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(0,200,83,0.04) 0%, transparent 50%),
        var(--clr-bg);
}
.hero--fesztival .hero__bg { background-image: url('../images/hero-fesztival.jpg'); }
.hero--fesztival .hero__bg-overlay { background: rgba(0,0,0,0.45); }
.hero--fesztival .hero__reveal { background-image: url('../images/hero-fesztival.jpg'); }

/* Hero stats (subpages) */
.hero__stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero__stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
}
.hero__stat-label { font-size: 12px; color: var(--clr-text-dim); margin-top: 4px; letter-spacing: 0.5px; }

/* Hero side panel (subpages) */
.hero__panel {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--clr-accent);
    border-radius: var(--radius-md);
    padding: 0;
    min-width: 280px;
    flex-shrink: 0;
}
.hero__panel-item {
    padding: 20px 24px;
    display: flex; align-items: flex-start; gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero__panel-item:last-child { border-bottom: none; }
.hero__panel-icon { color: var(--clr-accent); font-size: 18px; margin-top: 2px; }
.hero__panel-title { font-weight: 700; font-size: 13px; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.hero__panel-sub { font-size: 12px; color: var(--clr-text-dim); margin-top: 2px; }

/* Hero urgency badge (fesztival) */
.hero__urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,61,61,0.1);
    border: 1px solid rgba(255,61,61,0.3);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
}
.hero__urgency .dot-pulse {
    width: 8px; height: 8px;
    background: var(--clr-danger);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* Hero — referenciak simple */
.hero--refs { padding: 160px 0 80px; text-align: center; min-height: auto; border-bottom: 1px solid #1A1A1A; }
.hero--refs .label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-accent); margin-bottom: 16px; }
.hero--refs h1 { font-size: 56px; margin-bottom: 16px; }
.hero--refs p { font-size: 17px; color: var(--clr-text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ==========================================================
   8. SERVICE CARDS (index.html)
   ========================================================== */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.service-card { border-radius: var(--radius-lg); padding: 40px; border: 1px solid #222; transition: all 0.3s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card--light { background: #1A2A1A; border-color: #2A3C2A; }
.service-card--dark { background: #0F1A0F; border-color: #1E2E1E; }
.service-card h3 { font-size: 24px; margin-bottom: 16px; }
.service-card p { font-size: 15px; line-height: 1.7; color: #B0B0B0; margin-bottom: 24px; }
.service-card .feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex-grow: 1; }
.service-card .feature-list li { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; color: #C0C0C0; }
.service-card .feature-list li i { color: var(--clr-accent); font-size: 12px; }

/* ==========================================================
   9. TRUST BAR
   ========================================================== */
.trust-bar {
    background: #050505;
    padding: 36px 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}
.trust-bar__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-bar__text { font-size: 11px; color: #555; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.logo-placeholder {
    height: 28px; width: 100px;
    border: 1px solid #1A1A1A;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: #333; letter-spacing: 1px;
}
.trust-pill {
    display: inline-block;
    background: var(--clr-badge-bg);
    border: 1px solid var(--clr-badge-border);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: all 0.3s;
}
.trust-pill:hover { border-color: var(--clr-accent); color: var(--clr-accent); }

/* ==========================================================
   10. TECH SECTION & DRONE DIAGRAM
   ========================================================== */
.tech-section { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; align-items: center; }
.tech-badges { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.tech-badge {
    background: var(--clr-badge-bg);
    border: 1px solid var(--clr-badge-border);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-text);
}
.tech-image { border-radius: var(--radius-lg); overflow: hidden; }
.tech-image img { width: 100%; height: 100%; object-fit: cover; }
.tech-image-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0A0A0A, #151515);
    color: #333; font-size: 13px; text-align: center; padding: 24px; min-height: 320px;
}

/* Tech usecases — index */
.tech-usecases { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.tech-usecase { display: flex; gap: 14px; align-items: flex-start; background: var(--clr-surface); border: 1px solid #222; border-radius: var(--radius-md); padding: 24px; }
.tech-usecase__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(0,200,83,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tech-usecase__icon i { color: var(--clr-accent); font-size: 18px; }
.tech-usecase h4 { font-size: 15px; margin-bottom: 6px; }
.tech-usecase p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.5; }

/* Tech usecases — ipari (3-column variant) */
.tech-usecases--3col { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.tech-usecases--3col .tech-usecase { flex-direction: column; }
.tech-usecases--3col .tech-usecase i { color: var(--clr-accent); font-size: 24px; margin-bottom: 16px; }
.tech-usecases--3col .tech-usecase h4 { font-size: 14px; margin-bottom: 8px; letter-spacing: 0.04em; }

/* Usecase cards — fesztival */
.usecase-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 36px; }
.usecase-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--clr-surface);
    border: 1px solid #222;
    border-radius: var(--radius-md);
    padding: 24px;
}
.usecase-card__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0,200,83,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.usecase-card__icon i { color: var(--clr-accent); font-size: 18px; }
.usecase-card h4 { font-size: 15px; margin-bottom: 6px; }
.usecase-card p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.5; }

/* Animated drone diagram */
.drone-diagram { position: relative; width: 100%; aspect-ratio: 1; max-width: 560px; margin: 0 auto; }
.drone-diagram__center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 160px; height: 160px; border-radius: 50%; overflow: hidden; z-index: 3; border: 3px solid var(--clr-accent); box-shadow: 0 0 40px rgba(0,200,83,0.2); }
.drone-diagram__center img { width: 100%; height: 100%; object-fit: cover; }
.drone-diagram__propeller { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; border-radius: 50%; border: 2px dashed var(--clr-accent); animation: propellerSpin 4s linear infinite; z-index: 2; }
.drone-diagram__propeller::before,
.drone-diagram__propeller::after { content: ''; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--clr-accent); }
.drone-diagram__propeller::before { top: -5px; left: 50%; transform: translateX(-50%); }
.drone-diagram__propeller::after { bottom: -5px; left: 50%; transform: translateX(-50%); }
@keyframes propellerSpin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }

/* Outer pulse ring */
.drone-diagram__pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 240px; height: 240px; border-radius: 50%; border: 1px solid rgba(0,200,83,0.15); animation: dronePulse 3s ease-out infinite; z-index: 1; }
.drone-diagram__pulse--2 { animation-delay: 1s; }
.drone-diagram__pulse--3 { animation-delay: 2s; }
@keyframes dronePulse { 0% { width: 200px; height: 200px; opacity: 0.6; } 100% { width: 400px; height: 400px; opacity: 0; } }

/* Signal wave lines */
.drone-diagram__signal { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%); z-index: 1; }
.drone-diagram__signal line { stroke: rgba(0,200,83,0.15); stroke-width: 1; stroke-dasharray: 6 4; }

/* Capability nodes */
.drone-node { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; background: var(--clr-surface); border: 1px solid #2A3C2A; border-radius: 12px; padding: 10px 16px; white-space: nowrap; transition: all 0.3s; }
.drone-node:hover { border-color: var(--clr-accent); transform: scale(1.05); box-shadow: 0 0 20px rgba(0,200,83,0.15); }
.drone-node__icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,200,83,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.drone-node__icon i { color: var(--clr-accent); font-size: 14px; }
.drone-node__text { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: #fff; }
.drone-node__sub { font-size: 11px; font-weight: 400; color: var(--clr-text-muted); margin-top: 2px; }

/* Node positions — index */
.drone-node--thermal { top: 0; right: 0; }
.drone-node--perimeter { bottom: 0; right: 0; }
.drone-node--solar { bottom: 0; left: 0; }
.drone-node--mapping { top: 0; left: 0; }

/* Node positions — subpages */
.drone-node--top-left { top: 0; left: 0; }
.drone-node--top-right { top: 0; right: 0; }
.drone-node--bottom-left { bottom: 0; left: 0; }
.drone-node--bottom-right { bottom: 0; right: 0; }

/* Animated connection dots */
.drone-line { position: absolute; z-index: 2; }
.drone-line__dot { fill: var(--clr-accent); }
.drone-line__dot--move-down { animation: dotMoveDown 3s ease-in-out infinite; }
.drone-line__dot--move-up { animation: dotMoveUp 3s ease-in-out infinite; }
.drone-line__dot--move-right { animation: dotMoveRight 3s ease-in-out infinite; }
.drone-line__dot--move-left { animation: dotMoveLeft 3s ease-in-out infinite; }
@keyframes dotMoveDown { 0%,100% { opacity: 0; cy: 0; } 10% { opacity: 1; } 50% { opacity: 1; } 60% { opacity: 0; cy: 80; } }
@keyframes dotMoveUp { 0%,100% { opacity: 0; cy: 80; } 10% { opacity: 1; } 50% { opacity: 1; } 60% { opacity: 0; cy: 0; } }
@keyframes dotMoveRight { 0%,100% { opacity: 0; cx: 0; } 10% { opacity: 1; } 50% { opacity: 1; } 60% { opacity: 0; cx: 80; } }
@keyframes dotMoveLeft { 0%,100% { opacity: 0; cx: 80; } 10% { opacity: 1; } 50% { opacity: 1; } 60% { opacity: 0; cx: 0; } }

/* ==========================================================
   11. DIFFERENTIATOR CARDS (ipari-takaritas)
   ========================================================== */
.diff-card { position: relative; overflow: hidden; }
.diff-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--card-mouse-x, -999px) var(--card-mouse-y, -999px),
        rgba(0,200,83,0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.diff-card:hover::before { opacity: 1; }
.diff-card > * { position: relative; z-index: 1; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.diff-card { border-radius: var(--radius-lg); padding: 36px; border: 1px solid #222; transition: all 0.3s; }
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.diff-card--light { background: #1A2A1A; color: #E0E0E0; border-color: #2A3C2A; }
.diff-card--light h3 { color: #fff; }
.diff-card--light p { color: #B0B0B0; }
.diff-card--light .feature-list li { color: #C0C0C0; }
.diff-card--dark { background: #0F1A0F; border-color: #1E2E1E; }
.diff-card--dark p { color: var(--clr-text-muted); }
.diff-card__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(0,200,83,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.diff-card__icon i { color: var(--clr-accent); font-size: 20px; }
.diff-card h3 { font-size: 18px; margin-bottom: 12px; }
.diff-card p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

/* Feature list (shared) */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    color: var(--clr-text-muted);
}
.feature-list li i { color: var(--clr-accent); font-size: 12px; }

/* ==========================================================
   12. PACKAGE CARDS (fesztival)
   ========================================================== */
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.pkg-card { border-radius: var(--radius-lg); padding: 36px; border: 1px solid #222; transition: all 0.3s; }
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pkg-card--light { background: #1A2A1A; color: #E0E0E0; border-color: #2A3C2A; }
.pkg-card--light h3 { color: #fff; }
.pkg-card--light p { color: #B0B0B0; }
.pkg-card--light .feature-list li { color: #C0C0C0; }
.pkg-card--dark { background: #0F1A0F; border-color: #1E2E1E; }
.pkg-card--dark p { color: var(--clr-text-muted); }
.pkg-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0,200,83,0.12);
    color: var(--clr-accent);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 16px;
}
.pkg-card h3 { font-size: 18px; margin-bottom: 12px; }
.pkg-card p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

/* ==========================================================
   13. PAIN POINTS
   ========================================================== */
.pain-section { text-align: center; }
.pain-cards { display: flex; flex-direction: column; gap: 12px; margin: 40px auto; max-width: 620px; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 900px; margin: 32px auto; }
.pain-card {
    background: var(--clr-surface);
    border: 1px solid #222;
    border-radius: 50px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--clr-text);
    transition: all 0.3s;
}
.pain-card:hover { border-color: var(--clr-danger); transform: translateX(4px); }
.pain-card i { color: var(--clr-danger); font-size: 18px; flex-shrink: 0; width: 24px; text-align: center; }
.pain-closer { font-size: 16px; color: var(--clr-text-muted); margin-top: 32px; }

/* ==========================================================
   14. LAW SECTION (fesztival)
   ========================================================== */
.law-section { text-align: center; max-width: 760px; margin: 0 auto; }
.law-section .badge-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 28px 0; }
.law-section .law-closer { font-weight: 700; color: #fff; font-size: 16px; margin-top: 24px; }

/* ==========================================================
   15. PROCESS STEPS
   ========================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}
/* Connecting line behind circles */
.process-grid::before {
    content: '';
    position: absolute;
    top: 23px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 2px;
    background: #222;
    z-index: 0;
}
/* Animated green pulse line */
.process-grid::after {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--clr-accent) 15%, var(--clr-accent) 25%, transparent 40%);
    background-size: 300% 100%;
    z-index: 0;
    animation: processFlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(0,200,83,0.5));
}
@keyframes processFlow {
    0% { background-position: 150% 0; }
    100% { background-position: -50% 0; }
}
/* 5-column variant (fesztival) */
.process-grid--5col { grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 36px; }
.process-grid--5col::before { top: 24px; left: calc(10% + 24px); right: calc(10% + 24px); }
.process-grid--5col::after { top: 23px; left: calc(10% + 24px); right: calc(10% + 24px); }

.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 16px;
    background: var(--clr-bg);
}
.process-step h4 { font-size: 14px; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.5; }

/* ==========================================================
   16. EXPERT QUOTE
   ========================================================== */
/* Centered style (ipari) */
.quote-section { text-align: center; max-width: 780px; margin: 0 auto; }
.quote-icon { color: var(--clr-accent); font-size: 48px; margin-bottom: 24px; }
.quote-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--clr-text);
    margin-bottom: 32px;
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.quote-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: #1A1A1A; border: 2px solid #2A2A2A;
}
.quote-name { font-weight: 700; font-size: 15px; color: var(--clr-text); }
.quote-role { font-size: 13px; color: var(--clr-text-muted); }
.quote-divider { width: 60px; height: 2px; background: var(--clr-accent); margin: 20px auto 0; }

/* Grid style (fesztival) */
.quote-section--grid { padding: 80px 0; text-align: left; max-width: none; }
.quote-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.quote-section__image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.quote-section__image img { width: 100%; height: 100%; object-fit: cover; }
.quote-section__mark { color: var(--clr-accent); font-size: 80px; line-height: 1; margin-bottom: 24px; font-family: Georgia, serif; }
.quote-section__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    max-width: 720px;
    line-height: 1.1;
    margin-bottom: 32px;
}
.quote-section__author { display: flex; align-items: center; gap: 16px; }
.quote-section__avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--clr-surface-2);
    border: 2px solid var(--clr-accent);
    display: flex; align-items: center; justify-content: center;
    color: var(--clr-accent); font-size: 24px;
}
.quote-section__name { font-weight: 700; color: #fff; font-size: 15px; }
.quote-section__role { font-size: 13px; color: var(--clr-text-muted); }
.quote-section__line { width: 60px; height: 2px; background: var(--clr-accent); margin: 24px 0 0; }

/* ==========================================================
   17. VS TABLE
   ========================================================== */
.vs-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.vs-table th, .vs-table td { padding: 16px 20px; text-align: left; font-size: 14px; }
.vs-table thead th {
    background: var(--clr-surface);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-text-muted);
    border-bottom: 1px solid #2A2A2A;
}
.vs-table thead th:last-child { color: var(--clr-accent); }
.vs-table tbody tr { border-bottom: 1px solid #1A1A1A; }
.vs-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.vs-table td:first-child { color: var(--clr-text); font-weight: 600; }
.vs-table .col-unita { border-left: 3px solid var(--clr-accent); }
.vs-check { color: var(--clr-accent); }
.vs-cross { color: var(--clr-danger); }
.vs-partial { color: #888; font-size: 12px; }
.vs-table .yes { color: var(--clr-accent); font-weight: 700; }
.vs-table .no { color: var(--clr-danger); }

/* ==========================================================
   18. STATS COUNTERS
   ========================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    border: 1px solid #1A1A1A;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--clr-accent);
    line-height: 1;
}
.stat-label { font-size: 12px; font-weight: 700; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
.stat-sub { font-size: 11px; color: var(--clr-text-dim); margin-top: 4px; }

/* ==========================================================
   19. CROSS-SELL
   ========================================================== */
.crosssell {
    padding: 40px 0;
    border-top: 1px solid var(--clr-accent);
    border-bottom: 1px solid var(--clr-accent);
    text-align: center;
}
.crosssell .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.crosssell p { font-size: 16px; color: var(--clr-text-muted); margin-bottom: 20px; }
.crosssell .btn { margin: 0 8px; }
.crosssell .btn--outline { padding: 10px 20px; font-size: 12px; }

/* ==========================================================
   20. GUARANTEE
   ========================================================== */
.guarantee__box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    border-radius: var(--radius-lg);
    background: rgba(0,200,83,0.04);
    border: 1px solid rgba(0,200,83,0.15);
    box-shadow: var(--shadow-green);
}
.guarantee__box i { font-size: 40px; color: var(--clr-accent); margin-bottom: 20px; }
.guarantee__box p { font-size: 16px; color: var(--clr-text-muted); margin-top: 16px; line-height: 1.7; max-width: 640px; margin-left: auto; margin-right: auto; }
.guarantee__box strong { color: var(--clr-text); }

/* ==========================================================
   21. ABOUT SECTION (index)
   ========================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 32px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-pill { display: inline-block; background: var(--clr-badge-bg); border: 1px solid var(--clr-badge-border); border-radius: 50px; padding: 8px 18px; font-size: 12px; font-weight: 600; color: var(--clr-text-muted); }
.about-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--clr-surface); border: 1px dashed #333; display: flex; align-items: center; justify-content: center; color: var(--clr-text-dim); font-size: 14px; }

/* ==========================================================
   22. EXTRA SERVICES (index)
   ========================================================== */
.extra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.extra-card { background: var(--clr-surface); border-radius: var(--radius-md); padding: 28px; transition: all 0.3s; position: relative; overflow: hidden; border: 1px solid #1E1E1E; }
.extra-card:hover { transform: translateY(-2px); border-color: rgba(0,200,83,0.3); }
.extra-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-md); padding: 1px; background: conic-gradient(from var(--card-angle, 0deg), transparent 0%, transparent 70%, #00C853 78%, transparent 86%, transparent 100%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.extra-card:hover::before { opacity: 1; animation: cardBorderSpin 3s linear infinite; }
@keyframes cardBorderSpin { 0% { --card-angle: 0deg; } 100% { --card-angle: 360deg; } }
@property --card-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.extra-card__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(0,200,83,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.extra-card__icon i { color: var(--clr-accent); font-size: 20px; }
.extra-card h4 { font-size: 15px; margin-bottom: 8px; }
.extra-card p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.5; margin-bottom: 16px; }
.extra-card a { font-size: 12px; font-weight: 700; color: var(--clr-accent); letter-spacing: 0.04em; text-transform: uppercase; }

/* ==========================================================
   23. LOCAL SEO (index)
   ========================================================== */
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.local-card { background: var(--clr-surface); border: 1px solid #1E1E1E; border-radius: var(--radius-md); padding: 28px; }
.local-card h3 { font-size: 18px; margin-bottom: 10px; }
.local-card p { font-size: 14px; line-height: 1.7; color: var(--clr-text-muted); margin-bottom: 14px; }
.local-card .about-pills { margin-top: 0; }

/* ==========================================================
   24. DEFINITIONS / INDUSTRIAL SVG (index)
   ========================================================== */
.definitions-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 40px; }
.definitions { max-width: none; }
.definition-block { padding: 24px 0; border-bottom: 1px solid #1A1A1A; }
.definition-block:last-child { border-bottom: none; }
.definition-block h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--clr-text); margin-bottom: 12px; text-transform: none; }
.definition-block p { font-size: 15px; line-height: 1.8; color: var(--clr-text-muted); }

/* Industrial SVG illustration */
.industrial-illustration { position: relative; display: flex; align-items: center; justify-content: center; }
.industrial-illustration svg { width: 100%; height: auto; max-height: 500px; }
.industrial-illustration .pipe-line { fill: none; stroke: #333; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.industrial-illustration .pipe-thin { fill: none; stroke: #2A2A2A; stroke-width: 1.5; stroke-linecap: round; }
.industrial-illustration .vessel-fill { fill: #111; stroke: #333; stroke-width: 2; }
.industrial-illustration .vessel-detail { fill: none; stroke: #2A2A2A; stroke-width: 1; }
.industrial-illustration .bolt { fill: #333; }
.industrial-illustration .glow-dot {
    r: 4; fill: var(--clr-accent);
    filter: drop-shadow(0 0 6px rgba(0,200,83,0.7));
    offset-distance: 0%;
    animation: runPipe 8s linear infinite;
}
.industrial-illustration .glow-dot2 { animation-delay: -4s; }
.industrial-illustration .glow-dot3 { animation-delay: -2s; animation-duration: 6s; }
@keyframes runPipe { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; } }

/* ==========================================================
   25. SCARCITY TAG (fesztival)
   ========================================================== */
.scarcity-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,61,61,0.1);
    border: 1px solid rgba(255,61,61,0.3);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0;
}
.scarcity-tag i { color: var(--clr-danger); }

/* ==========================================================
   26. FAQ
   ========================================================== */
.faq-list { max-width: 800px; margin: 32px auto 0; }
.faq-item { border-bottom: 1px solid #1A1A1A; }
.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--clr-accent); }
.faq-toggle { color: var(--clr-accent); transition: transform 0.3s; font-size: 14px; flex-shrink: 0; margin-left: 16px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 15px; line-height: 1.8; color: var(--clr-text-muted); }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }

/* ==========================================================
   27. CONTACT / CTA FORM
   ========================================================== */
.contact-box { background: var(--clr-surface); border: 1px solid #222; border-top: 3px solid var(--clr-accent); border-radius: var(--radius-lg); padding: 48px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info__email { font-size: 15px; color: var(--clr-accent); font-weight: 600; margin: 12px 0; }
.contact-info__hours { font-size: 13px; color: var(--clr-text-dim); margin-bottom: 16px; }
.contact-link { display: flex; align-items: flex-start; gap: 16px; background: var(--clr-bg); border: 1px solid #222; border-radius: var(--radius-md); padding: 20px; margin-bottom: 12px; transition: all 0.2s; }
.contact-link:hover { border-color: var(--clr-accent); }
.contact-link__icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,200,83,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-link__icon i { color: var(--clr-accent); font-size: 16px; }
.contact-link h4 { font-size: 14px; margin-bottom: 4px; }
.contact-link p { font-size: 12px; color: var(--clr-text-dim); }

/* CTA form grid */
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cta-form__benefits { list-style: none; margin-top: 28px; }
.cta-form__benefits li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--clr-text-muted);
    font-size: 14px;
}
.cta-form__benefits li i {
    position: absolute; left: 0; top: 10px;
    color: var(--clr-accent); font-size: 14px;
}
.cta-trust { margin-top: 28px; }
.cta-trust p { font-size: 13px; color: var(--clr-text-dim); display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.cta-trust i { color: var(--clr-accent); font-size: 8px; }

/* Form card */
.form-card {
    background: var(--clr-surface);
    border: 1px solid #222;
    border-top: 3px solid var(--clr-accent);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-card h3 { font-size: 22px; margin-bottom: 8px; }
.form-card > p { color: var(--clr-text-dim); font-size: 13px; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 11px; font-weight: 700;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group label span { color: var(--clr-text-dim); text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--clr-surface-2);
    color: var(--clr-text);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--clr-surface-2); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Radio pill groups */
.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-option, .checkbox-option {
    background: var(--clr-surface-2);
    border: 1px solid #333;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    cursor: pointer;
    font-size: 13px;
    color: var(--clr-text-muted);
    transition: all 0.2s;
    user-select: none;
}
.radio-option:hover, .checkbox-option:hover { border-color: #555; }
.radio-option.selected, .checkbox-option.checked {
    border-color: var(--clr-accent);
    background: rgba(0,200,83,0.08);
    color: var(--clr-text);
}
.radio-option input, .checkbox-option input { display: none; }
.radio-option .popular-badge {
    background: var(--clr-accent);
    color: #FFFFFF !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 2px 8px;
    margin-left: 4px;
}

/* GDPR checkbox */
.gdpr-checkbox, .gdpr-row {
    display: flex; align-items: flex-start; gap: 10px;
    margin: 20px 0 4px;
    font-size: 13px; color: var(--clr-text-muted);
}
.gdpr-checkbox input, .gdpr-row input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--clr-accent); }
.gdpr-checkbox a, .gdpr-row a { color: var(--clr-accent); text-decoration: underline; }

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--clr-accent);
    color: #000;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}
.form-submit:hover { background: var(--clr-accent-dim); }
.form-note { text-align: center; font-size: 11px; color: var(--clr-text-dim); margin-top: 12px; }

/* Form success state */
.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success i { color: var(--clr-accent); font-size: 48px; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--clr-text-muted); }

/* Final CTA */
.final-cta { text-align: center; position: relative; z-index: 1; }
.final-cta p { color: var(--clr-text-muted); font-size: 17px; margin-bottom: 36px; }

/* ==========================================================
   28. FOOTER (full — main pages)
   ========================================================== */
.footer { background: var(--clr-surface); padding: 60px 0 24px; border-top: 1px solid #1A1A1A; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__logo { margin-bottom: 12px; }
.footer__logo img { height: 32px; }
.footer__desc { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #333; display: none; align-items: center; justify-content: center; color: var(--clr-text-muted); transition: all 0.2s; font-size: 14px; }
.footer__social a.visible { display: flex; }
.footer__social a:hover { color: var(--clr-accent); border-color: var(--clr-accent); }
.footer h4 { font-size: 13px; letter-spacing: 0.08em; margin-bottom: 16px; color: #fff; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 13px; color: var(--clr-text-muted); transition: color 0.2s; }
.footer ul a:hover { color: var(--clr-accent); }
.footer__contact li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-muted); }
.footer__contact li i { color: var(--clr-accent); font-size: 13px; width: 16px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid #1A1A1A; font-size: 13px; color: var(--clr-text-muted); }
.footer__bottom a { color: var(--clr-text-muted); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--clr-accent); }

/* Footer — legal pages (simple) */
.footer--legal { padding: 32px 0; }
.footer--legal .container { display: flex; justify-content: space-between; align-items: center; }
.footer--legal span { font-size: 13px; color: var(--clr-text-dim); }
.footer--legal a { font-size: 13px; color: var(--clr-text-muted); transition: color 0.2s; }
.footer--legal a:hover { color: var(--clr-accent); }
.footer__links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================
   29. MOBILE CTA
   ========================================================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--clr-accent);
    color: #000;
    text-align: center;
    padding: 16px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.3s;
}
.mobile-cta.hidden { transform: translateY(100%); }

/* ==========================================================
   30. LEGAL PAGES
   ========================================================== */
.legal-page { max-width: 800px; margin: 0 auto; padding: 120px 24px 80px; }
.legal-page .back-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--clr-accent); margin-bottom: 32px;
    transition: opacity 0.2s;
}
.legal-page .back-link:hover { opacity: 0.7; }

#legal-content { color: var(--clr-text-muted); }
#legal-content h1 {
    font-family: var(--font-display); font-size: 36px; font-weight: 800;
    color: var(--clr-text); margin-bottom: 24px; line-height: 1.2;
}
#legal-content h2 {
    font-family: var(--font-display); font-size: 24px; font-weight: 700;
    color: var(--clr-text); margin-top: 40px; margin-bottom: 16px;
}
#legal-content h3 {
    font-size: 18px; font-weight: 600;
    color: var(--clr-text); margin-top: 28px; margin-bottom: 12px;
}
#legal-content p { margin-bottom: 16px; line-height: 1.7; color: var(--clr-text-muted); }
#legal-content ul, #legal-content ol { margin-bottom: 16px; padding-left: 24px; }
#legal-content li { margin-bottom: 8px; line-height: 1.6; color: var(--clr-text-muted); }
#legal-content strong { color: var(--clr-text); }
#legal-content a { color: var(--clr-accent); text-decoration: underline; }
#legal-content a:hover { color: var(--clr-accent-dim); }
#legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
#legal-content th, #legal-content td { padding: 10px 14px; text-align: left; border: 1px solid #222; font-size: 14px; }
#legal-content th { background: var(--clr-surface); color: var(--clr-text); }
#legal-content td { color: var(--clr-text-muted); }

.placeholder-text { text-align: center; padding: 60px 0; color: var(--clr-text-dim); font-size: 15px; }
.placeholder-text i { display: block; font-size: 32px; margin-bottom: 16px; color: #333; }

/* ==========================================================
   31. GALLERY / REFERENCIAK
   ========================================================== */
.gallery-section { padding: 80px 0; }
.gallery-grid { columns: 3; column-gap: 20px; }
.gallery-item { break-inside: avoid; margin-bottom: 20px; position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--clr-surface); border: 1px solid #1A1A1A; cursor: pointer; transition: border-color 0.3s, transform 0.3s; }
.gallery-item:hover { border-color: var(--clr-accent); transform: translateY(-2px); }
.gallery-item img { width: 100%; height: auto; display: block; }
.gallery-item__info { padding: 14px 16px; }
.gallery-item__title { font-size: 14px; font-weight: 600; color: var(--clr-text); margin-bottom: 4px; }
.gallery-item__desc { font-size: 13px; color: var(--clr-text-dim); line-height: 1.5; }
.gallery-empty { text-align: center; padding: 80px 20px; color: var(--clr-text-dim); }
.gallery-empty i { font-size: 48px; color: #222; display: block; margin-bottom: 20px; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.92); backdrop-filter: blur(8px); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox__close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; z-index: 10; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.lightbox__close:hover { background: rgba(255,255,255,0.1); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.2s; }
.lightbox__nav:hover { background: rgba(255,255,255,0.15); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox__content img { max-width: 100%; max-height: 78vh; border-radius: 8px; object-fit: contain; }
.lightbox__caption { margin-top: 16px; font-size: 15px; color: #fff; font-weight: 600; }
.lightbox__caption-desc { font-size: 13px; color: var(--clr-text-muted); margin-top: 4px; }

/* Social CTA (referenciak) */
.social-cta { padding: 60px 0; border-top: 1px solid #1A1A1A; }
.social-cta__icons { display: flex; gap: 14px; justify-content: center; }
.social-cta__icons a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid #333; display: none; align-items: center; justify-content: center; color: var(--clr-text-muted); transition: all 0.2s; font-size: 17px; }
.social-cta__icons a.visible { display: flex; }
.social-cta__icons a:hover { color: var(--clr-accent); border-color: var(--clr-accent); background: rgba(0,200,83,0.06); }

/* ==========================================================
   32. REVEAL ANIMATIONS
   ========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ==========================================================
   33. RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 56px; }
    .hero__inner { flex-direction: column; }
    .hero__panel { width: 100%; }
    .tech-section, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .extra-grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .pkg-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid--5col { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 44px; }
    h2 { font-size: 36px; }
    .section { padding: 60px 0; }

    /* Hero */
    .hero__stats { flex-direction: column; gap: 16px; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { text-align: center; }
    .hero--refs h1 { font-size: 40px; }

    /* Grids */
    .service-cards { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .pkg-grid { grid-template-columns: 1fr; }
    .local-grid { grid-template-columns: 1fr; }
    .tech-usecases { grid-template-columns: 1fr; }
    .tech-usecases--3col { grid-template-columns: 1fr; }
    .usecase-grid { grid-template-columns: 1fr; }
    .extra-grid { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-grid::before, .process-grid::after { display: none; }
    .process-grid--5col { grid-template-columns: 1fr 1fr; }
    .process-grid--5col::before, .process-grid--5col::after { display: none; }
    .cta-form { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .definitions-layout { grid-template-columns: 1fr; gap: 32px; }

    /* Drone diagram */
    .drone-diagram { max-width: 360px; }
    .drone-node { padding: 8px 12px; }
    .drone-node__icon { width: 28px; height: 28px; }
    .drone-node__icon i { font-size: 11px; }
    .drone-node__text { font-size: 11px; }
    .drone-node__sub { font-size: 10px; }
    .drone-diagram__center { width: 120px; height: 120px; }
    .drone-diagram__propeller { width: 156px; height: 156px; }

    /* Header mobile */
    .header__nav { display: none; position: fixed; top: 56px; left: 0; right: 0; background: rgba(10,10,10,0.98); flex-direction: column; padding: 24px; gap: 16px; }
    .header__nav.active { display: flex; }
    .header__phone { display: none; }
    .hamburger { display: flex; }
    .mobile-cta { display: block; }

    /* Footer */
    .footer__bottom { flex-direction: column; gap: 8px; }

    /* Misc */
    .industrial-illustration { max-width: 320px; margin: 0 auto; }
    .vs-table { font-size: 13px; }
    .vs-table th, .vs-table td { padding: 12px 10px; }
    .quote-text { font-size: 24px; }
    .quote-section__grid { grid-template-columns: 1fr; }
    .quote-section__image { max-height: 400px; }
    .quote-section__text { font-size: 24px; }

    /* Gallery */
    .gallery-grid { columns: 2; column-gap: 12px; }
    .gallery-item { margin-bottom: 12px; }
    .lightbox__nav { display: none; }

    /* Legal footer */
    .footer--legal .container { flex-direction: column; gap: 12px; text-align: center; }
    .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    .container { padding: 0 16px; }
    .hero__panel { display: none; }
    .hero--refs h1 { font-size: 32px; }
    .hero--refs { padding: 130px 0 60px; }
    .stats-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid--5col { grid-template-columns: 1fr; }
    .radio-group, .checkbox-group { flex-direction: column; }
    .gallery-grid { columns: 1; }
}
