/* ═══════════════════════════════════════════════════════════════════════════
   AntonWeb – styles.css
   Design system: Deep Navy (#080D1A) + Electric Blue (#2563EB) + Sky (#38BDF8)
   Typography: Space Grotesk (headings), Inter (body), JetBrains Mono (labels)
   Mobile-first, fully responsive
═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────────────────────── */

@charset "UTF-8";

:root {
  --bg-dark:    #080D1A;
  --bg-mid:     #0F1829;
  --bg-card:    #132035;
  --border:     rgba(37, 99, 235, 0.2);
  --border-mid: rgba(37, 99, 235, 0.3);

  --blue:       #2563EB;
  --blue-hover: #1D4ED8;
  --sky:        #38BDF8;
  --white:      #FFFFFF;
  --slate-100:  #F1F5F9;
  --slate-200:  #E2E8F0;
  --slate-300:  #CBD5E1;
  --slate-400:  #94A3B8;
  --slate-500:  #64748B;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --section-py: 6rem;
  --container:  1200px;
  --container-px: 1.25rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);

  --transition: 0.25s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-dark);
  color: var(--slate-300);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Accessibility ──────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--blue); color: var(--white);
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ─── Container ──────────────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 var(--container-px);
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--white); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p { font-family: var(--font-body); }

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.accent-text { color: var(--sky); }

.section-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; color: var(--sky); text-transform: uppercase; margin-bottom: 1rem;
}
.label-line { display: inline-block; width: 2rem; height: 1px; background: var(--sky); flex-shrink: 0; }
.text-center { text-align: center; }
.text-center .section-label {
  justify-content: center;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  transition: all var(--transition); white-space: nowrap; cursor: pointer; text-decoration: none;
}
.btn-lg { padding: 0.8rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary { background: var(--blue); color: var(--white); border: 1px solid var(--blue); }
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); transform: translateY(-1px); }
.btn-glow { box-shadow: 0 0 20px rgba(37, 99, 235, 0.4); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(37, 99, 235, 0.6); }
.btn-outline { background: transparent; color: var(--slate-200); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--blue); color: var(--white); transform: translateY(-1px); }

.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.hidden { display: none !important; }

/* ─── Scroll reveal ──────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Spinner ────────────────────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 0.8s linear infinite; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled, #navbar.menu-open {
  background: var(--bg-dark);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 768px) { .nav-inner { height: 5rem; } }

.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800;
  color: var(--white); text-decoration: none; flex-shrink: 0;
}
.nav-logo-icon {
  width: 2.25rem; height: 2.25rem; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 0 16px rgba(37,99,235,0.4); flex-shrink: 0;
}

.nav-links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-size: 0.875rem; font-weight: 500; color: var(--slate-300);
  text-decoration: none; position: relative; transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--blue); transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { display: none; }
@media (min-width: 480px) { .nav-cta { display: inline-flex; } }

.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 2.25rem; height: 2.25rem; padding: 0.25rem;
  color: var(--slate-300); transition: color var(--transition);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger:hover { color: var(--white); }
.hamburger span {
  display: block; width: 100%; height: 2px; background: currentColor;
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 4rem; left: 0; right: 0; z-index: 90;
  background: var(--bg-dark); border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
@media (min-width: 768px) { .mobile-menu { top: 5rem; } }
.mobile-menu.open { max-height: 30rem; opacity: 1; pointer-events: auto; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 1.25rem var(--container-px) 1.5rem; }
.mobile-nav-link {
  display: block; padding: 0.875rem 0.75rem; font-size: 1rem; font-weight: 500;
  color: var(--slate-200); border-bottom: 1px solid rgba(37,99,235,0.1); transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--white); }
.mobile-cta { margin-top: 1rem; justify-content: center; }

.menu-backdrop {
  position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--bg-dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-dark) 40%, rgba(8,13,26,0.6) 70%, transparent),
              linear-gradient(to top, var(--bg-dark) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 1; padding-top: 6rem; padding-bottom: 5rem; }
.hero-text { max-width: 38rem; }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.1rem; color: var(--slate-300); line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--slate-400); }
.hero-badge svg { color: var(--sky); flex-shrink: 0; }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.6;
}
@keyframes pulse-line { 0%,100%{opacity:1} 50%{opacity:0.3} }
.scroll-line { width: 1px; height: 3rem; background: linear-gradient(to bottom, var(--blue), transparent); animation: pulse-line 2s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════════════════ */
.stats-bar { padding: 2.5rem 0; background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; }
.stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; line-height: 1.1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.8rem; color: var(--slate-400); }

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════════════════════ */
.section { padding: var(--section-py) 0; }
.section-dark { background: var(--bg-dark); }
.section-mid  { background: var(--bg-mid); }

.section-header { max-width: 40rem; margin-bottom: 4rem; }
.section-header.text-center { margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 1rem; }
.section-sub { color: var(--slate-400); font-size: 1rem; }

/* ─── Card ───────────────────────────────────────────────────────────────── */
.card {
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 2rem; box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-card), var(--shadow-glow); transform: translateY(-3px); }
.card-icon {
  width: 3rem; height: 3rem; border-radius: var(--radius-md);
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--sky); margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.card p { color: var(--slate-400); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-family: var(--font-mono); font-size: 0.7rem; padding: 0.2rem 0.6rem;
  border-radius: 999px; background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.25); color: var(--sky);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════════════════ */
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-image { position: relative; order: 2; }
@media (min-width: 1024px) { .about-image { order: 1; } }
.about-image-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border-mid); box-shadow: var(--shadow-glow);
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card));
}
.about-image-wrap img { width: 100%; max-height: 30rem; object-fit: cover; }

.cert-badge {
  position: absolute; bottom: -1.5rem; right: -1rem;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card));
  border: 1px solid var(--border-mid); border-radius: var(--radius-lg);
  padding: 1rem 1.25rem; box-shadow: 0 8px 32px rgba(0,0,0,0.5); min-width: 11rem;
}
@media (min-width: 640px) { .cert-badge { right: -2rem; } }
.cert-badge-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.cert-stars { color: #FBBF24; font-size: 0.75rem; letter-spacing: 2px; }

.about-text { order: 1; }
@media (min-width: 1024px) { .about-text { order: 2; } }
.about-text h2 { margin-bottom: 1.5rem; }
.about-body { display: flex; flex-direction: column; gap: 1rem; color: var(--slate-300); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.about-body strong { color: var(--white); }

.cert-list { margin-bottom: 1.5rem; }
.cert-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--slate-300); padding: 0.35rem 0; }

.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.skill-chip {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md); background: rgba(37,99,235,0.08);
  border: 1px solid var(--border); font-size: 0.85rem; color: var(--slate-300); transition: border-color var(--transition);
}
.skill-chip svg { color: var(--sky); flex-shrink: 0; }
.skill-chip:hover { border-color: var(--border-mid); }

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════════════════ */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════════════════ */
.pricing-grid { display: grid; gap: 2rem; max-width: 52rem; margin: 0 auto; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

.pricing-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 2rem; box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-card), var(--shadow-glow); }
.pricing-popular { border-color: var(--blue); box-shadow: var(--shadow-card), 0 0 40px rgba(37,99,235,0.2); }

.popular-badge {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--sky)); color: var(--white);
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  padding: 0.35rem 1rem; border-radius: 999px; white-space: nowrap;
}

.pricing-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; }
.price-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.price-period { font-size: 0.85rem; color: var(--slate-400); }
.price-monthly { font-family: var(--font-mono); font-size: 0.85rem; color: var(--slate-400); margin-bottom: 1rem; }
.price-monthly.accent-text { color: var(--sky); }
.pricing-desc { font-size: 0.875rem; color: var(--slate-400); line-height: 1.65; margin-bottom: 1.25rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--slate-300); line-height: 1.5; }
.feature-list li svg { flex-shrink: 0; margin-top: 2px; }

.pricing-note { text-align: center; color: var(--slate-500); font-size: 0.875rem; margin-top: 2rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════════════════════ */
.usps-grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 640px) { .usps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usps-grid { grid-template-columns: repeat(4, 1fr); } }

.security-visual { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-mid); box-shadow: var(--shadow-glow); }
.security-visual img { width: 100%; max-height: 26rem; object-fit: cover; object-position: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════════════════════ */
.cta-banner { position: relative; padding: var(--section-py) 0; background: var(--bg-dark); overflow: hidden; }
.cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37,99,235,0.1) 0%, transparent 70%); }

.cta-box {
  background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-card) 50%, var(--bg-mid) 100%);
  border: 1px solid var(--border-mid); 
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem; 
  box-shadow: 0 0 80px rgba(37,99,235,0.08);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) { 
  .cta-box { 
    padding: 3rem 4rem; 
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  } 
}

.cta-box p { 
  margin: 0; 
  font-size: 1.1rem; 
  color: var(--slate-200); 
  max-width: 32rem; 
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--slate-300); }
.required { color: var(--blue); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(8,13,26,0.8); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.7rem 0.9rem;
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%; outline: none; -webkit-appearance: none; appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.25rem;
}
.form-group select option { background: var(--bg-mid); color: var(--white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate-500); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-group textarea { resize: vertical; min-height: 7rem; }

/* ─── GDPR Consent Checkbox ──────────────────────────────────────────────── */
.consent-group {
  gap: 0.5rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: var(--slate-300) !important;
  line-height: 1.6;
  user-select: none;
}

/* Hide native checkbox */
.consent-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom checkbox box */
.consent-box {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  border: 2px solid var(--border-mid);
  border-radius: 4px;
  background: rgba(8, 13, 26, 0.8);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Checkmark (hidden by default) */
.consent-box::after {
  content: '';
  display: block;
  width: 0.35rem;
  height: 0.6rem;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* Checked state */
.consent-label input[type="checkbox"]:checked + .consent-box {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.consent-label input[type="checkbox"]:checked + .consent-box::after {
  opacity: 1;
}

/* Focus ring (keyboard nav) */
.consent-label input[type="checkbox"]:focus-visible + .consent-box {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Error state */
.consent-box.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Hover */
.consent-label:hover .consent-box {
  border-color: var(--blue);
}

.consent-text {
  flex: 1;
}

.consent-link {
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.consent-link:hover {
  color: var(--blue);
}

/* Inline error message below checkbox */
.consent-error {
  font-size: 0.8rem;
  color: #FCA5A5;
  min-height: 1rem;
  padding-left: 1.875rem; /* align with text */
}

/* ─── Form status messages ───────────────────────────────────────────────── */
.form-status { font-size: 0.875rem; padding: 0.75rem 1rem; border-radius: var(--radius-md); display: none; }
.form-status.success { display: block; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #86EFAC; }
.form-status.error   { display: block; background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #FCA5A5; }

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-details h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.875rem; padding: 0.5rem 0; }
.contact-icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-md);
  background: rgba(37,99,235,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--sky); flex-shrink: 0;
}
.contact-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--slate-500); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-value { font-size: 0.9rem; font-weight: 500; color: var(--slate-200); transition: color var(--transition); }
a.contact-value:hover { color: var(--blue); }

.map-wrap { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); height: 17rem; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg); }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */

footer { 
  background: var(--bg-dark); 
  border-top: 1px solid var(--border); 
}

.footer-inner { 
  padding: 3.5rem 1.25rem 2rem; 
}

@media (min-width: 1200px) {
  .footer-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.footer-grid { 
  display: grid; 
  gap: 2.5rem; 
  margin-bottom: 2.5rem; 
}

@media (min-width: 640px) { 
  .footer-grid { grid-template-columns: 1fr 1fr; } 
}

@media (min-width: 1024px) { 
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; } 
}

.footer-brand .nav-logo { 
  margin-bottom: 1rem; 
}

.footer-desc { 
  font-size: 0.875rem; 
  color: var(--slate-400); 
  line-height: 1.7; 
  max-width: 22rem; 
}

.footer-nav ul, 
.footer-contact ul { 
  display: flex; 
  flex-direction: column; 
  gap: 0.5rem; 
}

.footer-nav a { 
  font-size: 0.875rem; 
  color: var(--slate-400); 
  transition: color var(--transition); 
}

.footer-nav a:hover { 
  color: var(--blue); 
}

.footer-contact li { 
  display: flex; 
  align-items: center; 
  gap: 0.5rem; 
  font-size: 0.875rem; 
  color: var(--slate-400); 
}

.footer-contact li svg { 
  color: var(--slate-500); 
  flex-shrink: 0; 
}

.footer-contact a { 
  transition: color var(--transition); 
}

.footer-contact a:hover { 
  color: var(--blue); 
}

.footer-divider { 
  border: none; 
  border-top: 1px solid var(--border); 
  margin-bottom: 1.5rem; 
}

.footer-bottom { 
  display: flex; 
  flex-direction: column; 
  gap: 1.25rem; 
  align-items: center; 
  text-align: center;
}

.footer-bottom-links { 
  display: flex; 
  flex-direction: column;
  align-items: center;
  gap: 0.75rem; 
}

@media (min-width: 640px) { 
  .footer-bottom { 
    flex-direction: row; 
    align-items: center; 
    justify-content: space-between; 
    text-align: left;
  } 
  .footer-bottom-links {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.footer-bottom p { 
  font-size: 0.85rem; 
  color: var(--slate-500); 
}

.footer-link { 
  font-size: 0.85rem; 
  color: var(--slate-500); 
  transition: color var(--transition); 
}

.footer-link:hover { 
  color: var(--blue); 
}

.footer-credit { 
  font-family: var(--font-mono); 
  font-size: 0.8rem; 
  color: var(--slate-500); 
}

/* ═══════════════════════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 50;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  opacity: 0; transform: translateY(1rem); pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  cursor: pointer; border: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--blue-hover); }

/* ═══════════════════════════════════════════════════════════════════════════
   PRIVACY PAGE
═══════════════════════════════════════════════════════════════════════════ */
.privacy-page { padding-top: 7rem; padding-bottom: var(--section-py); min-height: 100vh; background: var(--bg-dark); }
.privacy-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.privacy-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.privacy-meta { font-size: 0.85rem; color: var(--slate-500); font-family: var(--font-mono); }
.privacy-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--slate-400); margin-bottom: 2rem; transition: color var(--transition); }
.privacy-back:hover { color: var(--blue); }
.privacy-content { max-width: 52rem; }
.privacy-section { margin-bottom: 2.5rem; }
.privacy-section h2 { font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.privacy-section p, .privacy-section li { font-size: 0.9rem; color: var(--slate-300); line-height: 1.75; margin-bottom: 0.75rem; }
.privacy-section ul, .privacy-section ol { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.privacy-section ul li { list-style: disc; }
.privacy-section ol li { list-style: decimal; }
.privacy-section strong { color: var(--white); }
.privacy-section a { color: var(--blue); text-decoration: underline; }
.privacy-section a:hover { color: var(--sky); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --section-py: 4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cert-badge { right: 0; }
}
@media (min-width: 1280px) { :root { --container-px: 2rem; } }


/* ═══════════════════════════════════════════════════════════════════════════
   BLOG – SHARED UTILITIES
═══════════════════════════════════════════════════════════════════════════ */

/* Active nav state for blog sub-pages */
.nav-link--active {
  color: var(--white);
}
.nav-link--active::after {
  width: 100%;
}
.mobile-nav-link--active {
  color: var(--white);
}

/* Visually hidden (screen-reader only) */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG HERO  (baza-wiedzy.html)
═══════════════════════════════════════════════════════════════════════════ */
.blog-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--bg-dark);
  overflow: hidden;
}

/* Subtle grid-dot background */
.blog-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(56,189,248,0.06) 0%, transparent 50%);
}
.blog-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.blog-hero__content {
  position: relative; z-index: 1;
}
.blog-hero__content h1 {
  margin-bottom: 1.25rem;
}
.blog-hero__sub {
  font-size: 1.1rem; color: var(--slate-300); line-height: 1.7;
  max-width: 36rem; margin-bottom: 2.5rem;
}

/* Category filter pills */
.blog-hero__filters {
  display: flex; flex-wrap: wrap; gap: 0.625rem;
}
.blog-filter {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--slate-400);
  cursor: default; transition: all var(--transition);
}
.blog-filter--active,
.blog-filter:hover {
  border-color: var(--blue); color: var(--sky);
  background: rgba(37,99,235,0.08);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG GRID  (baza-wiedzy.html)
═══════════════════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Blog Card (BEM) ─────────────────────────────────────────────────── */
.blog-card {
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, var(--bg-mid), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-4px);
}

/* Thumbnail */
.blog-card__thumb-link { display: block; }
.blog-card__thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
}
.blog-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__thumb img {
  transform: scale(1.04);
}
.blog-card__thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,13,26,0.6) 0%, transparent 60%);
}
.blog-card__category {
  position: absolute; top: 0.875rem; left: 0.875rem;
  font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: 999px;
  background: rgba(37,99,235,0.85); color: var(--white);
  backdrop-filter: blur(4px);
}

/* Body */
.blog-card__body {
  display: flex; flex-direction: column; flex: 1;
  padding: 1.5rem;
}
.blog-card__meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 0.875rem;
}
.blog-card__date,
.blog-card__read-time {
  display: flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--slate-500); white-space: nowrap;
}
.blog-card__date svg,
.blog-card__read-time svg { color: var(--sky); flex-shrink: 0; }

.blog-card__title {
  font-size: 1.05rem; font-weight: 700; line-height: 1.4;
  margin-bottom: 0.75rem; color: var(--white);
}
.blog-card__title a {
  color: inherit; text-decoration: none;
  transition: color var(--transition);
}
.blog-card__title a:hover { color: var(--sky); }

.blog-card__excerpt {
  font-size: 0.875rem; color: var(--slate-400); line-height: 1.7;
  flex: 1; margin-bottom: 1.25rem;
}

.blog-card__cta {
  align-self: flex-start; font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
}

/* CTA strip */
.blog-cta-strip {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem; text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
@media (min-width: 640px) {
  .blog-cta-strip { flex-direction: row; justify-content: space-between; text-align: left; }
}
.blog-cta-strip__text {
  font-size: 1.1rem; color: var(--slate-200); font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLE HERO  (artykul-szablon.html)
═══════════════════════════════════════════════════════════════════════════ */
.article-hero {
  position: relative;
  height: clamp(220px, 40vw, 480px);
  overflow: hidden;
  margin-top: 4rem; /* navbar height */
}
@media (min-width: 768px) { .article-hero { margin-top: 5rem; } }

.article-hero__img {
  width: 100%; height: 100%; object-fit: cover;
}
.article-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,13,26,0.3) 0%, rgba(8,13,26,0.85) 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLE LAYOUT  (artykul-szablon.html)
═══════════════════════════════════════════════════════════════════════════ */
.article-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem var(--container-px) 5rem;
}

/* ─── Article Header ──────────────────────────────────────────────────── */
.article-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--slate-500);
  margin-bottom: 1.75rem;
}
.article-breadcrumb a {
  color: var(--slate-400); text-decoration: none;
  transition: color var(--transition);
}
.article-breadcrumb a:hover { color: var(--sky); }
.article-breadcrumb span[aria-current] { color: var(--sky); }

.article-header__meta {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.article-header__category {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 999px;
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.3);
  color: var(--sky);
}
.article-header__divider { color: var(--slate-600); }
.article-header__read-time {
  display: flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--slate-500);
}
.article-header__read-time svg { color: var(--sky); }

.article-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; line-height: 1.2;
  color: var(--white); margin-bottom: 1.75rem;
}

.article-header__byline {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.article-author {
  display: flex; align-items: center; gap: 0.875rem;
}
.article-author__avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
}
.article-author__info { display: flex; flex-direction: column; gap: 0.15rem; }
.article-author__name {
  font-family: var(--font-heading); font-size: 0.95rem;
  font-weight: 700; color: var(--white);
}
.article-author__role {
  font-size: 0.75rem; color: var(--slate-500);
}

.article-header__date {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--slate-500);
}
.article-header__date svg { color: var(--sky); }

/* ─── Article Body ────────────────────────────────────────────────────── */
.article-body {
  font-size: 1.0625rem;  /* 17px – optimised for long-form reading */
  line-height: 1.8;
  color: var(--slate-300);
}

/* Lead paragraph */
.article-body .article-lead {
  font-size: 1.15rem; line-height: 1.75;
  color: var(--slate-200); font-weight: 400;
  margin-bottom: 2rem;
}

/* Headings inside body */
.article-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700; color: var(--white);
  margin-top: 2.75rem; margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.article-body h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  margin-top: 2rem; margin-bottom: 0.75rem;
}

/* Paragraphs */
.article-body p {
  margin-bottom: 1.5rem;
}

/* Blockquote */
.article-blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem 1.5rem 2.25rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(56,189,248,0.04));
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-blockquote p {
  font-size: 1.1rem; font-style: italic; color: var(--slate-200);
  line-height: 1.7; margin-bottom: 0.75rem;
}
.article-blockquote cite {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--sky); font-style: normal;
}

/* Unordered list */
.article-list {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.article-list li {
  position: relative; padding-left: 1.5rem;
  font-size: 1rem; line-height: 1.75; color: var(--slate-300);
}
.article-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.65em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
}
.article-list li strong { color: var(--white); }

/* ─── Article Footer ──────────────────────────────────────────────────── */
.article-footer {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 2rem;
}

/* Tags */
.article-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.625rem;
}
.article-tags__label {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.08em;
}
.article-tags__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Author card */
.article-author-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-mid), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.article-author-card__avatar {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.article-author-card__info { display: flex; flex-direction: column; gap: 0.4rem; }
.article-author-card__name {
  font-family: var(--font-heading); font-size: 1rem;
  font-weight: 700; color: var(--white);
}
.article-author-card__bio {
  font-size: 0.875rem; color: var(--slate-400); line-height: 1.65;
}

/* Back link row */
.article-back {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING – NEW TWO-PLAN LAYOUT (Abonamentowy / Jednorazowa)
═══════════════════════════════════════════════════════════════════════════ */

/* Small uppercase plan type label above the price */
.pricing-plan-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}

/* Price row: big number + inline descriptor side by side */
.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

/* Inline period text next to the big number (replaces block .price-period) */
.price-period-inline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--slate-300);
  line-height: 1.3;
  max-width: 10rem;
}

/* Thin separator line between description and feature list */
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

/* "Brak miesięcznych opłat" accent line */
.price-monthly.accent-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* Arrow icon inside CTA buttons sits inline */
.btn svg {
  flex-shrink: 0;
}

@media (max-width: 767px) {   .article-content p, .article-body p { font-size: 1.0rem; line-height: 1.6; margin-bottom: 1.5rem; }   .article-body blockquote, .article-content .quote-block { margin: 2rem 1rem; padding-left: 1rem; border-left: 3px solid #0056b3; font-style: italic; color: #a0a0a0; }   .quote-author { margin-top: -1rem; margin-bottom: 2rem; text-align: right; font-weight: 600; font-size: 0.9rem; }   .article-body h2, .article-body h3 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; line-height: 1.3; }   .article-nav a { display: inline-block; padding: 0.5rem 0.75rem; margin: 0.25rem; font-size: 0.85rem; } }

/* ═══════════════════════════════════════════════════════════════════════════
   GDPR COOKIE BANNER
   ─────────────────────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  padding: 1.25rem;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
  max-width: 500px;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: 2rem;
    bottom: 2rem;
    right: auto;
  }
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--slate-300);
  line-height: 1.6;
}

.cookie-banner__link {
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.cookie-banner__link:hover {
  color: var(--blue);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-banner__btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
}

.cookie-banner__btn--accept {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}

.cookie-banner__btn--accept:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-1px);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--slate-400);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--slate-200);
  background: rgba(255, 255, 255, 0.05);
}
