/* ============================================================
   SOFT-POS.RO — Main Stylesheet
   ============================================================ */

:root {
  --primary: #0d2b6e;
  --primary-light: #1a3f99;
  --accent: #f47c20;
  --accent-dark: #d4690f;
  --green: #27ae60;
  --light: #f5f7fc;
  --white: #ffffff;
  --dark: #12192c;
  --gray: #6b7a99;
  --border: #e0e8f0;
  --shadow: 0 4px 24px rgba(13,43,110,0.10);
  --shadow-lg: 0 8px 40px rgba(13,43,110,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  background: rgba(244,124,32,0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 52px;
}

.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,124,32,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Check list ── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--dark);
}
.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 1px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(13,43,110,0.10);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.35rem;
}
.logo__img {
  height: 56px;
  width: auto;
  display: block;
}
/* Light version shown on dark hero; dark version shown after scroll */
.logo__img--dark { display: none; }
.navbar.scrolled .logo__img--light { display: none; }
.navbar.scrolled .logo__img--dark { display: block; }
.logo__text { color: var(--primary); font-size: 1.35rem; font-weight: 900; }
.logo__text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

.navbar:not(.scrolled) .logo__text { color: var(--white); }
.navbar:not(.scrolled) .logo__text span { color: var(--accent); }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: white; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3f99 50%, #0a1f5c 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg-shapes span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero__bg-shapes span:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero__bg-shapes span:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.hero__bg-shapes span:nth-child(3) { width: 200px; height: 200px; top: 50%; right: 25%; }

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,124,32,0.20);
  border: 1px solid rgba(244,124,32,0.40);
  color: #ffb266;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero__badge .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat__number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}
.stat__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.pos-mockup {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.30);
}

.pos-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pos-mockup__title {
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
}
.pos-mockup__badge {
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}

.pos-mockup__screen {
  background: var(--dark);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.pos-screen-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.83rem;
}
.pos-screen-row:last-child { border-bottom: none; }
.pos-screen-row .name { color: rgba(255,255,255,0.75); }
.pos-screen-row .price { color: var(--accent); font-weight: 700; }
.pos-screen-row .total { color: white; font-weight: 800; font-size: 1rem; }

.pos-mockup__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent);
  border-radius: 10px;
  padding: 12px 16px;
}
.pos-mockup__total span:first-child { color: white; font-weight: 700; font-size: 0.9rem; }
.pos-mockup__total span:last-child { color: white; font-weight: 900; font-size: 1.25rem; }

.pos-mockup__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.pos-btn {
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.pos-btn--card { background: var(--primary-light); color: white; }
.pos-btn--cash { background: var(--green); color: white; }

/* ============================================================
   ABOUT / DE CE NOI
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--light);
}

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

.about__domains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.domain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  cursor: default;
}
.domain-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.domain-card__icon {
  font-size: 1.5rem;
  min-width: 40px;
}
.domain-card__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.about__right { }

.about__feature {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.about__feature-icon {
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}
.about__feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.about__feature-text {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ============================================================
   CATEGORIES / PRODUSE
   ============================================================ */
.categories {
  padding: 100px 0;
  background: var(--white);
}

.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* POS Equipments */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--light) 0%, #e8edf5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.product-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}

.product-card__body { padding: 20px; }
.product-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.product-card__desc {
  font-size: 0.87rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.product-card__features { margin-bottom: 20px; }
.product-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dark);
  padding: 3px 0;
}
.product-card__features li::before {
  content: '▸';
  color: var(--accent);
  font-size: 0.75rem;
}

/* Periferice grid */
.periferice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.peri-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.peri-card:hover {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.peri-card__icon { font-size: 2rem; margin-bottom: 10px; }
.peri-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}

/* Software */
.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.soft-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.soft-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}
.soft-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.soft-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.soft-card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.soft-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3f99 100%);
  position: relative;
  overflow: hidden;
}
.benefits::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.benefits .section-title { color: var(--white); }
.benefits .section-subtitle { color: rgba(255,255,255,0.65); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.benefit-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.benefit-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.benefit-card__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages {
  padding: 100px 0;
  background: var(--light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.pkg-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pkg-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.pkg-card__popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-card__icon { font-size: 2.5rem; margin-bottom: 12px; }
.pkg-card__name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}
.pkg-card__desc {
  font-size: 0.87rem;
  color: var(--gray);
  margin-bottom: 24px;
}
.pkg-card__features {
  flex: 1;
  margin-bottom: 28px;
}
.pkg-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pkg-card__features li:last-child { border-bottom: none; }
.pkg-card__features li .ck {
  color: var(--green);
  font-weight: 800;
  min-width: 16px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 100px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3f99 100%);
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(244,124,32,0.10);
  border-radius: 50%;
}

.cta-box__tag {
  display: inline-block;
  background: rgba(244,124,32,0.25);
  border: 1px solid rgba(244,124,32,0.50);
  color: #ffb266;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-box__title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-box__title em {
  font-style: normal;
  color: var(--accent);
}
.cta-box__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-box__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-box__contact {
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.cta-box__contact a {
  color: rgba(255,255,255,0.80);
  font-size: 0.92rem;
  margin: 0 16px;
  transition: color var(--transition);
}
.cta-box__contact a:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.70);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand .logo { margin-bottom: 16px; }
.footer__brand .logo__text { color: var(--white); }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }

.footer__col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--accent); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer__contact-item .ic { font-size: 1rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer__bottom a { color: rgba(255,255,255,0.50); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--accent); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.50);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.60);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .about .container { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .hero__stats { gap: 20px; }
  .about__domains { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .periferice-grid { grid-template-columns: repeat(2, 1fr); }
}
