/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    font-family: Inter, Arial, sans-serif;
    background: radial-gradient(circle at top, #0f1b33, #05080f 75%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== NOISE / GRAIN BACKGROUND ===== */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ================= HEADER ================= */
/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
    overflow-x: hidden;
}

.header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* ================= LOGO ================= */

.logo {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #e3e7ef, #2f7be5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* ================= NAV ================= */

.nav {
    display: flex;
    align-items: center;
}

.nav a {
    margin-left: 28px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.nav a:hover {
    opacity: 1;
}

.nav-btn {
    padding: 10px 18px;
    background: #4aa3ff;
    border-radius: 8px;
    color: #ffffff !important;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #2f7be5;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .header-inner {
        height: 70px;
        padding: 0 16px;
    }

    .nav {
        display: none;
    }
}

/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #4aa3ff;
    text-shadow: 0 0 35px rgba(74,163,255,0.35);
}

.hero p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 42px;
}

/* ================= BUTTONS ================= */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: #4aa3ff;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: #2f7be5;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: border 0.3s, color 0.3s;
}

.btn-secondary:hover {
    border-color: #4aa3ff;
    color: #4aa3ff;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .header-inner {
        height: 70px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* ===== HERO ANIMATIONS ===== */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}
.animate {
    opacity: 1 !important;
    transform: none !important;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.15;
}

.hero-title span {
    display: block;
}

.title-white {
    color: #ffffff;
}

.title-blue {
    color: #4da3ff;
}

.hero-title .title-white {
    color: #ffffff !important;
    background: none !important;
}

.hero-title .title-blue {
    color: #4da3ff !important;
}

.animate {
    opacity: 0;
    transform: translateY(16px);
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

/* ================= STATS / ČÍSLA ================= */
.stats {
    padding: 120px 0;
    position: relative;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #4da3ff;
    margin-bottom: 8px;
    text-shadow: 
        0 0 8px rgba(77, 163, 255, 0.35),
        0 0 16px rgba(77, 163, 255, 0.15);
}

.stat-text {
    font-size: 16px;
    opacity: 0.8;
}

/* MOBILE */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 40px;
    }
}

.stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
}

.stats {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.35)
    );
}

/* ================= ABOUT / O NÁS ================= */
.about {
    padding: 120px 0;
    background: rgba(0,0,0,0.15);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */
.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* RIGHT */
.about-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    opacity: 0.9;
}

/* CHECK ICON */
.check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(77,163,255,0.18);
    color: #4da3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* MOBILE */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about {
        padding: 80px 0;
    }

    .about-text,
    .about-text h2,
    .about-text p {
        text-align: center;
    }

    .about-item {
        justify-content: center;
    }
}

/* ================= NAŠE HODNOTY ================= */
.values {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.22);
}

.values-header {
    text-align: center;
    margin-bottom: 70px;
}

.values-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.values-line {
    display: block;
    width: 40px;
    height: 2px;
    background: #4da3ff;
    margin: 0 auto 14px;
}

.values-header p {
    font-size: 15px;
    opacity: 0.75;
}

/* GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

/* MOBILE */
@media (max-width: 900px) {
    .values {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 26px;
    }
}

/* HOVER EFEKT NA KARTY */
.value-card {
    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 163, 255, 0.4);
    box-shadow:
        0 0 25px rgba(77, 163, 255, 0.12),
        inset 0 0 0 1px rgba(77, 163, 255, 0.15);
}

/* ODDIELENIE SEKCIÍ */
.values {
    position: relative;
}

.values::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
}

.values-header h2 {
    text-shadow: 0 0 12px rgba(77, 163, 255, 0.15);
}

/* ===== NAŠE RIEŠENIE ===== */

.solution {
    padding: 120px 0;
    position: relative;
}

/* oddelenie od predošlej sekcie */
.solution::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
}

.solution-header {
    text-align: center;
    margin-bottom: 90px;
}

.solution-header h2 {
    font-size: clamp(2.3rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 16px rgba(77, 163, 255, 0.15);
}

.solution-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

/* STEPS */

.solution-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.solution-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 28px 32px;
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

/* hover jemný glow */
.solution-step:hover {
    background: rgba(77,163,255,0.05);
    border-color: rgba(77,163,255,0.25);
    box-shadow: 0 0 22px rgba(77,163,255,0.12);
}

.step-number {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(77,163,255,0.15);
    color: #4da3ff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.step-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* MOBIL */

@media (max-width: 768px) {
    .solution-step {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===== PROCESS (bez boxov) ===== */

.process {
    padding: 120px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 90px;
}

.process-header h2 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.process-header p {
    color: rgba(255,255,255,0.65);
}

/* LIST */

.process-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-item {
    display: flex;
    gap: 36px;
}

/* LEFT – CIRCLE + LINE */

.process-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.process-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(77,163,255,0.15);
    color: #4da3ff;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-line {
    position: absolute;
    top: 54px; /* presne pod kruhom (48px + 6px medzera) */
    bottom: -54px; /* presne po ďalší kruh */
    width: 1px;
    background: rgba(255,255,255,0.18);
}

/* CONTENT */

.process-content h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.process-content p {
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* HOVER EFEKT */

.process-item:hover .process-circle {
    background: rgba(77,163,255,0.3);
    box-shadow: 0 0 18px rgba(77,163,255,0.4);
    color: #ffffff;
}

/* posledný nemá čiaru */
.process-item.last .process-line {
    display: none;
}

/* MOBILE */

@media (max-width: 768px) {
    .process-item {
        gap: 20px;
    }
}

/* ===== PROCESS CIRCLES – UNIVERSAL ENHANCEMENT ===== */

/* kruh s číslom */
.process-left > div:first-child,
.process-circle,
.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #4da3ff, #1b3a5f);
    color: #ffffff;

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

    font-weight: 600;
    font-size: 0.9rem;

    box-shadow:
        0 0 14px rgba(77, 163, 255, 0.35),
        inset 0 0 8px rgba(255, 255, 255, 0.12);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover efekt */
.process-item:hover .process-left > div:first-child,
.process-item:hover .process-circle,
.process-item:hover .process-number {
    transform: scale(1.06);
    box-shadow:
        0 0 24px rgba(77, 163, 255, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.18);
}

/* ===== PROCESS HEADER UNDERLINE ===== */

.process-header h2,
h2:has(+ p) {
    position: relative;
    display: inline-block;
}

.process-header h2::after,
h2:has(+ p)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);

    width: 56px;
    height: 3px;
    border-radius: 2px;

    background: linear-gradient(to right, #4da3ff, #7bb7ff);
    box-shadow: 0 0 12px rgba(77, 163, 255, 0.6);
}
.process-item:hover h3 {
    color: #7bb7ff;
}

/* ===== PROCESS HEADER – CENTERED UNDERLINE ===== */

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    position: relative;
    display: inline-block;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
}

/* MODRÁ ČIARKA POD NADPISOM */
.process-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);

    width: 56px;
    height: 3px;
    border-radius: 2px;

    background: linear-gradient(to right, #4da3ff, #7bb7ff);
    box-shadow: 0 0 12px rgba(77, 163, 255, 0.6);
}

.process-header p {
    margin-top: 24px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
}

/* =========================
   NAŠE SLUŽBY – CELÁ SEKNCIA
   ========================= */

#sluzby {
    padding: 160px 20px 180px;
    background: radial-gradient(circle at top, #0f1a2d 0%, #070c17 70%);
}

/* HLAVIČKA */
#sluzby .section-header {
    text-align: center;
    margin-bottom: 80px;
}

#sluzby h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

#sluzby .section-line {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, #4da3ff, #7bb7ff);
    margin: 18px auto 22px;
    border-radius: 999px;
}

#sluzby .section-header p {
    color: #a8b2c8;
    font-size: 16px;
}

/* =========================
   AKČNÝ BOX
   ========================= */

.services-highlight {
    position: relative;
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 70px 60px;
    text-align: center;
    border-radius: 28px;

    background:
        radial-gradient(circle at top, rgba(77,163,255,0.15), transparent 60%),
        rgba(255,255,255,0.02);

    border: 1px solid rgba(77,163,255,0.45);
    box-shadow: 0 0 90px rgba(77,163,255,0.18);
}

/* BADGE AKCIA */
.action-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #4da3ff;
    color: #0b1220;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
}

/* IKONA */
.gift-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

/* NADPIS */
.services-highlight h3 {
    font-size: 28px;
    margin-bottom: 14px;
    color: #ffffff;
}

/* TEXT */
.services-highlight p {
    color: #c2cbe0;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CENA */
.price {
    margin: 32px 0 38px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 14px;
}

.free {
    color: #4da3ff;
    font-weight: 700;
    font-size: 18px;
}

/* TLAČIDLO */
.services-highlight .btn-primary {
    background: #4da3ff;
    color: #ffffff;
    padding: 14px 30px;   /* menšie tlačidlo */
    font-size: 15px;      /* jemne menší text */
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    margin-top: 18px;     /* POSUNUTIE NIŽŠIE */
}


/* =========================
   SLUŽBY – KARTY
   ========================= */

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

.service-card {
    padding: 36px;
    border-radius: 22px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77,163,255,0.6);
    box-shadow: 0 0 50px rgba(77,163,255,0.25);
}

/* BODKA */
.dot {
    width: 10px;
    height: 10px;
    background: #4da3ff;
    border-radius: 50%;
    display: block;
    margin-bottom: 14px;
}

.service-card h4 {
    margin-bottom: 10px;
}

.service-card p {
    color: #c0c9df;
}

.free-text {
    display: block;
    margin-top: 18px;
    color: #4da3ff;
    font-size: 14px;
}

/* =========================
   MOBIL
   ========================= */

@media (max-width: 768px) {

    #sluzby {
        padding: 120px 16px;
    }

    .services-highlight {
        padding: 50px 26px;
    }

    #sluzby h2 {
        font-size: 32px;
    }
}

.free {
    color: #4da3ff;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(77,163,255,0.45); /* jemné svietenie */
}

.services-highlight .btn-primary {
    background: linear-gradient(180deg, #4da3ff, #3b8fe6);
    color: #ffffff;
    padding: 14px 30px;
    font-size: 15px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    margin-top: 22px;
    box-shadow: 0 0 22px rgba(77,163,255,0.35);
    transition: all .25s ease;
}

.services-highlight .btn-primary:hover {
    box-shadow: 0 0 32px rgba(77,163,255,0.55);
    transform: translateY(-1px);
}

.services-highlight {
    position: relative;
}

.badge-akcia {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #4da3ff;
    color: #dee0e4;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: .5px;
    box-shadow: 0 0 18px rgba(77,163,255,0.45);
}

.price {
    margin: 22px 0 10px;
}

/* ===== KONTAKT ===== */

.contact-section {
    padding: 140px 20px;
    text-align: center;
}

.contact-header h2 {
    font-size: 38px;
    max-width: 900px;
    margin: 0 auto 16px;
}

.contact-header p {
    max-width: 720px;
    margin: 0 auto 32px;
    color: #bfc7d5;
}

.section-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #4da3ff;
    margin: 0 auto;
    border-radius: 3px;
}

.section-line.glow {
    box-shadow: 0 0 20px rgba(77,163,255,0.6);
}

.contact-info {
    margin: 80px 0;
}

.contact-info .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-info h3 {
    margin-bottom: 8px;
}

.contact-info p {
    color: #bfc7d5;
}

.contact-email {
    display: inline-block;
    margin-top: 12px;
    color: #4da3ff;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(77,163,255,0.5);
}

/* FORM */

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-form-wrapper h3 {
    margin-bottom: 32px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 15px;
}

#contactForm textarea {
    min-height: 140px;
    resize: none;
}

#contactForm button {
    width: 100%;
    padding: 16px;
    border-radius: 999px;
    background: #4da3ff;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(77,163,255,0.4);
    transition: all .3s ease;
}

#contactForm button:hover {
    box-shadow: 0 0 50px rgba(77,163,255,0.7);
}

/* MESSAGE */

.form-message {
    display: none;
    margin-top: 24px;
    color: #4da3ff;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(77,163,255,0.5);
}

/* MOBIL */

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 32px 20px;
    }
}

/* ZRUŠI ČIARKU POD HLAVNÝM NADPISOM V KONTAKTE */
.contact-section h2::after {
    display: none !important;
    content: none !important;
}

/* FOOTER */
.site-footer {
    padding: 80px 20px 50px;
    background: radial-gradient(circle at top, rgba(77,163,255,0.08), transparent 60%);
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #9fc5ff;
    margin-bottom: 20px;
    text-shadow: 0 0 18px rgba(77,163,255,0.45);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-socials a {
    color: #4da3ff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(77,163,255,0.35);
    transition: all .3s ease;
}

.footer-socials a:hover {
    background: rgba(77,163,255,0.12);
    box-shadow: 0 0 25px rgba(77,163,255,0.35);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 13px;
    color: #7f8fb3;
}

/* MOBIL */
@media (max-width: 600px) {
    .footer-socials {
        flex-direction: column;
        gap: 14px;
    }
}

/* 1. Globálna poistka pre celú stránku */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Toto zakáže horizontálny posun */
    position: relative;
    -webkit-overflow-scrolling: touch; /* Zabezpečí plynulý scroll na iOS */
}

/* 2. Oprava hlavičky (Header) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Uisti sa, že nie je viac ako 100% */
    right: 0;
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
    /* Odstráň overflow-x: hidden; odtiaľto, ak tam je */
}

/* 3. Oprava Noise/Grain pozadia */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

/* 4. Oprava Kontakt Formu (častý vinník na obr. 3329) */
#contactForm input, 
#contactForm textarea {
    -webkit-appearance: none; /* Odstráni defaultný tieň v iOS */
    font-size: 16px; /* Prevencia automatického zoomu v Safari */
    width: 100%;
    max-width: 100%; /* Zabezpečí, že nepretečie cez padding wrapperu */
    box-sizing: border-box;
}

/* Toto opraví biely pás hore a dole pri "pružení" (overscroll) */
html {
    background-color: #05080f !important; /* Farba tvojho spodného gradientu */
    height: 100%;
}

/* FIX PRE BIELY VRCH NA IPHONE */
.ios-top-fix {
    position: fixed;
    top: -100vh; /* Je schovaný nad obrazovkou */
    left: 0;
    width: 100%;
    height: 100vh; /* Má výšku celej obrazovky */
    background-color: #05080f; /* Tvoja hlavná tmavá farba */
    z-index: 9999; /* Musí byť nad všetkým */
    pointer-events: none;
}

/* Ešte raz poistíme HTML pozadie pre istotu */
html {
    background-color: #05080f !important;
}

