/* ========================================
   Lynkup Digital — Warm Light Theme
   ======================================== */

:root {
  --bg: #FAF7F4;
  --bg-hero: #F0EAE2;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-dark: #1a1a2e;
  --bg-dark-bar: #222233;

  --text: #1a1a2e;
  --text-muted: #5a5a6e;
  --text-light: #8a8a9a;

  --accent: #E8785E;
  --accent-light: #F5A623;
  --accent-orange: #F28C28;

  --border: #e8e0d8;
  --border-light: #f0e8e0;

  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);

  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- Utilities --- */
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: var(--radius-pill);
  transition: all 0.3s ease; white-space: nowrap;
  cursor: pointer; position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn--dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  color: #fff; border: none;
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.25);
}
.btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 26, 46, 0.35);
}
.btn--dark:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(26, 26, 46, 0.2); }
.btn--lg { padding: 18px 42px; font-size: 16px; }
.btn--outline {
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--bg-dark);
  border: 2px solid rgba(26, 26, 46, 0.15);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.btn--outline:hover {
  background: var(--bg-dark); color: #fff;
  border-color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 26, 46, 0.3);
}
.btn--outline:active { transform: translateY(0); }

.header__buttons { display: flex; gap: 10px; align-items: center; }
.header__buttons .btn { padding: 10px 22px; font-size: 14px; }

.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* --- How It Works --- */
.how-it-works { padding: 80px 0; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.step-card {
  text-align: center; padding: 40px 28px;
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-card__anim {
  width: 120px; height: 120px; margin: 0 auto 16px;
}
.step-card__anim dotlottie-player {
  width: 100%; height: 100%;
}
.step-card__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-dark); color: #fff;
  font-family: var(--font-serif); font-size: 16px;
  margin-bottom: 16px;
}
.step-card__title {
  font-family: var(--font-body); font-weight: 700;
  font-size: 18px; margin-bottom: 10px; color: var(--text);
}
.step-card__text {
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* --- Section Shared --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; line-height: 1.3;
  margin-bottom: 14px;
}
.section-title--serif { font-family: var(--font-body); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.section-title--left { text-align: left; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }

/* --- Dividers --- */
.section-divider { display: flex; justify-content: center; padding: 0; }
.section-divider img { width: 10px; height: 100px; }
.divider-line { width: 1px; height: 64px; background: var(--border); }

/* --- Scroll Animations --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.fade-in-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays for children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.stagger > *.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.25s; }
.stagger > *:nth-child(5) { transition-delay: 0.3s; }
.stagger > *:nth-child(6) { transition-delay: 0.35s; }
.stagger > *:nth-child(7) { transition-delay: 0.4s; }
.stagger > *:nth-child(8) { transition-delay: 0.45s; }
.stagger > *:nth-child(9) { transition-delay: 0.5s; }
.stagger > *:nth-child(10) { transition-delay: 0.55s; }
.stagger > *:nth-child(11) { transition-delay: 0.6s; }

/* ========================================
   HEADER
   ======================================== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg);
  padding: 12px 0;
  transition: var(--transition);
}
.header--scrolled { box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 54px; width: auto; }
.nav__list { display: flex; gap: 4px; }
.nav__link {
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  padding: 10px 20px; border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav__link:hover, .nav__link--active { color: var(--text); background: rgba(0,0,0,0.04); }
.header__cta { font-size: 14px; padding: 12px 26px; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   SITE WRAP — full-page rounded card
   ======================================== */
.site-wrap {
  background: var(--bg-hero);
  background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: 32px;
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 0 40px;
  overflow: hidden;
}

/* ========================================
   HERO
   ======================================== */
.hero { padding: 80px 24px 48px; }
.hero__wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.hero__inner {
  display: block;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero__content { text-align: center; }
.hero__title {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 28px;
}
.hero__subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero__illust {
  position: absolute;
  width: 260px;
  bottom: -61px;
}
.hero__illust--left {
  left: 40px;
  bottom: -140px;
  width: 370px;
}
.hero__illust--right {
  right: 80px;
}
.hero__illust img { width: 100%; height: auto; }
.hero__mobile-illust { display: none; }

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes hero-float-alt {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.hero__illust--float     { animation: hero-float 6s ease-in-out infinite; will-change: transform; }
.hero__illust--float-alt { animation: hero-float-alt 7s ease-in-out infinite; animation-delay: 1.2s; will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .hero__illust--float, .hero__illust--float-alt { animation: none; }
}

/* ========================================
   CLIENT LOGOS
   ======================================== */
.logos { padding: 36px 0; display: flex; justify-content: center; }
.logos__pill {
  display: flex; align-items: center;
  background: var(--bg-dark); padding: 20px 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  max-width: 560px;
  width: 100%;
}
.logos__track {
  display: flex; align-items: center; gap: 20px;
  animation: logosScroll 12s linear infinite;
  white-space: nowrap;
  padding: 0 36px;
}
.logos__pill img { height: 36px; width: auto; filter: brightness(10); opacity: 0.8; flex-shrink: 0; }
.logos__divider { width: 1px; height: 24px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

@keyframes logosScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   WHAT WE DO / FEATURES
   ======================================== */
.what-we-do { padding: 72px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.feature-card__img { height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card__img img { max-height: 120px; width: auto; }
.feature-card__text { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; margin: 0 auto; }

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio { padding: 40px 0; overflow: hidden; }
.portfolio-slider { overflow: hidden; }
.portfolio-track {
  display: flex;
  transition: transform 0.5s ease;
}
.portfolio-slide {
  flex: 0 0 25%;
  padding: 0 10px;
  box-sizing: border-box;
}
.portfolio-slide img {
  width: 100%; aspect-ratio: 1024 / 728; object-fit: cover; object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow); transition: var(--transition);
}
.portfolio-slide img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-dots { display: none; }

/* ========================================
   TESTIMONIAL + BENEFITS
   ======================================== */
.testimonial-benefits { padding: 72px 0; }

.testimonial-combo {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  text-align: center;
  position: sticky;
  top: 100px;
}
.testimonial-combo__quote { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.testimonial-combo__icon { color: var(--accent); margin: 0 auto 16px; }
.testimonial-card__text {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400; line-height: 1.7;
  color: var(--text);
  margin-bottom: 0;
}
.testimonial-combo__divider {
  border: none; border-top: 1px solid var(--border);
  margin: 32px 0;
}
.testimonial-combo__cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.testimonial-combo .book-card__subtitle { font-size: 0.88rem; color: var(--text-muted); }
.testimonial-combo .book-card__alt a { color: var(--accent); }

.benefits-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: 8px; }
.benefit-item { border-left: 3px solid var(--accent); padding-left: 20px; }
.benefit-item:last-child { border-bottom: none; }
.benefit-item__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.benefit-item__text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ========================================
   SERVICES
   ======================================== */
.services { padding: 88px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.service-card { text-align: center; padding: 28px 24px; }
.service-card__img { height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; overflow: hidden; }
.service-card__img img { max-height: 180px; width: auto; }
.service-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card__text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ========================================
   SERVICES TEASER (homepage)
   ======================================== */
.services-teaser { padding: 88px 0; }
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.teaser-card { padding: 24px; }
.teaser-card__img { height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 36px; }
.teaser-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.teaser-card__text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ========================================
   TESTIMONIALS SLIDER
   ======================================== */
.testimonials { padding: 88px 0; }
.testimonials__slider {
  position: relative;
  --cards-per-view: 3;
}
.testimonials__track-wrap {
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonials__slide {
  flex: 0 0 calc(100% / var(--cards-per-view));
  padding: 0 14px;
  box-sizing: border-box;
}
.testimonials__card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 20px;
  height: 100%;
}
.testimonials__stars { display: flex; gap: 3px; }
.testimonials__text {
  font-size: 0.95rem; color: var(--text); line-height: 1.75;
  flex: 1;
}
.testimonials__author { display: flex; align-items: center; gap: 12px; }
.testimonials__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; flex-shrink: 0;
}
.testimonials__name { display: block; font-weight: 600; font-size: 0.92rem; }
.testimonials__role { display: block; font-size: 0.82rem; color: var(--text-light); }

.testimonials__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-white); color: var(--text);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid var(--border);
  transition: var(--transition); z-index: 2;
}
.testimonials__arrow:hover { background: var(--bg-dark); color: #fff; }
.testimonials__arrow--prev { left: -50px; }
.testimonials__arrow--next { right: -50px; }
.testimonials__arrow:active { transform: translateY(-50%) scale(0.95); }

.testimonials__dots { display: none; }

/* ========================================
   FAQ + BOOK A CALL
   ======================================== */
.faq-cta { padding: 88px 0; }
.faq-cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.faq-side {
  padding: 0;
}

.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.faq-item { border: none; }
.faq-item__q {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 500; color: var(--text);
  padding: 12px 0; cursor: pointer;
  list-style: none; transition: var(--transition);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ''; }
.faq-item__dot { color: var(--accent); flex-shrink: 0; }
.faq-item__icon { margin-left: auto; color: var(--text-light); transition: var(--transition); flex-shrink: 0; }
.faq-item[open] .faq-item__icon { transform: rotate(180deg); }
.faq-item__q:hover { color: var(--accent); }
.faq-item__a {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
  padding: 0 0 16px 18px;
}

.book-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow);
}
.book-card__img { margin: 0 auto 24px; }
.book-card__img img { max-height: 120px; margin: 0 auto; }
.book-card__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; line-height: 1.3; }
.book-card__alt { font-size: 0.82rem; color: var(--text-light); margin-top: 16px; }
.book-card__alt a { color: var(--accent); text-decoration: underline; }

/* ========================================
   TECH STACK
   ======================================== */
.tech-stack { padding: 48px 0; }
.tech-stack__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tech-badge {
  font-size: 13px; font-weight: 600; color: var(--text);
  background: var(--bg-dark); color: #fff;
  padding: 10px 24px; border-radius: var(--radius-pill);
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta { padding: 88px 0 68px; }
.final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.final-cta__content { max-width: 600px; margin: 0 auto; }
.final-cta__title {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15;
  margin-bottom: 20px;
}
.final-cta__text { font-size: 1.05rem; color: var(--text-muted); font-weight: 400; margin-bottom: 32px; line-height: 1.6; max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta__illust { position: absolute; width: 280px; top: 50%; transform: translateY(-50%); }
.final-cta__illust--left { left: 0; }
.final-cta__illust--right { right: 0; }
.final-cta__illust img { width: 100%; height: auto; }

/* ========================================
   FOOTER
   ======================================== */
.footer { padding-top: 40px; }
.footer__top { text-align: center; padding-bottom: 32px; }
.footer__logo img { height: 56px; width: auto; margin: 0 auto 16px; }
.footer__tagline { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }
.footer__social { display: flex; justify-content: center; gap: 12px; }
.footer__social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; color: #fff;
  transition: var(--transition);
}
.footer__social-link:nth-child(1) { background: #1877F2; }
.footer__social-link:nth-child(2) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer__social-link:nth-child(3) { background: #0A66C2; }
.footer__social-link:nth-child(4) { background: #E60023; }
.footer__social-link:hover { transform: translateY(-2px); opacity: 0.9; }
.footer__legal { margin-top: 20px; font-size: 0.85rem; color: var(--muted); }
.footer__legal a { color: var(--muted); text-decoration: none; }
.footer__legal a:hover { color: var(--accent); text-decoration: underline; }

.footer__bar {
  background: var(--bg-dark-bar);
  padding: 16px 0;
  margin-top: 24px;
}
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; }
.footer__bar-logo img { height: 28px; width: auto; filter: brightness(10); }
.footer__bar-nav { display: flex; gap: 24px; }
.footer__bar-nav a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer__bar-nav a:hover { color: #fff; }

/* ========================================
   SERVICE MOCKUPS
   ======================================== */
.service-mockup {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.service-mockup__header {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--heading);
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-mockup__footer {
  padding: 12px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}
.service-mockup__comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 20px;
}
.service-mockup__card {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  min-width: 140px;
}
.service-mockup__card small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.service-mockup__card--before {
  background: #f5f5f5;
  color: var(--muted);
}
.service-mockup__card--before small { color: var(--muted); }
.service-mockup__card--after {
  background: linear-gradient(135deg, #f0fdf4, #e6ffed);
  border: 1px solid rgba(34,134,58,0.15);
  position: relative;
}
.service-mockup__card--after small { color: #22863a; }
.service-mockup__da {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--muted);
  line-height: 1.1;
  margin-bottom: 8px;
}
.service-mockup__da--highlight { color: #22863a; }
.service-mockup__badge {
  display: inline-block;
  background: #22863a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.service-mockup__stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 0.78rem;
}
.service-mockup__stats div { text-align: center; }
.service-mockup__stats strong {
  display: block;
  font-size: 0.9rem;
  color: var(--heading);
}
.service-mockup__stats small {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}
.service-mockup__arrow {
  flex-shrink: 0;
}
.service-mockup__speed {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 20px;
}
.service-mockup__gauge {
  flex-shrink: 0;
}
.service-mockup__vitals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-mockup__vital {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-mockup__vital-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.service-mockup__vital strong {
  display: block;
  font-size: 0.95rem;
  color: var(--heading);
}
.service-mockup__vital small {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ========================================
   RESULTS STRIP
   ======================================== */
.results-strip {
  padding: 48px 0;
}
.results-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.results-strip__item {
  padding: 28px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.results-strip__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
}
.results-strip__label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ========================================
   DASHBOARD PREVIEW
   ======================================== */
.dashboard-preview {
  padding: 80px 0;
}
.dashboard-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.dashboard-preview__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dashboard-preview__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.dashboard-preview__feature p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.dashboard-preview__feature strong {
  color: var(--heading);
  font-size: 0.95rem;
}
.dashboard-preview__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}
.dashboard-preview__mockup {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.dashboard-preview__browser {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid #eee;
}
.dashboard-preview__browser-dots {
  display: flex;
  gap: 6px;
}
.dashboard-preview__browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.dashboard-preview__browser-dots span:first-child { background: #ff5f57; }
.dashboard-preview__browser-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-preview__browser-dots span:last-child { background: #28ca41; }
.dashboard-preview__browser-bar {
  flex: 1;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid #eee;
}
.dashboard-preview__screen {
  padding: 20px;
}
.dashboard-preview__table {
  width: 100%;
  font-size: 0.82rem;
}
.dashboard-preview__row {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.5fr 1.5fr 0.8fr;
  gap: 8px;
  padding: 10px 12px;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.dashboard-preview__row--header {
  font-weight: 700;
  color: var(--heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #fafafa;
  border-radius: 8px;
  border-bottom: none;
}
.dashboard-preview__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.dashboard-preview__badge--gold { background: var(--accent); }
.dashboard-preview__badge--platinum { background: #805AD5; }
.dashboard-preview__badge--diamond { background: #1a1a1a; }
.dashboard-preview__status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.dashboard-preview__status--live { background: #e6ffed; color: #22863a; }
.dashboard-preview__status--progress { background: #fff3e0; color: #e65100; }

@media (max-width: 640px) {
  .dashboard-preview__screen { padding: 14px; }
  .dashboard-preview__table { font-size: 0.82rem; }
  .dashboard-preview__row--header { display: none; }
  .dashboard-preview__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "badge type status"
      "target target budget";
    gap: 6px 10px;
    padding: 14px 12px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
  }
  .dashboard-preview__row > span:nth-child(1) { grid-area: badge; }
  .dashboard-preview__row > span:nth-child(2) { grid-area: type; font-weight: 600; color: var(--heading); white-space: nowrap; }
  .dashboard-preview__row > span:nth-child(3) { grid-area: budget; font-weight: 700; color: var(--heading); font-size: 0.8rem; text-align: right; }
  .dashboard-preview__row > span:nth-child(4) { grid-area: target; font-size: 0.75rem; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .dashboard-preview__row > span:nth-child(5) { grid-area: status; justify-self: end; white-space: nowrap; font-size: 0.68rem; padding: 3px 8px; }
  .dashboard-preview__badge { font-size: 0.68rem; padding: 3px 8px; white-space: nowrap; }
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet (iPad) */
@media (max-width: 1024px) {
  .hero__illust { width: 200px; }
  .hero__illust--left { left: 20px; bottom: -61px; width: 220px; }
  .hero__illust--left dotlottie-player { width: 220px !important; height: 220px !important; }
  .hero__illust--right { right: 20px; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .teaser-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .testimonials__slider { --cards-per-view: 2; }
  .testimonials__arrow--prev { left: -10px; }
  .testimonials__arrow--next { right: -10px; }
  .benefits-list { grid-template-columns: 1fr; }
  .faq-cta__grid { grid-template-columns: 1fr; }

  .portfolio-slide { flex: 0 0 33.333%; }

  .final-cta__illust { width: 200px; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__list {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 16px 24px; gap: 4px;
  }
  .nav__list.active { display: flex; }
  .nav { position: static; }

  .site-wrap { border-radius: 24px; margin: 0 8px 24px; }
  .hero { padding: 32px 16px 24px; }
  .hero__wrapper { padding: 0 8px; }
  .hero__illust { position: static; width: 200px; margin: 0 auto 16px; display: flex; justify-content: center; left: auto !important; right: auto !important; bottom: auto !important; }
  .hero__illust--right,
  .hero__illust--left { display: none; }
  .hero__illust--float, .hero__illust--float-alt { animation: none; }
  .hero__mobile-illust { display: flex; justify-content: center; align-items: center; margin: 0 auto 16px; }

  .logos { display: none; }

  .portfolio-slide { flex: 0 0 50%; }

  .features-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-combo { padding: 32px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .teaser-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials__slider { --cards-per-view: 1; }
  .faq-cta__grid { grid-template-columns: 1fr; }

  .final-cta__illust { position: static; width: 120px; transform: none; margin: 0 auto 16px; }
  .final-cta__illust--right { display: none; }

  .footer__bar-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer__bar-nav { flex-wrap: wrap; justify-content: center; }

  .results-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .results-strip__number { font-size: 1.6rem; }
  .dashboard-preview__grid { grid-template-columns: 1fr; gap: 32px; }
  .dashboard-preview__row { font-size: 0.72rem; gap: 4px; }
  .dashboard-preview__row--header { font-size: 0.68rem; }
  .service-mockup__comparison { flex-direction: column; gap: 12px; }
  .service-mockup__arrow { transform: rotate(90deg); }
  .service-mockup__speed { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .logos__pill { padding: 12px 24px; gap: 16px; }
  .logos__pill img { height: 18px; }
}
