/* ============================================================
   NETCONNECT — style.css
   Mobile-first CSS with custom properties
   Breakpoints: 768px (tablet), 1024px (desktop)
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --bg:          #ffffff;
  --bg-alt:      #f0f0f9;
  --primary:     #4338ca;
  --secondary:   #0369a1;
  --gradient:    linear-gradient(135deg, #3730a3 0%, #0369a1 100%);
  --gradient-rev: linear-gradient(135deg, #0369a1 0%, #3730a3 100%);
  --text-dark:   #1a1a2e;
  --text-body:   #54595f;
  --text-muted:  #9ca3af;
  --card-bg:     #ffffff;
  --border:      #e8e8ef;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --radius-card: 16px;
  --radius-btn:  10px;
  --radius-input:10px;
  --radius-img:  12px;
  --transition:  0.3s ease;
  --max-width:   1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
fieldset { border: none; }

/* ---- Utility ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 64px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-sub {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--text-body);
}

/* ---- Typography ---- */
h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
}
h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,0.8); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(67,56,202,0.3);
}
.btn--primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(67,56,202,0.45);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.03);
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in--delay { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
  position: relative;
}
.navbar__logo { flex-shrink: 0; }
.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
}
.logo-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar__nav {
  display: none;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--primary); background: var(--bg-alt); }
.navbar__actions {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
}
.lang-btn {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  color: var(--primary);
  background: rgba(67,56,202,0.08);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 24px;
}
.mobile-nav-link {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 12px;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-link:hover { color: var(--primary); background: var(--bg-alt); }
.mobile-lang {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4338ca 0%, #0369a1 100%);
  background-size: 200% 200%;
  animation: heroGradient 9s ease infinite;
  z-index: 0;
}
@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
}
.hero__content { max-width: 680px; }
.hero__content h1 { color: #fff; margin: 12px 0 20px; }
.hero__content .eyebrow { color: rgba(255,255,255,0.85); }
.hero__sub {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__ctas .btn--primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero__ctas .btn--primary:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero__ctas .btn--outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.hero__ctas .btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Hero Visual / Mockup */
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 360px;
}
.hero__blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.12);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  50%       { border-radius: 30% 70% 40% 60% / 60% 40% 60% 40%; }
}
.hero__card-mockup {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-card);
  padding: 20px;
  position: relative;
  z-index: 1;
}
.mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.mockup-content { display: flex; flex-direction: column; gap: 10px; }
.mockup-line {
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 5px;
  width: 100%;
}
.mockup-line--wide { width: 80%; }
.mockup-line--short { width: 55%; }
.mockup-btn {
  height: 36px;
  background: rgba(255,255,255,0.4);
  border-radius: 8px;
  width: 120px;
  margin-top: 8px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg-alt); }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(67,56,202,0.1), rgba(3,105,161,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.service-card h3 { margin: 0; }
.service-card p { color: var(--text-body); flex: 1; }
.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
}
.service-card__features li svg { color: var(--primary); flex-shrink: 0; }
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-from {
  font-size: 13px;
  color: var(--text-muted);
}
.price-amount {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-card__delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.badge-free {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(67, 56, 202, 0.3);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg); }
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  flex: 1;
  width: 100%;
}
.step__number {
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.step__icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.step h3 { font-size: 18px; }
.step p { font-size: 14px; color: var(--text-body); }
.step__connector {
  width: 2px;
  height: 32px;
  background: var(--gradient);
  margin-left: 44px;
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 0.5s ease;
}
.step__connector.connector-visible {
  transform: scaleY(1);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--bg-alt); }
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.portfolio-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.portfolio-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.portfolio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0;
}
.portfolio-card:hover .portfolio-card__image img {
  transform: scale(1.05);
}
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-card__overlay h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}
.portfolio-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.portfolio-card__live {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition);
}
.portfolio-card__live:hover { background: var(--primary); }
.portfolio-card__body {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-card__body h3 { font-size: 16px; }
.portfolio-card__category {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(67,56,202,0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.case-study {
  background: var(--gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.case-study .section-header h2 { color: #fff; }
.case-study__columns {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.case-col {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-card);
  padding: 32px;
  flex: 1;
}
.case-col__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}
.case-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}
.case-col p { color: rgba(255,255,255,0.85); }
.case-col__arrow {
  display: none;
  font-size: 28px;
  color: rgba(255,255,255,0.5);
  align-self: center;
  flex-shrink: 0;
}
.case-metric {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-metric__number {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.case-metric__label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calculator { background: var(--bg); }
.calculator__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calculator__form { display: flex; flex-direction: column; gap: 32px; }
.calc-step {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 28px;
  border: none;
  min-width: 0;
}
.calc-step__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  width: 100%;
  padding: 0;
}
.calc-step__num {
  width: 32px;
  height: 32px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.calc-options { display: flex; flex-direction: column; gap: 10px; }

/* Radio */
.calc-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.calc-radio:hover { border-color: var(--primary); }
.calc-radio input[type="radio"] { display: none; }
.calc-radio__box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition);
}
.calc-radio__box::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}
.calc-radio input:checked ~ .calc-radio__box { border-color: var(--primary); }
.calc-radio input:checked ~ .calc-radio__box::after { opacity: 1; }
.calc-radio input:checked ~ .calc-radio__label { color: var(--text-dark); }
.calc-radio:has(input:checked) {
  border-color: var(--primary);
  background: rgba(67,56,202,0.04);
}
.calc-radio__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  font-size: 15px;
  color: var(--text-body);
}
.calc-radio__price {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

/* Checkbox */
.calc-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  flex-wrap: wrap;
}
.calc-checkbox:hover { border-color: var(--primary); }
.calc-checkbox input[type="checkbox"] { display: none; }
.calc-checkbox__box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.calc-checkbox__box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity var(--transition);
}
.calc-checkbox input:checked ~ .calc-checkbox__box {
  background: var(--gradient);
  border-color: var(--primary);
}
.calc-checkbox input:checked ~ .calc-checkbox__box::after { opacity: 1; }
.calc-checkbox:has(input:checked) {
  border-color: var(--primary);
  background: rgba(67,56,202,0.04);
}
.calc-checkbox__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  font-size: 15px;
  color: var(--text-body);
}
.calc-checkbox__price {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

/* Qty selector */
.calc-qty {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 30px;
  margin-top: 8px;
  width: 100%;
}
.calc-qty.visible { display: flex; }
.qty-btn {
  width: 28px;
  height: 28px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.qty-btn:hover { border-color: var(--primary); background: rgba(67,56,202,0.08); }
.qty-input {
  width: 48px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 4px;
  font-weight: 700;
  color: var(--text-dark);
}
.qty-input:focus { outline: none; border-color: var(--primary); }

/* Summary Card */
.calculator__summary { position: relative; }
.calc-summary {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 2px solid var(--border);
  position: sticky;
  top: 88px;
}
.calc-summary__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.calc-summary__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 80px;
}
.calc-summary__empty {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}
.calc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-body);
}
.calc-item__price {
  font-weight: 600;
  color: var(--text-dark);
  flex-shrink: 0;
}
.calc-summary__divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.calc-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 12px;
}
.calc-total-price {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc-summary__delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.calc-summary__delivery strong { color: var(--text-dark); }
.calc-summary__note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--bg-alt); }
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  gap: 8px;
}
.stat__number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat__number--text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.stat__divider {
  display: none;
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 24px 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }
.about__layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.about__visual {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}
.about__blob {
  position: absolute;
  inset: -20px;
  background: var(--gradient);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.15;
  animation: blobMorph 10s ease-in-out infinite;
}
.about__avatar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}
.about__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__content { max-width: 560px; }
.about__content h2 { margin: 8px 0 16px; }
.about__content p { margin-bottom: 24px; }
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 8px 16px;
  background: rgba(67,56,202,0.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(67,56,202,0.15);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-alt); }
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.accordion__item {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.accordion__item.open {
  border-top: 3px solid transparent;
  border-image: var(--gradient) 1;
  border-radius: var(--radius-card);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}
.accordion__trigger:hover { color: var(--primary); }
.accordion__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion__body.open {
  max-height: 600px;
}
.accordion__body p {
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: 15px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.home-contact { position: relative; overflow: hidden; padding-bottom: 100px; }
.contact__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-input);
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67,56,202,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  min-height: 16px;
}
.form-success[hidden] { display: none; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(16,185,129,0.08);
  border: 2px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-input);
  color: #059669;
  font-weight: 600;
}
.form-success svg { flex-shrink: 0; }

/* Contact Info */
.contact-info {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 32px;
}
.contact-info h3 {
  font-size: 20px;
  margin-bottom: 24px;
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.contact-info__item:last-of-type { border-bottom: none; }
.contact-info__item:hover { color: var(--primary); }
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(67,56,202,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info__value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-info__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(3,105,161,0.08);
  border: 1px solid rgba(3,105,161,0.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer__logo .logo-text { color: #fff; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.footer__nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__nav a:hover { color: #fff; }
.footer .lang-btn { color: rgba(255,255,255,0.5); }
.footer .lang-btn:hover,
.footer .lang-btn.active { color: #fff; background: rgba(255,255,255,0.1); }
.footer__socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 24px 0;
}
.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--primary); color: #fff; }
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .section { padding: 80px 0; }

  /* Navbar */
  .hamburger { display: none; }
  .navbar__nav { display: flex; }
  .navbar__actions { display: flex; }

  /* Hero */
  .hero__inner { flex-direction: row; text-align: left; }
  .hero__content { text-align: left; }
  .hero__ctas { justify-content: flex-start; }
  .hero__visual { max-width: 320px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr 1fr; }

  /* How it works */
  .steps {
    flex-direction: row;
    align-items: stretch;
  }
  .step { width: auto; }
  .step__connector {
    width: 48px;
    height: 2px;
    margin: 0;
    align-self: center;
    margin-top: -60px;
    transform-origin: left center;
    transform: scaleX(0);
  }

  /* Portfolio */
  .portfolio__grid { grid-template-columns: 1fr 1fr; }

  /* Case Study */
  .case-study__columns {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
  .case-col__arrow { display: flex; }

  /* Calculator */
  .calculator__layout { flex-direction: row; align-items: flex-start; }
  .calculator__form { flex: 1.2; }
  .calculator__summary { flex: 0.8; }

  /* Stats */
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat__divider { display: block; }

  /* About */
  .about__layout { flex-direction: row; align-items: center; }
  .about__visual { width: 320px; height: 320px; }

  /* Contact */
  .contact__layout { flex-direction: row; align-items: flex-start; }
  .contact__form-wrap { flex: 1.2; }
  .contact__info { flex: 0.8; }

  /* Form rows */
  .form-row--2 { flex-direction: row; }
  .form-row--2 .form-group { flex: 1; }

  /* Footer */
  .footer__top { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .section { padding: 96px 0; }
  .container { padding: 0 24px; }

  /* Portfolio */
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }

  /* Hero */
  .hero { min-height: 100vh; }
  .hero__visual { max-width: 420px; }
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.nav-item--has-dropdown {
  /* no position: relative — .navbar__inner is the containing block for the mega menu */
}

.nav-link--dropdown {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 600;
  color: var(--text-body); padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link--dropdown:hover { color: var(--primary); background: var(--bg-alt); }

.nav-chevron { transition: transform var(--transition); flex-shrink: 0; }
.nav-link--dropdown[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  transform: translateY(-6px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1000;
}
.mega-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.mega-menu::before {
  content: ''; display: block; height: 3px;
  background: var(--gradient);
  position: absolute; top: 0; left: 0; right: 0;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.mega-menu__col { padding: 0 16px; border-right: 1px solid var(--border); }
.mega-menu__col:first-child { padding-left: 0; }
.mega-menu__col:last-child  { padding-right: 0; border-right: none; }

.mega-menu__col-title {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--primary);
  margin: 0 0 4px; text-decoration: none; display: block;
  transition: color var(--transition);
}
a.mega-menu__col-title:hover { color: var(--secondary); }

.mega-menu__col-desc {
  font-size: 11px; color: var(--text-muted);
  line-height: 1.4; margin: 0 0 10px;
}

.mega-menu__item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 7px 8px; border-radius: 8px;
  text-decoration: none; color: var(--text-dark);
  transition: background var(--transition);
}
.mega-menu__item:hover { background: var(--bg-alt); }

.mega-menu__icon { font-size: 16px; flex-shrink: 0; line-height: 1; margin-top: 1px; }

.mega-menu__item-text { display: flex; flex-direction: column; gap: 1px; }
.mega-menu__item-text strong { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.mega-menu__item-text span   { font-size: 11px; color: var(--text-muted); }

@media (max-width: 768px) {
  .mega-menu { display: none; }
  .nav-chevron { display: none; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}
@keyframes trust-slide-in {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0;
}
.trust-badge.is-animating {
  animation: trust-slide-in 0.9s ease forwards;
}
.trust-badge:nth-child(1).is-animating { animation-delay: 0.2s; }
.trust-badge:nth-child(2).is-animating { animation-delay: 0.5s; }
.trust-badge:nth-child(3).is-animating { animation-delay: 0.8s; }
.trust-badge:nth-child(4).is-animating { animation-delay: 1.1s; }
.trust-badge:nth-child(5).is-animating { animation-delay: 1.4s; }
.trust-badge__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.problem-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.problem-card::before {
  content: '\201C';
  position: absolute;
  bottom: -18px;
  right: 20px;
  font-size: 110px;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--primary);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
.problem-card h3 {
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-body);
  margin: 0;
}
.stat-em {
  font-weight: 800;
  color: var(--primary);
}
@media (min-width: 768px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SERVICES 5-GRID
   ============================================================ */
.services__grid--5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .services__grid--5 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .services__grid--5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .services__grid--5 .service-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison { background: var(--bg-alt); }
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  min-width: 520px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}
.comparison-table th.col-highlight {
  background: var(--gradient);
  color: #fff;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}
.comparison-table td.col-highlight {
  background: rgba(67,56,202,0.04);
  font-weight: 700;
  color: var(--primary);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: #10b981; }
.comparison-table .cross { color: #ef4444; }
.comparison-table .warn  { color: #f59e0b; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card__stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.testimonial-card__quote {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-card__role {
  font-size: 13px;
  color: var(--text-muted);
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   GUARANTEE BANNER
   ============================================================ */
.guarantee { background: var(--bg-alt); }
.guarantee__inner {
  background: var(--gradient);
  border-radius: var(--radius-card);
  padding: 56px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.guarantee__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.guarantee__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  position: relative;
}
.guarantee__inner h2 {
  color: #fff;
  margin-bottom: 16px;
}
.guarantee__inner p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 28px;
}
.guarantee__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}
.guarantee__badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* ============================================================
   HOMEPAGE CONTACT SECTION
   ============================================================ */
.home-contact { background: var(--bg); }
.home-contact .contact__layout { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 768px) {
  .home-contact .contact__layout { flex-direction: row; align-items: flex-start; }
  .home-contact .contact__form-wrap { flex: 1.3; }
  .home-contact .contact__info { flex: 0.7; }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 12px 20px;
  z-index: 900;
  display: flex;
  gap: 10px;
}
.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ===== WAVE SECTION DIVIDERS ===== */


.section-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.section-wave--top {
  bottom: auto;
  top: 0;
}
.wl {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 200%;
  height: 100%;
  will-change: transform;
  animation: wave-drift linear infinite;
}
.wl svg {
  display: block;
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}
.wl--1 { animation-duration: 20s; animation-delay: 0s; }
.wl--2 { animation-duration: 15s; animation-delay: -5s; }
.wl--3 { animation-duration: 10s; animation-delay: -3s; }
@keyframes wave-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.wl-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  animation: wave-bob ease-in-out infinite;
}
.wl-wrap--1 { animation-duration: 8s;  animation-delay: 0s; }
.wl-wrap--2 { animation-duration: 6s;  animation-delay: -2s; }
.wl-wrap--3 { animation-duration: 7s;  animation-delay: -1s; }
@keyframes wave-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(17px); }
}
@keyframes wave-bob-top {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-17px); }
}
.section-wave--top .wl-wrap {
  animation-name: wave-bob-top;
}
