﻿/* ---------------------------------- */
/* ----- 1. DESIGN SYSTEM & SETUP ----- */
/* ---------------------------------- */
:root{
  --bg:#0B0D0F;
  --surface:#101419;
  --ink:#E7EAEE;
  --muted:#A2ABB5;
  --line:rgba(231,234,238,0.10);
  --line-strong:rgba(231,234,238,0.18);
  --accent:#FF6A00;
  --accent-ink:#0B0D0F;
  --shadow:0px 1px 2px rgba(0,0,0,0.08), 0px 8px 16px rgba(0,0,0,0.05);
  --radius-xl:16px;
  --radius-lg:12px;
  --radius-md:10px;
  --radius-sm:8px;
  --easing:cubic-bezier(0.645, 0.045, 0.355, 1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  line-height:1.7;
  letter-spacing:0.01em;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
a{color:inherit;text-decoration:none}
img, svg{max-width:100%;display:block}
.wrap{width:100%;max-width:1160px;margin:0 auto;padding:0 20px}
.highlight {color: var(--accent); font-weight: 700;}

/* ---------------------------------- */
/* ----- 2. REUSABLE COMPONENTS ----- */
/* ---------------------------------- */
section { padding: 80px 0; }
.section-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
}
.section-lead {
  color: var(--muted);
  margin: 0 auto 48px;
  max-width: 65ch;
  text-align: center;
  font-size: 1.1rem;
}
.cta{
  display: inline-block;
  background:var(--accent);color:var(--accent-ink);padding:14px 28px;border-radius:var(--radius-lg);
  font-weight:700;letter-spacing:0.02em;box-shadow:var(--shadow);
  transition:transform .4s var(--easing), box-shadow .3s ease-in-out;
  border: 1px solid rgba(0,0,0,0.15);
  width: 100%;
  text-align: center;
}
.cta:hover{transform:translateY(-2px); box-shadow: 0px 4px 12px rgba(255,106,0,0.25);}
.cta:active{transform:translateY(0)}
.cta.pulsating { animation: pulse 2.2s infinite ease-in-out; }
@keyframes pulse {
  0%, 100% { box-shadow: var(--shadow), 0 0 0 0px rgba(255,106,0,0.3); }
  50% { box-shadow: var(--shadow), 0 0 0 6px rgba(255,106,0,0); }
}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:24px;
  box-shadow:var(--shadow);
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 50%), var(--surface);
  transition: transform .4s var(--easing), border-color .25s var(--easing), box-shadow .3s var(--easing);
}
.card:hover{
  transform:translateY(-4px);
  border-color:var(--line-strong);
}

/* Fade-in Animation on Scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--easing), transform 0.6s var(--easing);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-side-visual{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:45%;
  background-color:rgba(11,13,15,0.6);
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .45s var(--easing);
  pointer-events:none;
}
.section-side-visual.is-loaded{
  opacity:.95;
}
/* ---------------------------------- */
/* ----- 3. HEADER & NAVIGATION ----- */
/* ---------------------------------- */
header{
  position:sticky; top:0; z-index:500;
  background:transparent;
  border-bottom:1px solid transparent;
  padding: 14px 0;
  transition: background .3s var(--easing), border-color .3s var(--easing), backdrop-filter .3s var(--easing);
}
header.scrolled {
  background:rgba(11,13,15,0.7);
  backdrop-filter:saturate(120%) blur(8px);
  border-bottom-color:var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;}
.brand{display:flex;gap:12px;align-items:center; font-weight: 800; font-size: 20px;}
.brand .accent{color: var(--accent);}
.nav a.link{padding:8px 10px;border:1px solid transparent;border-radius:8px;transition: color .25s var(--easing);white-space:nowrap}
.nav a.link:hover{color:var(--ink)}
.nav-links { display: flex; align-items: center; gap: 8px; }

/* Hamburger menu (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: all 0.3s var(--easing);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ---------------------------------- */
/* ----- 4. HERO SECTION ----- */
/* ---------------------------------- */
.hero{
  padding: 100px 0 80px 0;
  text-align: center;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(231,234,238,0.03)" stroke-width="0.5"/></pattern><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="url(%23smallGrid)"/><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(231,234,238,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
}
.hero-content { max-width: 800px; margin: 0 auto; }
h1{
  margin:14px 0 10px;font-size:clamp(36px, 5.5vw, 52px);line-height:1.2;letter-spacing:-0.02em;font-weight:800;
}
.hero-subheadline {
    color: var(--accent);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    margin: 20px auto;
}
.sub{ color:var(--muted);max-width:65ch;margin: 0 auto 32px; font-size: 1.1rem; }
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;}

/* ---------------------------------- */
/* ----- 5. LOGOS SECTION ----- */
/* ---------------------------------- */
#logos { padding-top: 0; padding-bottom: 60px; }
.logos-container {
    text-align: center;
}
.logos-title {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    filter: grayscale(100%) brightness(1.5);
}
.logos-grid .placeholder {
    height: 32px;
    width: 120px;
    background-color: var(--surface);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--muted); font-weight:700;
}

/* ---------------------------------- */
/* ----- 6. PROBLEM & SOLUTION ------ */
/* ---------------------------------- */
#problem { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  max-width: 960px; margin: 0 auto;
}
.problem-visual { text-align: center; }
.problem-visual svg { color: var(--accent); opacity: 0.8; }
.problem-text h3 { font-size: 24px; margin: 0 0 12px; }
.problem-text p { color: var(--muted); margin-bottom: 24px; font-size: 1.1rem; }
.problem-text .stat-hook {
    font-style: italic;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
    margin-bottom: 24px !important;
}

/* ---------------------------------- */
/* ----- 7. INSTRUCTOR SECTION ------ */
/* ---------------------------------- */
.instructors-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.instructor-item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.instructor-photo-wrapper {
  text-align: center;
}

.instructor-bio-wrapper {
  text-align: left;
}

.instructor-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 48px auto 0;
}
.instructor-photo { width: 100%; height: auto; border-radius: var(--radius-lg); border: 3px solid var(--line-strong); object-fit: cover; box-shadow: var(--shadow); }
.instructor-bio h3 { font-size: 28px; margin: 0 0 12px; }
.instructor-bio p { color: var(--muted); margin-bottom: 24px; font-size: 1.1rem;}

/* ---------------------------------- */
/* ----- 8. FRAMEWORK SECTION ------- */
/* ---------------------------------- */
#framework { background: var(--surface); }
.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.framework-step {
    text-align: left;
    position: relative;
}
.framework-step h3 { font-size: 20px; }
.framework-step p { color: var(--muted); font-size: 16px; }


/* ---------------------------------- */
/* ----- 9. BENEFITS SECTION -------- */
/* ---------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px; margin: 0 auto;
}
.benefit-card { text-align: left; }
.benefit-card svg { width: 48px; height: 48px; margin-bottom: 16px; color: var(--accent); }
.benefit-card h3 { font-size: 20px; margin: 0 0 8px; }
.benefit-card p { color: var(--muted); margin: 0; font-size: 16px; line-height: 1.7; }

/* ---------------------------------- */
/* ----- 10. PRICING SECTION --------- */
/* ---------------------------------- */
#pricing { background: var(--surface); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: flex-start;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    text-align: left;
}
.pricing-card.recommended {
    border-color: var(--accent);
    transform: scale(1.05);
    position: relative;
}
.pricing-card.recommended:before {
    content: 'NAJPOPULARNIEJSZY';
    position: absolute; top: 18px; right: -45px;
    background: var(--accent); color: var(--accent-ink);
    padding: 4px 40px;
    font-size: 11px; letter-spacing: 0.1em; font-weight: 700;
    transform: rotate(45deg);
    overflow: hidden;
}
.pricing-card .package-name {
  font-size: 18px; font-weight: 700; margin-bottom: 8px;
}
.pricing-card .package-description {
    color: var(--muted); font-size: 15px; min-height: 4.8em;
}
.pricing-card .price {
  font-size: clamp(32px, 4vw, 42px); font-weight: 800;
  margin: 16px 0 4px 0;
}
.pricing-card .price-note { color: var(--muted); margin-bottom: 24px; }
.pricing-card .feature-list {
  list-style: none; padding: 0; margin: 0 0 32px 0;
  display: grid; gap: 12px; text-align: left;
}
.pricing-card .feature-list li { display: flex; align-items: flex-start; gap: 12px; }
.pricing-card .feature-list svg { color: var(--accent); width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }
.pricing-card .cta { margin-top: auto; }

/* ---------------------------------- */
/* ----- 11. GUARANTEE SECTION ------- */
/* ---------------------------------- */
.guarantee-box {
  max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  align-items: center; gap: 32px;
  background: var(--surface);
  padding: 32px; border-radius: var(--radius-xl); border: 1px solid var(--line);
}
.guarantee-box h3 { font-size: 24px; margin: 0 0 8px; }
.guarantee-box p { color: var(--muted); margin: 0; }

/* ---------------------------------- */
/* ----- 12. FAQ SECTION ------------ */
/* ---------------------------------- */
#faq { background: var(--surface); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  transition: transform .3s var(--easing);
  flex-shrink: 0; margin-left: 16px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--easing), padding .4s var(--easing);
}
.faq-answer p {
  color: var(--muted);
  margin: 0;
  padding-bottom: 20px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ---------------------------------- */
/* ----- 13. FINAL CTA & FOOTER ----- */
/* ---------------------------------- */
#final-cta {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 100px 0;
}
.final-cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.final-cta-content .section-title { margin-bottom: 16px; }
.final-cta-content .section-lead { margin-bottom: 32px; }
.lead-magnet { margin-top: 24px; font-size: 15px; }
.lead-magnet a { color: var(--muted); text-decoration: underline; }
.lead-magnet a:hover { color: var(--ink); }

footer{
  border-top:1px solid var(--line);
  padding: 40px 0;
  color:var(--muted);
  font-size:14px;
  text-align: center;
}
.ps-section {
    font-style: italic;
    max-width: 60ch;
    margin: 0 auto;
}

/* ---------------------------------- */
/* ----- 14. RESPONSIVE DESIGN ------ */
/* ---------------------------------- */
@media (max-width: 980px){
  .nav-links .link { display: none; }
  .instructor-grid { grid-template-columns: 1fr; text-align: center; }
  .instructor-photo { margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card.recommended { transform: scale(1); }
  .framework-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px){
  section { padding: 60px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-visual { max-width: 80px; margin: 0 auto 32px; }
  .problem-text { text-align: center; }
  .problem-text .section-title { text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .guarantee-box { grid-template-columns: 1fr; text-align: center; }
  .guarantee-icon { max-width: 60px; margin: 0 auto; }
}

/* Lead Magnet Section */
#lead-magnet { 
  background: var(--bg); 
  padding: 80px 0; 
  position: relative;
  overflow: hidden;
}

#lead-magnet::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,106,0,0.05) 0%, transparent 70%);
  z-index: 0;
}

#lead-magnet .wrap {
  position: relative;
  z-index: 1;
}

#lead-magnet input {
  transition: border-color .25s var(--easing), box-shadow .25s var(--easing);
}

#lead-magnet input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.2);
}

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

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .wrap {
    padding: 0 30px;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  /* Global */
  .wrap {
    padding: 0 20px;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .section-lead {
    font-size: 16px;
    margin-bottom: 32px;
  }

  /* Header/Navigation - Hamburger Menu */
  .hamburger {
    display: flex !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    padding: 80px 20px 20px 20px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
    transition: right 0.3s var(--easing);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links .link {
    display: block !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 16px !important;
    color: var(--ink) !important;
    border: none !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .nav-links .link:hover {
    background: rgba(255,106,0,0.05);
  }

  .nav-links .cta {
    display: block !important;
    margin-top: 20px;
    padding: 14px 24px !important;
    font-size: 16px !important;
    text-align: center;
    border-bottom: none !important;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px !important;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 40px) !important;
  }

  .hero .sub {
    font-size: 18px;
  }

  /* Problem Cards Grid */
  .problem-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Instructors Section - Mobile */
  .instructors-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .instructor-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  .instructor-photo-wrapper {
    text-align: center !important;
  }

  .instructor-photo {
    max-width: 200px !important;
    margin: 0 auto !important;
  }

  .instructor-bio-wrapper {
    text-align: left !important;
  }

  #instructor h3 {
    font-size: 20px !important;
  }

  /* Instructor Grid */
  .instructor-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Framework Grid */
  .framework-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Benefits Grid */
  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Agenda Grid */
  .agenda-grid {
    grid-template-columns: 1fr !important;
  }

  /* Pricing Grid */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* FAQ */
  .faq-container {
    padding: 0 !important;
  }

  .faq-question {
    font-size: 16px !important;
    padding: 16px !important;
  }

  /* Lead Magnet */
  #lead-magnet {
    padding: 60px 0;
  }

  #lead-magnet .guarantee-box {
    padding: 30px 20px;
  }

  #lead-magnet h3 {
    font-size: 24px !important;
  }

  #lead-magnet p {
    font-size: 16px;
  }

  /* CTA Buttons */
  .cta {
    padding: 14px 24px !important;
    font-size: 16px !important;
  }

  /* Footer */
  footer .ps-section {
    font-size: 16px;
    padding: 0 10px;
  }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }

  section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-lead {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 26px !important;
  }

  .cta {
    padding: 12px 20px !important;
    font-size: 15px !important;
  }

  /* Pricing cards */
  .price {
    font-size: 48px !important;
  }

  .package-name {
    font-size: 20px !important;
  }
}

/* ========================================= */
/* ===== INLINE STYLES OVERRIDE ========== */
/* ========================================= */

/* AI Box - 2 column grid to 1 column on mobile */
@media (max-width: 768px) {
  [style*="display: grid"][style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  [style*="display: flex"][style*="align-items: center"][style*="gap: 16px"] {
    flex-direction: column !important;
    text-align: center !important;
  }

  /* "Co zabierzesz" section - image + text */
  [style*="display: grid"][style*="grid-template-columns: 45% 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Hide background images on mobile for sections with side visuals */
  .section-side-visual {
    display: none !important;
  }

  /* Fix sections with side visuals - complete mobile rewrite */

  /* Hide gradient overlays */
  [style*="position: absolute"][style*="width: 45%"][style*="background: linear-gradient"] {
    display: none !important;
  }

  /* Hide "100% Zwrot" badge on mobile */
  #guarantee [style*="position: absolute"][style*="top: 40px"] {
    display: none !important;
  }

  /* Fix grid layout - convert to single column */
  [style*="grid-template-columns: 45% 55%"] {
    display: block !important;
    min-height: auto !important;
  }

  /* Hide empty left column (for image background) */
  [style*="grid-template-columns: 45% 55%"] > div:first-child {
    display: none !important;
  }

  /* Fix content padding */
  [style*="grid-template-columns: 45% 55%"] > div:last-child {
    padding: 32px 20px !important;
  }

  /* Specific fixes for headings and text */
  [style*="font-size: 36px"][style*="font-weight: 800"] {
    font-size: 26px !important;
  }

  [style*="font-size: 18px"][style*="line-height: 1.7"],
  [style*="font-size: 18px"][style*="line-height: 1.6"] {
    font-size: 16px !important;
  }

  /* Icon boxes in these sections */
  [style*="min-width: 40px"][style*="height: 40px"] {
    min-width: 36px !important;
    height: 36px !important;
  }

  [style*="width: 70px"][style*="height: 70px"] {
    width: 56px !important;
    height: 56px !important;
  }

  /* Agenda cards with border-left */
  [style*="border-left: 3px solid"] {
    padding: 12px !important;
  }

  /* Large padding boxes */
  [style*="padding: 64px"] {
    padding: 32px 20px !important;
  }

  [style*="padding: 48px"] {
    padding: 24px 20px !important;
  }

  [style*="padding: 40px"] {
    padding: 24px 16px !important;
  }

  /* Font sizes in inline styles */
  [style*="font-size: 36px"] {
    font-size: 24px !important;
  }

  [style*="font-size: 32px"] {
    font-size: 22px !important;
  }

  [style*="font-size: 24px"] h3 {
    font-size: 20px !important;
  }

  /* Icon boxes */
  [style*="min-width: 64px"][style*="height: 64px"] {
    min-width: 56px !important;
    height: 56px !important;
  }

  [style*="min-width: 80px"][style*="height: 80px"] {
    min-width: 64px !important;
    height: 64px !important;
  }

  /* Guarantee section with background image */
  #guarantee [style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
  }
}

/* Tablet specific overrides */
@media (min-width: 769px) and (max-width: 1024px) {
  [style*="display: grid"][style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  [style*="padding: 64px"] {
    padding: 48px 32px !important;
  }
}

/* ---------------------------------- */
/* ----- COOKIE CONSENT POPUP ----- */
/* ---------------------------------- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px;
  background: rgba(11, 13, 15, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s var(--easing);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-consent.hiding {
  animation: slideDown 0.3s var(--easing) forwards;
}

.cookie-content {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.cookie-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8533 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.cookie-text h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--easing);
  font-family: inherit;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8533 100%);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 106, 0, 0.3);
}

.cookie-link {
  color: var(--muted);
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-link:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-content {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .cookie-icon {
    margin: 0 auto;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }
}


