/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Kolory z logo – dokładnie */
  --navy:        #0B1C35;
  --navy-dark:   #071224;
  --navy-mid:    #0F2342;
  --gold:        #C4963A;
  --gold-light:  #DDB86A;
  --gold-dim:    rgba(196,150,58,0.15);
  --cream:       #EDE5D5;
  --cream-light: #F5F0E8;
  --cream-dark:  #E0D6C4;
  --white:       #FDFAF4;
  --text-muted:  rgba(237,229,213,0.55);
  --text-dark:   #0B1C35;
  --border-gold: rgba(196,150,58,0.35);
  /* Czcionki jak w logo */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', 'DM Sans', system-ui, sans-serif;
  --transition:   0.3s ease;
  --shadow-gold:  0 4px 32px rgba(196,150,58,0.15);
  --shadow-navy:  0 8px 40px rgba(7,18,36,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream-light);
  overflow-x: hidden;
}

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

/* ─── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,18,36,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 40px;
  display: block;
  width: auto;
  transition: opacity var(--transition);
}

.nav__logo:hover .nav__logo-img { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--gold); }

.nav__cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 500 !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background var(--transition) !important;
}

.nav__cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy-dark) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(28,178,142,0.04) 0%, transparent 50%);
}

.hero__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero__tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 460px;
  font-weight: 300;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-gold);
}

.btn--outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.hero__visual {
  position: relative;
}

.hero__chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}

.hero__chart-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero__chart-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  font-weight: 500;
}

.hero__chart-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(28,178,142,0.15);
  color: var(--green);
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 2px;
  margin-top: 4px;
}

.hero__chart-svg {
  width: 100%;
  height: 120px;
  margin-top: 1.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 1px;
  background: var(--border-gold);
}

.hero__stat {
  background: rgba(255,255,255,0.03);
  padding: 1.2rem 1.5rem;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 500;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTION BASE ────────────────────────────────────────────── */
section { padding: 6rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-title--light { color: var(--white); }
.section-title--dark  { color: var(--navy); }

.section-sub {
  font-size: 1rem;
  color: #666;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

.section-sub--light { color: var(--text-muted); }

/* ─── STATS BAR ───────────────────────────────────────────────── */
.statsbar {
  background: var(--navy);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.statsbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.statsbar__item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--border-gold);
}

.statsbar__item:last-child { border-right: none; }

.statsbar__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.statsbar__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── SERVICES ────────────────────────────────────────────────── */
.services { background: var(--cream); }

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid var(--gold);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-navy); }
.service-card:hover::before { transform: translateY(0); }
.service-card:hover .service-card__icon { background: var(--gold-dim); }
.service-card:hover .service-card__num,
.service-card:hover .service-card__title,
.service-card:hover .service-card__text,
.service-card:hover .service-card__link { color: var(--white); }
.service-card:hover .service-card__icon svg { stroke: var(--gold); }

.service-card > * { position: relative; z-index: 1; }

.service-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.service-card__icon {
  width: 48px;
  height: 40px;
  display: block;
  background: var(--cream-dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.service-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

.service-card__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

/* ─── HOW IT WORKS ────────────────────────────────────────────── */
.howto {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.howto::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.howto__header { margin-bottom: 4rem; }

.howto__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.howto__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold), var(--border-gold), transparent);
}

.howto__step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.howto__step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.howto__step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.howto__step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── PRICING ─────────────────────────────────────────────────── */
.pricing { background: var(--cream-light); }

.pricing__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing__header .section-sub {
  margin: 0 auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.pricing__note {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-top: 2rem;
  font-style: italic;
}

.pricing-card__from {
  font-size: 0.85rem;
  color: var(--gold);
  margin-right: 4px;
  font-family: var(--font-body);
  font-weight: 400;
}

/* Badges */
.cta-section__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-section__badges span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.pricing-card--featured {
  background: var(--navy);
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-navy);
  position: relative;
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px;
}

.pricing-card__top {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-card--featured .pricing-card__top {
  border-bottom-color: var(--border-gold);
}

.pricing-card__name {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.5rem;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount { color: var(--white); }

.pricing-card__currency {
  font-size: 1.2rem;
  color: var(--gold);
  font-family: var(--font-display);
}

.pricing-card__period {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.75rem;
}

.pricing-card--featured .pricing-card__period { color: var(--text-muted); }

.pricing-card__desc {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.pricing-card--featured .pricing-card__desc { color: var(--text-muted); }

.pricing-card__features {
  padding: 1.5rem 2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.5;
}

.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.75); }

.pricing-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpolyline points='2,5 4,7 8,3' fill='none' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}

.pricing-card__footer {
  padding: 1.5rem 2rem 2rem;
}

.pricing-card__cta {
  display: block;
  text-align: center;
  padding: 13px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: all var(--transition);
  border: 1px solid var(--border-gold);
  color: var(--navy);
}

.pricing-card__cta:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pricing-card--featured .pricing-card__cta {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.pricing-card--featured .pricing-card__cta:hover {
  background: var(--gold-light);
}

/* ─── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  padding: 2rem;
  border-radius: 2px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* ─── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.cta-section__inner { position: relative; z-index: 1; }

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-section__title em {
  color: var(--gold);
  font-style: italic;
}

.cta-section__sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-section__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-gold);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-gold);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer__brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  font-weight: 300;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--gold); }

/* ─── ANIMATIONS ──────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .pricing__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .howto__steps { grid-template-columns: 1fr; }
  .howto__steps::before { display: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__grid--4 { grid-template-columns: 1fr 1fr; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .statsbar__inner { grid-template-columns: 1fr 1fr; }
  .statsbar__item { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .statsbar__item:nth-child(odd) { border-right: 1px solid var(--border-gold); }
  .services__header { grid-template-columns: 1fr; gap: 1rem; }
  .services__grid { grid-template-columns: 1fr; }
  .pricing__grid--4 { grid-template-columns: 1fr; }
  .cta-section__badges { flex-direction: column; align-items: center; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  section { padding: 4rem 1.5rem; }
}
