/* =============================================
   IIP – Internet i Programowanie | main.css
   ============================================= */

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

:root {
    /* Primary – stonowany, korporacyjny granat */
    --blue:        #1e3a8a;
    --blue-dark:   #172554;
    --blue-mid:    #1e40af;
    --blue-light:  #e0e7ff;
    /* Akcent – czerwień */
    --red:         #b91c1c;
    --red-mid:     #dc2626;
    --red-light:   #fef2f2;
    /* Tekst i tła – bardziej neutralna skala szarości */
    --text:        #0f172a;
    --text-2:      #475569;
    --text-3:      #94a3b8;
    --bg:          #fafafa;
    --bg-alt:      #f3f4f6;
    --white:       #ffffff;
    --border:      #e5e7eb;
    --radius:      10px;
    --radius-sm:   6px;
    --shadow:      0 2px 16px rgba(15,23,42,.06);
    --shadow-md:   0 4px 32px rgba(15,23,42,.08);
    --shadow-lg:   0 12px 48px rgba(15,23,42,.12);
    --t:           .2s ease;
    --font:        'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { border: 0; max-width: 100%; height: auto; display: block; }

a { color: var(--blue-mid); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-dark); }

ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
    width: min(1100px, 100% - 48px);
    margin-inline: auto;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all var(--t);
    border: 2px solid transparent;
    line-height: 1;
    text-decoration: none;
}
.btn-primary {
    background: var(--blue-mid);
    color: var(--white);
    border-color: var(--blue-mid);
}
.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,.35);
    text-decoration: none;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: white;
    color: var(--white);
    text-decoration: none;
}
.btn-outline-primary {
    background: transparent;
    color: var(--blue-mid);
    border-color: var(--blue-mid);
}
.btn-outline-primary:hover {
    background: var(--blue-mid);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ===================================================
   HEADER
   =================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(15,23,42,.97);
    box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.site-header.scrolled {
    background: rgba(15,23,42,.97);
    box-shadow: 0 2px 24px rgba(0,0,0,.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.header-inner {
    display: flex;
    align-items: center;
    height: 70px;
    gap: 32px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand:hover { text-decoration: none; }

.brand-logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(15,23,42,.35), 0 1px 3px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05);
    transition: box-shadow var(--t), transform var(--t);
}
.brand:hover .brand-logo {
    box-shadow: 0 6px 24px rgba(59,130,246,.4), 0 2px 6px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
    transform: translateY(-1px);
}
.brand-logo--sm {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    box-shadow: none;
    opacity: .9;
}

.brand-titles {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.brand-name {
    font-size: 15px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    line-height: 1.2;
    letter-spacing: -.1px;
}
.brand-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,.5);
    letter-spacing: .3px;
    white-space: nowrap;
}
.brand:hover .brand-name { color: white; }

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.main-nav a {
    color: rgba(255,255,255,.8);
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background var(--t), color var(--t);
    white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
    color: white;
    background: rgba(255,255,255,.12);
    text-decoration: none;
}
.main-nav .nav-cta {
    background: var(--blue-mid);
    color: white;
    margin-left: 8px;
    padding: 9px 18px;
    font-weight: 400;
}
.main-nav .nav-cta:hover {
    background: var(--blue-dark);
    color: white;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--t);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero {
    position: relative;
    height: 100svh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15,23,42,.75) 0%, rgba(15,23,42,.35) 60%, rgba(15,23,42,.15) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    padding-top: 70px;
}
.hero-eyebrow {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f87171;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-title span {
    background: linear-gradient(90deg, #fca5a5 0%, #f87171 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.3);
    color: white;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background var(--t);
    display: flex; align-items: center; justify-content: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,.25); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-dots {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 10;
}
.slider-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none; cursor: pointer; padding: 0;
    transition: background var(--t), transform var(--t);
}
.slider-dots .dot.active {
    background: white;
    transform: scale(1.35);
}
.slider-credit {
    position: absolute;
    bottom: 8px; right: 14px;
    font-size: .7rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
    z-index: 10;
    pointer-events: none;
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
    padding: 32px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stat {
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,.15);
}
.stat:last-child { border-right: none; }
.stat strong {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 4px;
}
.stat span {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ===================================================
   SECTIONS COMMON
   =================================================== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-slim { padding: 56px 0; }

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}
.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-desc {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.7;
}

/* ===================================================
   SERVICES CARDS
   =================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}
.card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--blue-mid);
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 17px; font-weight: 500; margin-bottom: 10px; color: var(--text); }
.card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* ===================================================
   FEATURE SECTION (e-zezwolenia)
   =================================================== */
.feature-section {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    padding: 88px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.feature-text .section-label { text-align: left; }
.feature-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -.5px;
    line-height: 1.2;
}
.feature-text p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 16px;
}
.feature-list {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
    font-weight: 400;
}
.feature-list li::before {
    content: '';
    width: 20px; height: 20px;
    flex-shrink: 0;
    background: var(--blue-mid);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 3.5 6 11l-3.5-3.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}
.feature-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* ===================================================
   TIMELINE
   =================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-mid), var(--blue-light));
    border-radius: 2px;
}
.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 5px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--blue-mid);
    border: 3px solid var(--bg-alt);
    box-shadow: 0 0 0 2px var(--blue-mid);
}
.timeline-year {
    font-size: 13px;
    font-weight: 500;
    color: var(--blue-mid);
    background: var(--blue-light);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
    height: fit-content;
    letter-spacing: .3px;
}
.timeline-content h3 { font-size: 17px; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.timeline-content p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ===================================================
   HOSTING / PRICING
   =================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    align-items: end;
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 4px rgba(37,99,235,.08);
    padding-top: 48px;
}
.pricing-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--blue-mid);
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
}
.pricing-name {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-2);
    margin-bottom: 12px;
}
.pricing-price {
    font-size: 52px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 24px;
}
.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-2);
    letter-spacing: 0;
}
.pricing-features {
    text-align: left;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-features li {
    font-size: 14px;
    color: var(--text-2);
    padding-left: 22px;
    position: relative;
}
.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-mid);
    font-weight: 500;
}

/* ===================================================
   CENNIK / RATES
   =================================================== */
.rate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.rate-group {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
}
.rate-group h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.rate-group ul { display: flex; flex-direction: column; gap: 12px; }
.rate-group li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
}
.rate-group li span { color: var(--text-2); flex: 1; }
.rate-group li strong { color: var(--blue-mid); white-space: nowrap; font-weight: 500; }

/* ===================================================
   KWALIFIKACJE
   =================================================== */
.quals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.qual-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.qual-year {
    font-size: 12px;
    font-weight: 500;
    color: var(--blue-mid);
    background: var(--blue-light);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: .3px;
    flex-shrink: 0;
}
.qual-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ===================================================
   O FIRMIE
   =================================================== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.about-text p {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-products h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.product-list { display: flex; flex-direction: column; gap: 14px; }
.product-list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    border-left: 3px solid var(--blue-mid);
    transition: box-shadow var(--t);
}
.product-list li:hover { box-shadow: var(--shadow); }
.product-list li strong { font-size: 14px; font-weight: 500; color: var(--text); }
.product-list li span { font-size: 13px; color: var(--text-2); }

/* ===================================================
   CONTACT
   =================================================== */
.contact-section { background: var(--white); }
.contact-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--bg-alt);
    border-radius: 10px;
    padding: 18px;
    border: 1px solid var(--border);
}
.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--blue-mid);
    background: var(--blue-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-card > div { display: flex; flex-direction: column; gap: 3px; }
.contact-card strong { font-size: 14px; font-weight: 500; color: var(--text); }
.contact-card span, .contact-card a { font-size: 15px; color: var(--text-2); }
.contact-card a { color: var(--blue-mid); }
.contact-card a:hover { color: var(--blue-dark); }
.rodo-note {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.6;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-alt);
}
.rodo-note a { color: var(--text-3); text-decoration: underline; }

/* Form */
.contact-form-wrap {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--t), box-shadow var(--t);
    -webkit-appearance: none;
    appearance: none;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
input.error, select.error, textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
input.valid, select.valid, textarea.valid {
    border-color: #22c55e;
}
textarea { resize: vertical; min-height: 120px; }
.form-msg {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    display: none;
}
.form-msg.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    display: block;
}
.form-msg.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    display: block;
}

/* ===================================================
   RODO SECTION
   =================================================== */
.rodo-wrap h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
}
.rodo-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.rodo-cols h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
}
.rodo-cols p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.75;
    margin-bottom: 12px;
}
.rodo-cols a { color: var(--blue-mid); }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: var(--text);
    padding: 40px 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: 14px;
    font-weight: 400;
}
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    transition: color var(--t);
}
.footer-links a:hover { color: rgba(255,255,255,.85); text-decoration: none; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .feature-inner { grid-template-columns: 1fr; gap: 40px; }
    .feature-media { order: -1; max-width: 600px; margin: 0 auto; }
    .about-layout { grid-template-columns: 1fr; gap: 36px; }
    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 860px) {
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card:first-child { display: none; } /* hide mini on tablet, keep max+vip */
    .pricing-grid { grid-template-columns: repeat(3,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
    .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
    .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(15,23,42,.98);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        z-index: 199;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 13px 16px; font-size: 16px; border-radius: 8px; }
    .main-nav .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
    .hamburger { display: flex; }

    .hero { min-height: 100svh; }
    .hero-title { font-size: 30px; }
    .hero-sub { font-size: 16px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: fit-content; }
    .slider-arrow { width: 40px; height: 40px; font-size: 22px; }

    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .pricing-card:first-child { display: block; }
    .pricing-card--featured { order: -1; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }

    .rodo-cols { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .quals-grid { grid-template-columns: 1fr; }
    .qual-item { flex-direction: column; gap: 8px; }
    .rate-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 24px; }
    .timeline-item { flex-direction: column; gap: 8px; }
    .hero-title { letter-spacing: -0.5px; }
    .section { padding: 48px 0; }
    .feature-section { padding: 56px 0; }
    .brand-name { display: none; }
    .brand-sub  { display: none; }
}

/* ===================================================
   COOKIE BANNER
   =================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(15,23,42,.97);
    color: rgba(255,255,255,.82);
    font-size: 13.5px;
    line-height: 1.55;
    z-index: 1200;
    border-top: 1px solid rgba(255,255,255,.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner__text { flex: 1 1 300px; }
.cookie-banner__text a { color: rgba(255,255,255,.65); text-decoration: underline; }
.cookie-banner__text a:hover { color: white; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner__btn {
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font);
    transition: background var(--t), color var(--t);
}
.cookie-banner__btn--primary { background: var(--blue-mid); color: white; }
.cookie-banner__btn--primary:hover { background: var(--blue); }
.cookie-banner__btn--secondary { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.cookie-banner__btn--secondary:hover { background: rgba(255,255,255,.18); color: white; }
@media (max-width: 500px) {
    .cookie-banner__inner { padding: 14px 16px; }
    .cookie-banner__btn { width: 100%; text-align: center; }
}

