:root {
  --navy:        #0d2a45;
  --navy-light:  #1a3a5c;
  --orange:      #f5a623;
  --orange-light:#f7bc57;
  --sky:         #b8dff0;
  --sky-light:   #d9eef8;
  --white:       #ffffff;
  --gray:        #f4f7fa;
  --text:        #1a2a3a;
  --text-light:  #5a7089;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  height: 110px;
  background: rgba(13, 42, 69, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,223,240,0.12);
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(13, 42, 69, 0.99);
  height: 90px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 88px; width: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.2;
}
.nav-logo-text span { color: var(--orange); display: block; font-size: 0.65rem; letter-spacing: 0.2em; font-family: 'DM Sans', sans-serif; font-weight: 500; text-transform: uppercase; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--orange);
  color: var(--navy) !important;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
}

/* ---- HERO ---- */
#home {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: 80px 6vw 0;
}
.hero-parallax-bg {
  position: absolute;
  inset: -20% 0;
  background: var(--navy) url("/img/hero-2.jpg") right center / cover no-repeat;
  animation: heroSlideIn 1.2s ease-out both;
  will-change: transform;
  z-index: 0;
}
.hero-bg-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(184,223,240,0.08) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-dots {
  position: absolute;
  top: 120px; right: 10%;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0.4;
  z-index: 2;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sky);
  display: block;
}
.hero-dots span:nth-child(2) { margin-left: 14px; width: 6px; height: 6px; }
.hero-dots span:nth-child(3) { margin-left: 6px; width: 5px; height: 5px; }

.hero-content {
  flex: 1;
  max-width: 560px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-badge::before { content: '🐟'; font-size: 0.9rem; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 900;
}
h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--navy);
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(245,166,35,0.35);
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,166,35,0.45); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--sky); color: var(--sky); background: rgba(184,223,240,0.07); }

.hero-stats {
  display: flex; gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  z-index: 2;
  animation: fadeIn 1.2s ease both 0.3s;
}
.hero-fish-wrap {
  position: relative;
  height: auto;
}
.hero-circle {
  display: none;
}
.hero-circle-2 {
  display: none;
}
.hero-logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3;
  pointer-events: none;
  animation: fadeIn 1.2s ease both 0.4s;
  will-change: transform;
}
.hero-logo-center img {
  width: clamp(200px, 22vw, 340px);
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--orange);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  background: var(--white);
}
.hero-logo-big {
  display: none;
}

/* ---- WAVE DIVIDER ---- */
.wave-divider svg { display: block; }

/* ---- ABOUT ---- */
#o-nas {
  padding: 100px 6vw;
  background: var(--white);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
h2 span { color: var(--orange); font-weight: 900; }
.benefits-text span { color: var(--orange); font-weight: 700; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px 24px 80px 24px;
  display: block;
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--sky) 50%, var(--navy-light) 100%);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px 24px 80px 24px;
  background: linear-gradient(135deg, #e8f4fc 0%, var(--sky) 50%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(245,166,35,0.1), transparent 60%);
}
.about-accent-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--navy);
  border-radius: 20px;
  padding: 24px 28px;
  color: white;
  box-shadow: 0 16px 50px rgba(13,42,69,0.3);
}
.about-accent-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--orange);
  font-weight: 900;
  line-height: 1;
}
.about-accent-text { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-size: 1.02rem; }
.about-gallery {
  margin: 64px 0 16px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.about-gallery-item {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  background: var(--gray);
  border: 2px solid transparent;
  transition: border-color 0.25s ease;
}
.about-gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.about-gallery-item:hover .about-gallery-img {
  transform: scale(1.05);
}
.about-gallery-item:hover {
  border-color: var(--orange);
}
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 64px; }
.about-feature {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem; font-weight: 500;
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---- OFERTA ---- */
#oferta {
  padding: 100px 6vw;
  background: var(--gray);
  position: relative;
}
.section-header { text-align: center; margin-bottom: 60px; }
.offer-categories {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0;
}
.offer-categories li {
  background: var(--white);
  border: 1px solid rgba(13,42,69,0.1);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}
.offer-fresh {
  margin-bottom: 40px;
}
.offer-fresh-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 21 / 7;
  min-height: 180px;
}
.offer-fresh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.offer-fresh-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(13,42,69,0.78) 0%, transparent 55%);
}
.offer-fresh-title h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 700;
  margin: 0;
}
.product-price-ask {
  font-size: 0.95rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
  color: var(--text-light) !important;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(13,42,69,0.12);
}
.product-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.product-img-photo {
  padding: 0;
  background: #eef3f7;
}
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.product-card:hover .product-photo {
  transform: scale(1.05);
}
.product-img-1 { background: linear-gradient(135deg, #e8f4fc, #b8dff0); }
.product-img-2 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.product-img-3 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.product-img-4 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.product-img-5 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.product-img-6 { background: linear-gradient(135deg, #e0f2f1, #b2dfdb); }
.product-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--orange);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-body { padding: 22px 24px 26px; }
.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}
.product-body p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
}
.product-price span { font-size: 0.75rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.btn-add {
  background: var(--navy);
  color: var(--white);
  border: none;
  width: 38px; height: 38px;
  border-radius: 12px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.btn-add:hover { background: var(--orange); color: var(--navy); transform: scale(1.1); }

/* ---- WHY US ---- */
.why-us {
  padding: 80px 6vw;
  background: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,223,240,0.12);
  transition: background 0.3s, border-color 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(245,166,35,0.3); }
.why-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}
.why-card p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ---- BENEFITS ---- */
.benefits-section {
  padding: 80px 6vw 60px;
  background: var(--white);
  background-image:
    linear-gradient(
      to right,
      rgba(255,255,255,0.4) 0%,
      rgba(255,255,255,0.7) 50%,
      rgba(255,255,255,1) 100%
    ),
    url("/img/zdrowie-01.jpg");
  background-size: cover;
  background-position: left center;
}
.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.benefits-left h2 {
  white-space: pre-line;
}
.benefits-list {
  list-style: none;
  margin: 24px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.benefit-icon {
  color: #ffb300;
  margin-top: 3px;
}
.benefits-cta {
  margin-top: 8px;
  display: inline-block;
}
.benefits-right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 24px;
}
.benefits-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
}
.benefits-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(13,42,69,0.18);
}
.benefits-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ---- CONTACT ---- */
#kontakt {
  padding: 100px 6vw;
  background-color: var(--white);
  background-image:
    linear-gradient(
      to right,
      rgba(255,255,255,0.8) 0%,
      rgba(255,255,255,0.8) 70%,
      rgba(255,255,255,1) 100%
    ),
    url("/img/hero-1.jpg");
  background-size: auto, contain;
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, left bottom;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.contact-info h2 { margin-bottom: 4px; }
.contact-intro { color: var(--text-light); line-height: 1.8; margin: 24px 0 32px; }
.contact-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--text);
}
.contact-details-wrap {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
.info-display {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
}
.info-display-block {
  min-width: 0;
  text-align: center;
}
.info-display-block--wide {
  grid-column: span 2;
}
.info-display-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
  color: var(--text-light);
}
.info-display-label::before,
.info-display-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.info-display-label span {
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
}
.info-display-block--wide .info-display-label span {
  font-size: 0.81rem;
}
.info-display-value {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  color: var(--navy);
}
.info-display-block--wide .info-display-value {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
}
.info-display-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.info-display-value a:hover {
  color: var(--orange);
}
.info-display--dark .info-display-label {
  color: rgba(255,255,255,0.55);
}
.info-display--dark .info-display-label::before,
.info-display--dark .info-display-label::after {
  opacity: 0.3;
}
.info-display--dark .info-display-value,
.info-display--dark .info-display-value a {
  color: var(--white);
}
.info-display--dark .info-display-value a:hover {
  color: var(--orange);
}
.contact-form {
  background: var(--gray);
  border-radius: 28px;
  padding: 40px;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 700;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(13,42,69,0.12);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.btn-submit:hover { background: var(--orange); color: var(--navy); transform: translateY(-1px); }

.flash-success,
.flash-error {
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.flash-success {
  background: rgba(76, 175, 80, 0.12);
  color: #1b5e20;
}
.flash-error {
  background: rgba(244, 67, 54, 0.12);
  color: #b71c1c;
}

/* ---- FOOTER ---- */
footer {
  background: #07192a;
  padding: 60px 6vw 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1.25fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col-contact {
  min-width: 0;
}
.footer-col-contact .contact-details-wrap {
  max-width: 100%;
}
.footer-col-contact .info-display {
  gap: 22px 29px;
}
.footer-col-contact .info-display-label span {
  font-size: 0.65rem;
}
.footer-col-contact .info-display-value {
  font-size: clamp(0.92rem, 1.52vw, 1.16rem);
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 16px;
}
.footer-logo img {
  height: 48px; width: 48px;
  border-radius: 50%;
  border: 2px solid var(--orange);
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.2;
}
.footer-logo-text span {
  color: var(--orange); display: block;
  font-size: 0.65rem; letter-spacing: 0.2em;
  font-family: 'DM Sans', sans-serif; font-weight: 500; text-transform: uppercase;
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--white); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 0.9rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 0.9; }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes heroSlideIn {
  from {
    background-position: calc(120% + 50px) center;
  }
  to {
    background-position: right center;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    flex-direction: column;
    gap: 16px;
    background: rgba(13, 42, 69, 0.98);
    padding: 16px 24px 24px;
    border-bottom-left-radius: 20px;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  #home { flex-direction: column; padding-top: 100px; text-align: center; }
  .hero-logo-center {
    position: static;
    transform: none;
    margin: 0 auto 32px;
  }
  .hero-logo-center img {
    width: min(220px, 60vw);
  }
  .hero-content { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { margin-top: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-accent-card { right: 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .benefits-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

