/* ============================================================
   CodeScriptum – Web Development Landing Page
   Color Palette: Cyan → Violet → Magenta (modern tech-creative)
   ============================================================ */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  /* Primary palette – tech creative */
  --cyan: #00D4FF;
  --cyan-dark: #00B4D8;
  --violet: #7C3AED;
  --violet-light: #A78BFA;
  --violet-dark: #5B21B6;
  --magenta: #EC4899;
  --magenta-light: #F472B6;
  --indigo: #6366F1;
  --teal: #14B8A6;
  /* Accent */
  --primary: #7C3AED;
  --primary-light: #A78BFA;
  --secondary: #00D4FF;
  --accent: #EC4899;
  /* Darks */
  --dark-900: #030712;
  --dark-800: #0F172A;
  --dark-700: #1E293B;
  --dark-600: #334155;
  /* Lights */
  --light-100: #F8FAFC;
  --light-200: #F1F5F9;
  --light-300: #E2E8F0;
  /* Text */
  --white: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  /* Gradients */
  --grad-hero: linear-gradient(135deg, #030712 0%, #0C0A1F 40%, #120A20 100%);
  --grad-primary: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 50%, var(--magenta) 100%);
  --grad-glow: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  --grad-card: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(0,212,255,0.05) 100%);
  --grad-dark-sec: linear-gradient(180deg, var(--dark-800) 0%, var(--dark-900) 100%);
  --grad-showcase: linear-gradient(135deg, #0C0A1F 0%, #1A0A2E 50%, #0D1117 100%);
  /* Layout */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font);
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--ease); }
img { max-width: 100%; display: block; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 60%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: all var(--ease);
  text-align: center;
}
.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.4); }
.btn--glow { box-shadow: 0 4px 20px rgba(124,58,237,0.3); }
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--outline {
  background: transparent;
  border: 2px solid var(--violet);
  color: var(--violet);
}
.btn--outline:hover { background: var(--violet); color: var(--white); }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
/* ── Header / Nav inherited from global.css ─────────────────── */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--grad-hero);
  display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
@media (max-width: 768px)
{
  .hero 
  {
    padding:90px 0 40px;
  }
}
.hero__mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(0,212,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 80% 30%, rgba(124,58,237,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 60% 80%, rgba(236,72,153,0.1) 0%, transparent 70%);
}
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 { width: 400px; height: 400px; top: 10%; left: -5%; background: rgba(0,212,255,0.15); }
.hero__orb--2 { width: 350px; height: 350px; bottom: 10%; right: -5%; background: rgba(124,58,237,0.12); animation-delay: -3s; }
.hero__orb--3 { width: 250px; height: 250px; top: 50%; left: 40%; background: rgba(236,72,153,0.1); animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero__code-rain {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.15; pointer-events: none;
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero__badge-top {
  display: inline-flex; align-items: center;
  padding: 8px 16px; border-radius: 50px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan); font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: 20px;
}
.hero__title-small {
  font-size: 0.5em; font-weight: 500;
  color: var(--text-light); display: block; margin-top: 8px;
}
.hero__subtitle {
  font-size: 1.1rem; color: var(--text-light);
  line-height: 1.7; margin-bottom: 32px; max-width: 540px;
}

/* Hero stats */
.hero__stats { display: flex; gap: 32px; margin-bottom: 36px; }
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }

/* Hero actions */
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

/* Tech logos */
.hero__platforms {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__platforms span { font-size: 0.8rem; color: var(--text-light); }
.hero__platform-logos {
  display: flex; gap: 14px; align-items: center;
}
.hero__platform-logos img {
  height: 22px; opacity: 0.6;
  transition: opacity 0.3s;
  filter: brightness(1.2);
}
.hero__platform-logos img:hover { opacity: 1; }

/* Hero canvas – animated website builder */
.hero__visual { display: flex; justify-content: center; align-items: center; }
@media (max-width: 768px)
{
  .hero__visual 
  {
    display:none;
  }
}
.hero__canvas {
  width: 100%; max-width: 620px; height: 580px;
  border-radius: var(--radius);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section--dark { background: var(--grad-dark-sec); color: var(--white); }
.section--light { background: var(--light-100); }
.section--gradient {
  background: linear-gradient(135deg, var(--dark-900) 0%, #1A0A2E 40%, var(--dark-800) 100%);
  color: var(--white);
}
.section--showcase {
  background: var(--grad-showcase);
  color: var(--white);
  position: relative; overflow: hidden;
}
.section--contact {
  background: linear-gradient(135deg, var(--dark-900) 0%, #1A0A2E 50%, var(--dark-800) 100%);
  color: var(--white);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; text-align: center;
  margin-bottom: 12px;
}
.section__title--light { color: var(--white); }
.section__subtitle {
  text-align: center; color: var(--text-muted);
  font-size: 1.05rem; max-width: 600px;
  margin: 0 auto 60px;
}
.section__subtitle--light { color: var(--text-light); }

/* ============================================================
   OFERTA – Offer Cards Grid
   ============================================================ */
.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--ease);
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--ease);
}
.offer-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.3); }
.offer-card:hover::before { opacity: 1; }
.offer-card--featured {
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.06);
}
.offer-card--featured::before { opacity: 1; }
.offer-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--grad-primary);
  color: var(--white); padding: 4px 14px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.offer-card__icon-wrap {
  position: relative;
  width: 60px; height: 60px;
  margin-bottom: 20px;
}
.offer-card__icon {
  position: relative; z-index: 1;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.15);
  border-radius: var(--radius-sm);
  color: var(--cyan);
  font-size: 1.5rem;
  transition: all var(--ease);
}
.offer-card:hover .offer-card__icon {
  background: rgba(0,212,255,0.2);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.offer-card__glow {
  position: absolute; top: 50%; left: 50%;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(0,212,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity var(--ease);
}
.offer-card:hover .offer-card__glow { opacity: 1; }
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.offer-card p {
  color: var(--text-light); font-size: 0.9rem;
  line-height: 1.6; margin-bottom: 16px;
}
.offer-card__features {
  list-style: none; margin-bottom: 20px;
}
.offer-card__features li {
  color: var(--text-light); font-size: 0.85rem;
  padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.offer-card__features i {
  color: var(--cyan); font-size: 0.75rem;
}
.offer-card__price {
  font-size: 0.95rem; color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.offer-card__price strong {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--cyan);
}

/* ============================================================
   SHOWCASE / REALIZACJE
   ============================================================ */
.showcase__particles {
  position: absolute; inset: 0; z-index: 0;
}
.showcase__content { position: relative; z-index: 1; }

.showcase__chart-wrapper {
  margin: 0 auto 3rem;
  max-width: 900px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.showcase__chart-canvas {
  width: 100%; height: 280px; display: block;
}

.showcase__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.showcase-card {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 20px;
  transition: all var(--ease);
}
.showcase-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.3); }
.showcase-card__icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,212,255,0.1);
  border-radius: 50%; font-size: 1.3rem;
  color: var(--cyan);
}
.showcase-card__number {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.showcase-card__label {
  font-weight: 600; font-size: 0.95rem;
  color: var(--white); margin: 4px 0 8px;
}
.showcase-card__desc {
  color: var(--text-light); font-size: 0.85rem;
  line-height: 1.5;
}

/* ============================================================
   DLACZEGO MY – WHY Section
   ============================================================ */
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-item {
  background: var(--white);
  border: 1px solid var(--light-300);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--ease);
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.2);
}
.why-item__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(124,58,237,0.1) 100%);
  border-radius: var(--radius-sm);
  font-size: 1.3rem; color: var(--violet);
  margin-bottom: 18px;
  transition: all var(--ease);
}
.why-item:hover .why-item__icon {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.why-item p {
  color: var(--text-muted); font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   TECHNOLOGIE
   ============================================================ */
.tech__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tech-category {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--ease);
}
.tech-category:hover { border-color: rgba(0,212,255,0.2); }
.tech-category h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.tech-category h3 i { color: var(--cyan); }
.tech-category__items {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tech-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  padding: 12px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-xs);
  transition: all var(--ease);
}
.tech-item:hover {
  background: rgba(0,212,255,0.08);
  transform: translateY(-3px);
}
.tech-item img { height: 28px; width: 28px; object-fit: contain; }
.tech-item span { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

/* ============================================================
   PROCES – Timeline
   ============================================================ */
.process__particles { position: absolute; inset: 0; z-index: 0; }
.process__content { position: relative; z-index: 1; }

.process__timeline {
  position: relative;
  max-width: 700px; margin: 0 auto;
  padding-left: 60px;
}
.process__line {
  position: absolute; left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--violet), var(--magenta));
  opacity: 0.3;
}
.process-step {
  position: relative; margin-bottom: 48px;
  display: flex; align-items: flex-start; gap: 20px;
}
.process-step:last-child { margin-bottom: 0; }
.process-step__marker {
  position: absolute; left: -60px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-900);
  border: 2px solid var(--violet);
  border-radius: 50%;
  z-index: 2;
}
.process-step__marker span {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700; color: var(--cyan);
}
.process-step__body {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  flex: 1;
  transition: all var(--ease);
}
.process-step:hover .process-step__body {
  border-color: rgba(124,58,237,0.3);
  transform: translateX(6px);
}
.process-step__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,212,255,0.1);
  border-radius: var(--radius-xs);
  color: var(--cyan); font-size: 1.1rem;
  margin-bottom: 12px;
}
.process-step__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.process-step__body p {
  color: var(--text-light); font-size: 0.9rem;
  line-height: 1.6;
}
.process-step__cta { text-align: center; margin-top: 48px; position: relative; z-index: 1; }

/* ============================================================
   CENNIK – Pricing Cards
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--light-300);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: all var(--ease);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.1);
}
.pricing-card--popular {
  border-color: var(--violet);
  box-shadow: 0 8px 30px rgba(124,58,237,0.15);
  position: relative;
  transform: scale(1.04);
}
.pricing-card--popular:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card__badge {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary); color: var(--white);
  padding: 6px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.8rem; font-weight: 700;
}
.pricing-card__header {
  text-align: center;
  padding: 40px 28px 24px;
  border-bottom: 1px solid var(--light-300);
}
.pricing-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.pricing-card__price {
  font-size: 0.95rem; color: var(--text-muted);
}
.pricing-card__price strong {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--violet);
}
.pricing-card__header p {
  font-size: 0.85rem; color: var(--text-muted); margin-top: 4px;
}
.pricing-card__features {
  list-style: none;
  padding: 28px;
}
.pricing-card__features li {
  padding: 6px 0; font-size: 0.9rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.pricing-card__features i { color: var(--violet); font-size: 0.85rem; }
.pricing-card .btn {
  margin: 0 28px 28px; width: calc(100% - 56px);
  justify-content: center;
}

.pricing__note {
  text-align: center; margin-top: 40px;
  color: var(--text-muted); font-size: 0.9rem;
}
.pricing__note i { color: var(--violet); margin-right: 6px; }
.pricing__note a { color: var(--violet); font-weight: 600; text-decoration: underline; }
.pricing__note a:hover { color: var(--magenta); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,0.2); }
.testimonial-card__stars { margin-bottom: 16px; }
.testimonial-card__stars i { color: var(--cyan); font-size: 0.9rem; margin-right: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.15);
  border-radius: 50%; color: var(--violet); font-size: 1rem;
}
.testimonial-card__author strong { color: var(--white); font-size: 0.9rem; display: block; }
.testimonial-card__author span { color: var(--text-light); font-size: 0.8rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light-300);
  overflow: hidden;
}
.faq-item__question {
  width: 100%; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  color: var(--text); text-align: left;
  transition: color var(--ease);
}
.faq-item__question:hover { color: var(--violet); }
.faq-item__icon {
  color: var(--violet);
  transition: transform 0.3s;
  font-size: 0.9rem;
}
.faq-item--active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item--active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-item__answer p {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   KONTAKT / CONTACT FORM
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px; align-items: start;
}
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.contact-form__group { display: flex; flex-direction: column; gap: 6px; }
.contact-form__group label {
  font-size: 0.85rem; font-weight: 600; color: var(--text-light);
}
.contact-form__group label small { color: var(--text-light); font-weight: 400; }
.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  padding: 12px 16px; border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder { color: var(--text-light); opacity: 0.5; }
.contact-form__group select option { background: var(--dark-800); color: var(--white); }
.contact-form__group textarea { resize: vertical; min-height: 100px; }
.contact-form__error {
  font-size: 0.8rem; color: var(--magenta); min-height: 1.2em;
}
.contact-form__group--error input,
.contact-form__group--error select,
.contact-form__group--error textarea { border-color: var(--magenta); }

/* RODO checkbox */
.contact-form__rodo { margin: 16px 0 20px; }
.contact-form__checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 0.8rem;
}
.contact-form__checkbox input { display: none; }
.contact-form__checkmark {
  width: 20px; height: 20px; min-width: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px; margin-top: 2px;
  position: relative;
  transition: all var(--ease);
}
.contact-form__checkbox input:checked + .contact-form__checkmark {
  background: var(--violet); border-color: var(--violet);
}
.contact-form__checkbox input:checked + .contact-form__checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem; color: var(--white);
}
.contact-form__checkbox-text { color: var(--text-light); line-height: 1.5; }
.contact-form__checkbox-text a { color: var(--cyan); text-decoration: underline; }

/* Toast */
.form-toast {
  position: fixed; top: 24px; right: 24px;
  background: var(--dark-800);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 10000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-toast--show { transform: translateX(0); }
.form-toast__icon { font-size: 1.5rem; color: var(--cyan); }
.form-toast__content strong { color: var(--white); display: block; }
.form-toast__content p { color: var(--text-light); font-size: 0.85rem; }
.form-toast__close {
  background: none; border: none; color: var(--text-light);
  cursor: pointer; font-size: 1rem; padding: 4px;
}

/* Contact info */
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.contact-info > p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.6; }
.contact-info__list { list-style: none; margin-bottom: 24px; }
.contact-info__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; color: var(--text-light); font-size: 0.95rem;
}
.contact-info__list i { color: var(--cyan); font-size: 1rem; width: 20px; text-align: center; }
.contact-info__list a { color: var(--white); }
.contact-info__list a:hover { color: var(--cyan); }
.contact-info__social {
  display: flex; gap: 12px; margin-bottom: 28px;
}
.contact-info__social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xs);
  color: var(--text-light); font-size: 1.1rem;
  transition: all var(--ease);
}
.contact-info__social a:hover {
  color: var(--white); border-color: var(--violet);
  background: rgba(124,58,237,0.2);
}

/* Badges */
.contact-info__badges { display: flex; gap: 12px; }
.badge-card {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xs);
}
.badge-card i { color: var(--cyan); font-size: 1.1rem; }
.badge-card span { color: var(--text-light); font-size: 0.8rem; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand p { color: var(--text-light); font-size: 0.8rem; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--text-light); font-size: 0.85rem; }
.footer__links a:hover { color: var(--cyan); }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark-800);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner--show { transform: translateY(0); }
.cookie-banner__inner {
  width: 90%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.cookie-banner__text { display: flex; align-items: flex-start; gap: 14px; flex: 1; }
.cookie-banner__icon { font-size: 1.5rem; color: var(--cyan); margin-top: 2px; }
.cookie-banner__text strong { color: var(--white); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.cookie-banner__text p { color: var(--text-light); font-size: 0.8rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 10px 20px; border-radius: var(--radius-xs);
  font-family: var(--font); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--ease);
}
.cookie-banner__btn--accept { background: var(--grad-primary); color: var(--white); }
.cookie-banner__btn--accept:hover { box-shadow: 0 4px 15px rgba(124,58,237,0.4); }
.cookie-banner__btn--reject { background: rgba(255,255,255,0.06); color: var(--text-light); border: 1px solid rgba(255,255,255,0.1); }
.cookie-banner__btn--reject:hover { background: rgba(255,255,255,0.1); }
.cookie-banner__btn--settings { background: none; color: var(--text-light); border: 1px solid rgba(255,255,255,0.1); }
.cookie-banner__btn--settings:hover { border-color: var(--violet); color: var(--violet); }

/* Cookie Modal */
.cookie-modal {
  position: fixed; inset: 0; z-index: 10001;
  display: none; align-items: center; justify-content: center;
}
.cookie-modal--show { display: flex; }
.cookie-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.cookie-modal__panel {
  position: relative; z-index: 1;
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  width: 90%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
}
.cookie-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cookie-modal__header h3 { color: var(--white); font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.cookie-modal__header h3 i { color: var(--cyan); }
.cookie-modal__close {
  background: none; border: none; color: var(--text-light);
  cursor: pointer; font-size: 1.2rem;
}
.cookie-modal__body { padding: 24px 28px; }
.cookie-modal__intro { color: var(--text-light); font-size: 0.85rem; margin-bottom: 20px; line-height: 1.6; }
.cookie-modal__intro a { color: var(--cyan); text-decoration: underline; }
.cookie-modal__category {
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.cookie-modal__cat-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.cookie-modal__cat-header strong { color: var(--white); font-size: 0.9rem; }
.cookie-modal__cat-header span { color: var(--text-light); font-size: 0.75rem; margin-left: 8px; }
.cookie-modal__category > p { color: var(--text-light); font-size: 0.8rem; }

/* Toggle switch */
.cookie-toggle { position: relative; width: 44px; height: 24px; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle__slider {
  position: absolute; inset: 0; cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  transition: 0.3s;
}
.cookie-toggle__slider::after {
  content: ''; position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--violet); }
.cookie-toggle input:checked + .cookie-toggle__slider::after { transform: translateX(20px); }
.cookie-toggle--locked { opacity: 0.5; }
.cookie-toggle--locked .cookie-toggle__slider { cursor: not-allowed; background: var(--violet); }
.cookie-toggle--locked .cookie-toggle__slider::after { transform: translateX(20px); }

.cookie-modal__footer {
  display: flex; gap: 10px; justify-content: flex-end;
  padding: 16px 28px; border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .offer__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .tech__categories { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {

  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__platforms { justify-content: center; flex-wrap: wrap; }
  .hero__canvas { max-width: 100%; height: 350px; }

  .offer__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--popular { transform: none; }
  .pricing-card--popular:hover { transform: translateY(-6px); }
  .testimonials__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }

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

  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }


  .container 
  {
    width:98%;
  }

  .hero__stats 
  {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .showcase__grid { grid-template-columns: 1fr; }
  .tech-category__items { grid-template-columns: repeat(2, 1fr); }
  .contact-info__badges { flex-direction: column; }
}
