/* ======================================================
   landing.css — RaportKierowcy.pl
   Landing page stylesheet
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&family=DM+Mono:wght@300;400;500&display=swap');

/* ======================================================
   RESET & BASE
   ====================================================== */

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

:root {
    --bg:          #080f1e;
    --bg-card:     #0d1728;
    --bg-card-alt: #0a1422;
    --border:      rgba(255,255,255,.07);
    --border-mid:  rgba(255,255,255,.12);
    --cyan:        #22d3ee;
    --cyan-light:  #38bdf8;
    --cyan-dim:    rgba(34,211,238,.15);
    --cyan-glow:   rgba(34,211,238,.25);
    --text-primary:   #f0f6ff;
    --text-secondary: #7a9ab0;
    --text-muted:     #3a5060;
    --red:    #ef4444;
    --amber:  #f59e0b;
    --green:  #22c55e;
    --blue:   #38bdf8;
    --purple: #a78bfa;
    --font-display: 'Outfit', sans-serif;
    --font-mono:    'DM Mono', monospace;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ======================================================
   TYPOGRAPHY
   ====================================================== */

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.15; }
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: 20px; font-weight: 500; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--cyan);
    display: inline-block;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.section-header .section-label { justify-content: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); font-size: 17px; }

/* ======================================================
   BUTTONS
   ====================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    color: #001224;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: opacity .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--cyan-glow);
}
.btn-primary--large { padding: 16px 36px; font-size: 16px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid var(--border-mid);
    color: var(--text-secondary);
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--cyan-dim); color: var(--text-primary); transform: translateY(-2px); }

.btn-ghost {
    color: var(--text-secondary);
    font-size: 16px;
    transition: color .2s;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    color: #001224;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: opacity .2s, box-shadow .2s;
}
.btn-primary-sm:hover { opacity: .9; box-shadow: 0 6px 20px var(--cyan-glow); }

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
}

.nav--scrolled {
    background: rgba(8,15,30,.85);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
	align-items: center;
	gap: 10px;
}

.nav-logo span {
	font-family: "Google Sans Flex", sans-serif;
	font-size: 20px;
	font-weight: 300;
	color: #94a3b8;
	letter-spacing: -.3px;
}

.nav-logo img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}
.nav-logo strong { font-weight: 600; color: var(--text-primary); }

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #001224;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
	justify-content: center;
}
.nav-links a { font-size: 16px; color: var(--text-secondary); transition: color .2s; }
.nav-links a:hover { color: var(--text-primary); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-burger--open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger--open span:nth-child(2) { opacity: 0; }
.nav-burger--open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(8,15,30,.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    padding: 8px 0 16px;
}
.nav-mobile a {
    padding: 12px 32px;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile .btn-primary-sm { margin: 12px 32px 0; border-radius: var(--radius-md); justify-content: center; }
.nav-mobile--open { display: flex; }

/* ======================================================
   HERO
   ====================================================== */

.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.hero-orb--1 {
    width: 700px; height: 700px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(34,211,238,.1) 0%, transparent 65%);
    /*animation: orb-float 10s ease-in-out infinite;*/
}
.hero-orb--2 {
    width: 500px; height: 500px;
    bottom: 0; left: -100px;
    background: radial-gradient(circle, rgba(56,189,248,.07) 0%, transparent 65%);
    animation: orb-float 14s ease-in-out infinite reverse;
}
.hero-orb--3 {
    width: 300px; height: 300px;
    top: 40%; left: 40%;
    background: radial-gradient(circle, rgba(34,211,238,.04) 0%, transparent 65%);
    animation: orb-float 8s ease-in-out infinite;
}
@keyframes orb-float {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.06); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34,211,238,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}

.hero .container { position: relative; z-index: 1; text-align: center; }

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(34,211,238,.08);
	border: 1px solid rgba(34,211,238,.2);
	border-radius: 100px;
	padding: 8px 21px;
	font-size: 16px;
	color: var(--cyan);
	font-weight: 500;
	margin-bottom: 32px;
	animation: fade-up .6s ease both;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.7); }
}

.hero-title {
    margin-bottom: 24px;
    animation: fade-up .6s .1s ease both;
}
.hero-title-accent {
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 300;
    animation: fade-up .6s .2s ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    animation: fade-up .6s .3s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fade-up .6s .4s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-value {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-mono);
}
.hero-stat-label { font-size: 15px; color: var(--text-muted); letter-spacing: .5px; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero preview (mock dashboard) */
.hero-preview-wrap {
    position: relative;
    z-index: 1;
    margin-top: auto;
    animation: fade-up .8s .5s ease both;
}

.hero-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-bottom: none;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    box-shadow: 0 -20px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(34,211,238,.06);
    max-width: 900px;
    margin: 0 auto;
}

.preview-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid var(--border);
}
.preview-dots { display: flex; gap: 6px; }
.preview-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--border-mid);
}
.preview-dots span:nth-child(1) { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #28c840; }
.preview-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.preview-body { padding: 20px; }

.preview-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.preview-kpi {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.preview-kpi-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.preview-kpi-icon--blue   { background: rgba(56,189,248,.15);  color: var(--blue);   }
.preview-kpi-icon--red    { background: rgba(239,68,68,.15);   color: var(--red);    }
.preview-kpi-icon--amber  { background: rgba(245,158,11,.15);  color: var(--amber);  }
.preview-kpi-icon--cyan   { background: rgba(34,211,238,.15);  color: var(--cyan);   }
.preview-kpi-value { font-size: 20px; font-weight: 600; font-family: var(--font-mono); }
.preview-kpi-label { font-size: 10px; color: var(--text-muted); }

.preview-table { font-size: 12px; }
.preview-table-head {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    padding: 6px 8px;
    color: var(--text-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.preview-table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    align-items: center;
    padding: 8px;
    border-radius: 6px;
    transition: background .15s;
}
.preview-table-row:hover { background: rgba(255,255,255,.03); }
.preview-table-row--warn { background: rgba(245,158,11,.03); }
.preview-table-row--err  { background: rgba(239,68,68,.04); }

.preview-driver { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.preview-avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    display: flex; align-items: center; justify-content: center;
    font-size: 8px; font-weight: 700; color: #001224;
    flex-shrink: 0;
}
.preview-avatar--amber { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.preview-avatar--red   { background: linear-gradient(135deg, #ef4444, #f87171); }

.preview-status { display: flex; align-items: center; gap: 6px; font-size: 11px; }
.preview-status-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.preview-status-dot--ok   { background: var(--green); }
.preview-status-dot--warn { background: var(--amber); }
.preview-status-dot--err  { background: var(--red); }
.preview-status--ok   { color: var(--green); }
.preview-status--warn { color: var(--amber); }
.preview-status--err  { color: var(--red); }

.preview-date { font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); }
.preview-time { font-size: 10px; color: var(--text-muted); }

/* ======================================================
   PROBLEM
   ====================================================== */

.problem {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-card-alt) 50%, var(--bg) 100%);
}

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

.problem-text .section-label { margin-bottom: 20px; }
.problem-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 20px;
    font-weight: 300;
}
.problem-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 17px;
}

.problem-cards { display: flex; flex-direction: column; gap: 16px; }

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left-width: 3px;
    transition: transform .2s, box-shadow .2s;
}
.problem-card:hover { transform: translateX(4px); }
.problem-card--red   { border-left-color: var(--red);   }
.problem-card--amber { border-left-color: var(--amber); }
.problem-card--blue  { border-left-color: var(--blue);  }

.problem-card-icon { opacity: .6; margin-bottom: 4px; }
.problem-card--red   .problem-card-icon { color: var(--red);   opacity: 1; }
.problem-card--amber .problem-card-icon { color: var(--amber); opacity: 1; }
.problem-card--blue  .problem-card-icon { color: var(--blue);  opacity: 1; }
.problem-card h3 { font-size: 17px; font-weight: 600; }
.problem-card p  { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }

/* ======================================================
   HOW IT WORKS
   ====================================================== */

.how { padding: 120px 0; }

.steps {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: border-color .2s, transform .2s;
}
.step:hover { border-color: var(--cyan-dim); transform: translateY(-4px); }

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border: 1px solid var(--border-mid);
    border-radius: 100px;
    padding: 2px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    font-family: var(--font-mono);
    letter-spacing: 1px;
}

.step-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--cyan-dim);
    border: 1px solid rgba(34,211,238,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
}

.step h3 { font-size: 19px; font-weight: 500; }
.step p  { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

.step-arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    padding-top: 80px;
}

/* ======================================================
   FEATURES
   ====================================================== */

.features { padding: 120px 0; background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-card-alt) 100%); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--border-mid); transform: translateY(-3px); }
.feature-card--large {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(34,211,238,.05) 0%, var(--bg-card) 60%);
    border-color: rgba(34,211,238,.15);
}

.feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.feature-icon--cyan   { background: rgba(34,211,238,.12); color: var(--cyan);   }
.feature-icon--blue   { background: rgba(56,189,248,.12); color: var(--blue);   }
.feature-icon--amber  { background: rgba(245,158,11,.12); color: var(--amber);  }
.feature-icon--green  { background: rgba(34,197,94,.12);  color: var(--green);  }
.feature-icon--red    { background: rgba(239,68,68,.12);  color: var(--red);    }
.feature-icon--purple { background: rgba(167,139,250,.12); color: var(--purple); }

.feature-card h3 { font-size: 19px; font-weight: 500; }
.feature-card p  { font-size: 16px; color: var(--text-secondary); line-height: 1.6; flex: 1; }

.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: var(--cyan-dim);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    width: fit-content;
}

/* ======================================================
   TRUST
   ====================================================== */

.trust { padding: 120px 0; background: var(--bg-card-alt); }

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

.trust-content .section-label { margin-bottom: 20px; }
.trust-content h2 { margin-bottom: 32px; font-size: clamp(24px, 3vw, 36px); }

.trust-items { display: flex; flex-direction: column; gap: 20px; }

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.trust-item-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--cyan-dim);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}
.trust-item div { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { font-size: 19px; font-weight: 500; color: var(--text-primary); }
.trust-item span   { font-size: 16px; color: var(--text-secondary); line-height: 1.5; }

.trust-visual { display: flex; align-items: center; justify-content: center; }

.trust-badge-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    width: 260px;
    transition: border-color .2s, transform .2s;
}
.trust-badge:hover { border-color: var(--cyan-dim); transform: scale(1.02); }
.trust-badge-icon { color: var(--cyan); }
.trust-badge-text { display: flex; flex-direction: column; gap: 0px; }
.trust-badge-text strong { font-size: 19px; font-weight: 600; }
.trust-badge-text span   { font-size: 15px; color: var(--text-muted); }

/* ======================================================
   PRICING
   ====================================================== */

.pricing { padding: 120px 0; }

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.pricing-toggle-btn {
    background: transparent;
    border: none;
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.pricing-toggle-btn--active {
    background: var(--cyan);
    color: #001224;
}
.pricing-toggle-btn:not(.pricing-toggle-btn--active):hover { color: var(--text-primary); }
.pricing-toggle-save {
    background: rgba(34,211,238,.18);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: .3px;
}
.pricing-toggle-btn--active .pricing-toggle-save {
    background: rgba(0,18,36,.25);
    color: #001224;
}

.pricing-yearly-total {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: -6px;
    margin-bottom: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto 48px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.pricing-card--featured {
    border-color: rgba(34,211,238,.3);
    background: linear-gradient(145deg, rgba(34,211,238,.05) 0%, var(--bg-card) 60%);
    box-shadow: 0 0 60px rgba(34,211,238,.08);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    color: #001224;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: .5px;
}

.pricing-card-header { margin-bottom: 24px; }
.pricing-plan-name {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.pricing-card--featured .pricing-plan-name { color: var(--cyan); }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
}
.pricing-amount {
    font-size: 40px;
    font-weight: 200;
    line-height: 1;
    font-family: var(--font-display);
    white-space: nowrap;
    flex-shrink: 0;
}
.pricing-period {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
    word-break: break-word;
}
.pricing-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-limit {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}
.pricing-limit-bar {
    flex: 1;
    height: 4px;
    background: var(--border-mid);
    border-radius: 4px;
    overflow: hidden;
}
.pricing-limit-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan-light), var(--cyan));
    border-radius: 4px;
}
.pricing-limit strong { color: var(--text-primary); }

.pricing-cap {
    margin-bottom: 20px;
}
.pricing-cap-inner {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: var(--cyan-dim);
    border: 1px solid rgba(34,211,238,.2);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 14px;
    color: var(--cyan);
    line-height: 1.5;
}
.pricing-cap-inner svg { flex-shrink: 0; margin-top: 1px; }
.pricing-cap-inner strong { color: #fff; }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
}
.pricing-feature strong { white-space: nowrap; }
.pricing-feature svg { flex-shrink: 0; }
.pricing-feature--ok  { color: var(--text-primary); }
.pricing-feature--ok svg  { color: var(--green); }
.pricing-feature--no  { color: var(--text-muted); }
.pricing-feature--no svg  { color: var(--text-muted); }
.pricing-feature--highlight { color: var(--text-primary); }

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: all .2s;
    margin-bottom: 12px;
}
.pricing-btn--outline {
    border: 1px solid var(--border-mid);
    color: var(--text-secondary);
}
.pricing-btn--outline:hover { border-color: var(--cyan-dim); color: var(--text-primary); }
.pricing-btn--primary {
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    color: #001224;
}
.pricing-btn--primary:hover { opacity: .9; box-shadow: 0 8px 24px var(--cyan-glow); transform: translateY(-1px); }

.pricing-note { text-align: center; font-size: 13px; color: var(--text-muted); }

/* Pricing calculator */
.pricing-calc {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
}
.pricing-calc-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.pricing-calc-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-secondary);
}
.calc-slider {
    flex: 1;
    accent-color: var(--cyan);
    height: 4px;
}
.calc-value {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    min-width: 32px;
    text-align: right;
}
.pricing-calc-result {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
}
.pricing-calc-result strong {
    font-size: 18px;
    font-family: var(--font-mono);
    transition: color .3s;
}

/* ======================================================
   CTA
   ====================================================== */

.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; }
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.cta-orb--1 {
    width: 600px; height: 600px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: radial-gradient(circle, rgba(34,211,238,.1) 0%, transparent 65%);
}
.cta-orb--2 {
    width: 300px; height: 300px;
    bottom: 0; right: 10%;
    background: radial-gradient(circle, rgba(56,189,248,.07) 0%, transparent 65%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p  { color: var(--text-secondary); font-size: 17px; margin-bottom: 40px; }

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: var(--text-muted);
}
.cta-note svg { color: var(--green); flex-shrink: 0; }

/* ======================================================
   CONTACT FORM
   ====================================================== */

.contact {
    padding: 100px 0 80px;
    position: relative;
}
.contact .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.contact-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* Honeypot — invisible to humans */
.contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-field {
    margin-bottom: 16px;
}
.contact-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.contact-req {
    color: var(--cyan);
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    resize: vertical;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: var(--text-muted);
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-dim);
}
.contact-field input.contact-input--error,
.contact-field textarea.contact-input--error {
    border-color: var(--red);
}
.contact-field-error {
    font-size: 12px;
    color: var(--red);
    margin-top: 4px;
    min-height: 0;
}

.contact-form-error {
    display: none;
    font-size: 13px;
    color: var(--red);
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .2);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 8px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 28px;
    background: var(--cyan);
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-display);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity .2s, transform .15s;
}
.contact-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
}
.contact-submit:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}
.contact-submit--sending {
    pointer-events: none;
}

/* Success state */
.contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}
.contact-success h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}
.contact-success p {
    font-size: 15px;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 24px; }
}

/* ======================================================
   FOOTER
   ====================================================== */

.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
    background: var(--bg-card-alt);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); max-width: 220px; line-height: 1.6; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.footer-col a { font-size: 15px; color: var(--text-secondary); transition: color .2s; }
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom span { font-size: 13px; color: var(--text-muted); }

/* ======================================================
   HERO — jednorazowa weryfikacja hint
   ====================================================== */

.hero-check-once {
    text-align: center;
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fade-up .6s .3s ease both;
}
.hero-check-once a {
    color: var(--cyan);
    transition: opacity .2s;
}
.hero-check-once a:hover { opacity: .75; }

/* ======================================================
   CHECK ONCE SECTION
   ====================================================== */

.check-once-section {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.check-once-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,.05) 0%, transparent 65%);
    pointer-events: none;
}

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

/* Left: content */
.check-once-content h2 {
    margin-bottom: 20px;
    line-height: 1.15;
}
.check-once-lead {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}
.check-once-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}
.check-once-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.check-once-list li svg {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 3px;
}
.check-once-btn { align-self: flex-start; }
.check-once-note {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 14px;
}

/* Right: mock result card */
.check-once-visual {
    display: flex;
    justify-content: center;
}
.check-once-card {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-xl);
    padding: 28px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.check-once-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.check-once-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(34,197,94,.12);
    color: #4ade80;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.check-once-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}
.check-once-card-sub {
    font-size: 12px;
    color: var(--text-muted);
}
.check-once-card-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}
.check-once-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.check-once-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-muted);
}
.check-once-card-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}
.check-once-card-value--cyan { color: var(--cyan); }
.check-once-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
}
.check-once-card-badge--ok {
    background: rgba(34,197,94,.12);
    color: #4ade80;
}
.check-once-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.check-once-card-footer svg { flex-shrink: 0; }

/* ======================================================
   SCROLL REVEAL
   ====================================================== */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .5s ease, transform .5s ease; }
.revealed { opacity: 1; transform: translateY(0); }
.step.reveal:nth-child(1) { transition-delay: 0s; }
.step.reveal:nth-child(3) { transition-delay: .1s; }
.step.reveal:nth-child(5) { transition-delay: .2s; }
.feature-card.reveal:nth-child(1) { transition-delay: 0s; }
.feature-card.reveal:nth-child(2) { transition-delay: .07s; }
.feature-card.reveal:nth-child(3) { transition-delay: .14s; }
.feature-card.reveal:nth-child(4) { transition-delay: .21s; }
.feature-card.reveal:nth-child(5) { transition-delay: .28s; }
.feature-card.reveal:nth-child(6) { transition-delay: .35s; }
.pricing-card.reveal:nth-child(1) { transition-delay: 0s; }
.pricing-card.reveal:nth-child(2) { transition-delay: .07s; }
.pricing-card.reveal:nth-child(3) { transition-delay: .14s; }
.pricing-card.reveal:nth-child(4) { transition-delay: .21s; }

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card--large { grid-column: span 2; }
    .problem-grid { gap: 48px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
}

@media (max-width: 900px) {
    .nav-links, .nav-cta .btn-ghost { display: none; }
    .nav-burger { display: flex; }
    .problem-grid { grid-template-columns: 1fr; }
    .trust-inner { grid-template-columns: 1fr; }
    .trust-visual { justify-content: flex-start; }
    .trust-badge-wrap { flex-direction: row; flex-wrap: wrap; }
    .trust-badge { width: auto; flex: 1; min-width: 180px; }
    .steps { flex-direction: column; align-items: stretch; }
    .step-arrow { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .check-once-inner { grid-template-columns: 1fr; gap: 48px; }
    .check-once-visual { order: -1; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero { padding-top: 120px; }
    .hero-stats { gap: 24px; }
    .hero-stat-divider { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-toggle { width: auto; max-width: 340px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card--large { grid-column: span 1; }
    .preview-kpis { grid-template-columns: repeat(2, 1fr); }
    .preview-table-head, .preview-table-row { grid-template-columns: 2fr 1.5fr; }
    .preview-table-head span:nth-child(n+3),
    .preview-table-row span:nth-child(n+3) { display: none; }
    section { padding: 80px 0; }
    .how, .features, .trust, .pricing, .cta, .check-once-section, .vehicles-section { padding: 80px 0; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions a { justify-content: center; }
    .btn-primary--large { padding: 16px 24px; }
    .footer-links { grid-template-columns: 1fr; }
    .trust-badge-wrap { flex-direction: column; }
    .trust-badge { width: 100%; }
	.nav-cta { display: none;}
}
/* ======================================================
   VEHICLES SECTION
   ====================================================== */

/* Teal colour variants (problem card + feature icon) */
.problem-card--teal  { border-left-color: #14b8a6; }
.problem-card--teal  .problem-card-icon { color: #14b8a6; opacity: 1; }

.feature-icon--teal { background: rgba(20,184,166,.12); color: #14b8a6; }
.feature-tag--new {
    background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(34,211,238,.15));
    color: #14b8a6;
    border-color: rgba(20,184,166,.35);
}

/* Section */
.vehicles-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(20,184,166,.03) 50%, transparent 100%);
}

.vehicles-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── LEFT: mock ── */
.vehicles-visual { display: flex; justify-content: center; }

.vehicles-mock {
    background: var(--bg-card);
    border: 1px solid var(--border-mid);
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(20,184,166,.12);
}

.vehicles-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(20,184,166,.07);
    border-bottom: 1px solid rgba(20,184,166,.15);
}
.vehicles-mock-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #14b8a6;
}
.vehicles-mock-count {
    font-size: 12px;
    color: var(--text-secondary);
}

.vehicles-mock-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}
.vehicles-mock-row:last-of-type { border-bottom: none; }
.vehicles-mock-row--warn  { background: rgba(245,158,11,.04); }
.vehicles-mock-row--danger{ background: rgba(239,68,68,.05);  }

.vehicles-mock-reg {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: .03em;
}
.vehicles-mock-name { font-size: 12px; color: var(--text-secondary); }
.vehicles-mock-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.vehicles-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid;
}
.vehicles-tag--ok {
    background: rgba(34,197,94,.09);
    border-color: rgba(34,197,94,.25);
    color: #4ade80;
}
.vehicles-tag--warn {
    background: rgba(245,158,11,.1);
    border-color: rgba(245,158,11,.3);
    color: #fbbf24;
}
.vehicles-tag--danger {
    background: rgba(239,68,68,.1);
    border-color: rgba(239,68,68,.35);
    color: #f87171;
}

.vehicles-mock-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(239,68,68,.06);
    border-top: 1px solid rgba(239,68,68,.2);
    font-size: 11px;
    color: #f87171;
}

/* ── RIGHT: copy ── */
.vehicles-content h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}
.vehicles-lead {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}

.vehicles-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}
.vehicles-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.vehicles-list-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(20,184,166,.12);
    border: 1px solid rgba(20,184,166,.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    margin-top: 1px;
}
.vehicles-list li strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 3px;
}
.vehicles-list li span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.vehicles-cta { margin-top: 4px; }

/* ── Responsive ── */
@media (max-width: 960px) {
    .vehicles-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    /* On mobile: copy first, visual second */
    .vehicles-visual { order: 2; }
    .vehicles-content { order: 1; }
    .vehicles-mock { max-width: 100%; }
}

@media (max-width: 768px) {
    .vehicles-section { padding: 80px 0; }
}

/* ======================================================
   COOKIE CONSENT
   ====================================================== */
.rk-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 680px;
    background: rgba(10, 22, 40, 0.97);
    border: 1px solid rgba(34,211,238,.2);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(34,211,238,.06);
    backdrop-filter: blur(16px);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
    pointer-events: none;
}
.rk-cookie-banner--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.rk-cookie-inner { display: flex; align-items: center; gap: 20px; padding: 18px 22px; }
.rk-cookie-text { flex: 1; min-width: 0; font-family: "Open Sans", sans-serif; }
.rk-cookie-text strong { display: block; font-size: 14px; font-weight: 600; color: #e2e8f0; margin-bottom: 4px; }
.rk-cookie-text p { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0; }
.rk-cookie-text a { color: #22d3ee; text-decoration: none; }
.rk-cookie-text a:hover { text-decoration: underline; }
.rk-cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.rk-cookie-btn { padding: 9px 18px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; font-family: inherit; white-space: nowrap; transition: opacity .2s, transform .15s; }
.rk-cookie-btn:hover { opacity: .88; transform: translateY(-1px); }
.rk-cookie-btn--secondary { background: rgba(255,255,255,.06); color: #94a3b8; border: 1px solid rgba(255,255,255,.1); }
.rk-cookie-btn--primary { background: linear-gradient(135deg, #38bdf8, #22d3ee); color: #001224; }
.rk-cookie-fab { position: fixed; bottom: 24px; left: 24px; z-index: 9998; width: 38px; height: 38px; border-radius: 50%; background: rgba(10,22,40,.9); border: 1px solid rgba(255,255,255,.1); color: #64748b; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color .2s, border-color .2s; }
.rk-cookie-fab:hover { color: #22d3ee; border-color: rgba(34,211,238,.3); }
@media (max-width: 600px) {
    .rk-cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; }
    .rk-cookie-actions { justify-content: flex-end; }
}
