/* ===================================================
   toodoo services – Premium CSS
   =================================================== */

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

:root {
  --orange:       #F47C0A;
  --orange-d:     #D4620A;
  --orange-glow:  rgba(244,124,10,0.25);
  --dark:         #1C1F2E;
  --dark-2:       #232636;
  --dark-3:       #2d3147;
  --text:         #2D2D2D;
  --muted:        #64748B;
  --border:       #E8ECF0;
  --light:        #F7F8FA;
  --white:        #FFFFFF;
  --nav-h:        72px;
  --r:            14px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
  --shadow:       0 6px 28px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.16);
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-tag {
  display: inline-block;
  background: rgba(244,124,10,0.1);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(244,124,10,0.2);
}
.section-tag--light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-header p { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--orange:hover {
  background: var(--orange-d); border-color: var(--orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn--glass {
  background: var(--white);
  color: var(--dark);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--glass:hover {
  background: var(--light);
  border-color: #c8cfd8;
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* === LOGO === */
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 38px; height: 38px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 1.15rem; font-weight: 800; color: var(--dark); letter-spacing: -0.025em; }
.logo-sub { font-size: 0.6rem; font-weight: 700; color: var(--orange); letter-spacing: 0.13em; text-transform: uppercase; margin-top: 1px; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.nav--hidden { transform: translateY(-100%); }
.nav--scrolled { box-shadow: var(--shadow-sm); }

.nav__container {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links li a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 500;
  color: var(--text); transition: all var(--transition);
}
.nav__links li a:hover { color: var(--orange); background: rgba(244,124,10,0.07); }
.nav__cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 9px !important; font-weight: 700 !important;
}
.nav__cta:hover { background: var(--orange-d) !important; box-shadow: 0 4px 16px var(--orange-glow); transform: translateY(-1px); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

/* === DRAWER === */
.drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%;
  background: var(--white); z-index: 1000;
  padding: 28px; transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
}
.drawer.open { right: 0; }
.drawer__close { position: absolute; top: 20px; right: 20px; background: var(--light); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; color: var(--dark); }
.drawer__logo { display: flex; align-items: center; gap: 10px; margin-top: 12px; margin-bottom: 32px; }
.drawer__links { display: flex; flex-direction: column; }
.drawer__links li a { display: block; padding: 16px 0; font-size: 1.05rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); transition: color var(--transition); }
.drawer__links li a:hover { color: var(--orange); }
.drawer__cta { display: block; margin-top: 24px; background: var(--orange); color: #fff; padding: 15px 24px; border-radius: 10px; text-align: center; font-weight: 700; font-size: 1rem; }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(2px); }
.overlay.open { opacity: 1; pointer-events: all; }

/* === HERO === */
.hero {
  position: relative; overflow: hidden;
  background: var(--white);
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 28px 80px;
}

/* Hero gradient overlay (kept for shape layer) */
.hero__video-overlay {
  display: none;
  background: linear-gradient(135deg, rgba(28,31,46,0.90) 0%, rgba(28,31,46,0.70) 60%, rgba(28,31,46,0.85) 100%);
}

/* Animated shapes (show when no video) */
.hero__shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.4;
}
.s1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(244,124,10,0.18), transparent 70%); top: -150px; right: -100px; animation: blob 10s ease-in-out infinite; }
.s2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(244,124,10,0.12), transparent 70%); bottom: -80px; left: 10%; animation: blob 14s ease-in-out infinite reverse; }
.s3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(244,124,10,0.08), transparent 70%); top: 30%; left: -80px; animation: blob 12s ease-in-out infinite 2s; }
.s4 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(244,124,10,0.10), transparent 70%); bottom: 20%; right: 15%; animation: blob 9s ease-in-out infinite 1s; }

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.96); }
}

.hero__container {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,124,10,0.1);
  border: 1px solid rgba(244,124,10,0.25);
  color: var(--orange);
  font-size: 0.8rem; font-weight: 600;
  padding: 7px 16px; border-radius: 20px; margin-bottom: 24px;
}
.badge-star { font-size: 0.9rem; }

.hero__title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero__highlight {
  background: linear-gradient(135deg, #F47C0A, #FFB570);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub { font-size: 1.08rem; color: var(--muted); margin-bottom: 36px; line-height: 1.75; max-width: 520px; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
}
.trust-pill span {
  width: 18px; height: 18px;
  background: var(--orange); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; flex-shrink: 0;
}

/* Hero right card */
.hero__card-col { display: flex; justify-content: center; }
.glass-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.hero__stat-card { padding: 32px; width: 100%; }
.hero__logo-big { display: flex; justify-content: center; margin-bottom: 24px; }
.hero__logo-big svg { width: 80px; height: 80px; animation: spin-gear 12s linear infinite; }
@keyframes spin-gear { 0% { filter: drop-shadow(0 0 0 transparent); } 50% { filter: drop-shadow(0 0 12px rgba(244,124,10,0.4)); } 100% { filter: drop-shadow(0 0 0 transparent); } }
.hero__mini-stats { display: flex; justify-content: space-around; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.mini-stat { text-align: center; }
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.mini-stat strong { font-size: 1.7rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-plus { font-size: 1.1rem; font-weight: 900; color: var(--orange); line-height: 1; }
.mini-stat p { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }
.hero__rating { text-align: center; }
.rating-stars { font-size: 1rem; }
.rating-text { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; z-index: 1;
}
.scroll-hint__line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(244,124,10,0.8), transparent);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down { 0%, 100% { opacity: 0.3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* === SERVICES === */
.services { padding: 110px 0; background: var(--light); }
.services__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.service-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(244,124,10,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon { width: 52px; height: 52px; background: rgba(244,124,10,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; padding: 10px; transition: background var(--transition); }
.service-card:hover .sc-icon { background: rgba(244,124,10,0.18); }
.sc-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.service-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* === STATS BAR === */
.stats-bar { background: var(--orange); padding: 52px 28px; }
.stats-bar__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.sbar-item { text-align: center; padding: 0 48px; }
.sbar-num { font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.sbar-suf { font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,0.85); }
.sbar-item p { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 6px; }
.sbar-div { width: 1px; height: 60px; background: rgba(255,255,255,0.25); }

/* === WHY === */
.why { padding: 110px 0; background: var(--white); }
.why__inner { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.why__left h2 { font-size: clamp(1.9rem, 2.8vw, 2.5rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.025em; }
.why__lead { color: var(--muted); margin-bottom: 36px; font-size: 1.02rem; line-height: 1.75; }
.why__list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.why__item { display: flex; gap: 16px; align-items: flex-start; }
.why__check { width: 26px; height: 26px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.why__item strong { display: block; color: var(--dark); font-weight: 700; margin-bottom: 3px; font-size: 0.98rem; }
.why__item p { font-size: 0.88rem; color: var(--muted); }

/* Why card */
.why__card {
  background: var(--dark); border-radius: 20px; padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(28,31,46,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}
.why__card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.why__card-name { font-size: 1rem; font-weight: 700; color: #fff; }
.why__card-role { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.why__card-rating { margin-bottom: 20px; }
.big-stars { font-size: 1.2rem; display: block; margin-bottom: 12px; }
.rating-row { display: flex; align-items: center; gap: 16px; }
.rating-big { font-size: 3rem; font-weight: 900; color: var(--orange); line-height: 1; }
.rating-label { font-size: 0.9rem; font-weight: 700; color: #fff; }
.rating-count { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.why__quote { font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; padding: 16px; background: rgba(255,255,255,0.05); border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; }
.why__card-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.why__card-badges span { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; }

/* === TESTIMONIALS === */
.testimonials { padding: 110px 0; background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r); padding: 28px; transition: all var(--transition);
}
.testi-card:hover { border-color: rgba(244,124,10,0.35); transform: translateY(-4px); background: rgba(255,255,255,0.07); }
.testi-card--featured { border-color: rgba(244,124,10,0.3); background: rgba(244,124,10,0.06); }
.testi-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; flex-shrink: 0; }
.testi-top strong { display: block; font-size: 0.92rem; font-weight: 700; color: #fff; }
.testi-top p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.testi-stars { margin-left: auto; font-size: 0.85rem; flex-shrink: 0; }
.testi-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.testi-tag { display: inline-block; background: rgba(244,124,10,0.15); color: var(--orange); font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.testi-cta { display: flex; align-items: center; justify-content: center; gap: 24px; }
.testi-cta p { color: rgba(255,255,255,0.5); font-size: 0.92rem; }

/* === FAQ === */
.faq { padding: 110px 0; background: var(--light); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 20px var(--orange-glow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; cursor: pointer; font-size: 0.97rem; font-weight: 600; color: var(--dark); text-align: left; font-family: inherit; gap: 12px; }
.faq-arrow { font-size: 1.4rem; font-weight: 300; color: var(--orange); flex-shrink: 0; transition: transform var(--transition); display: inline-block; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; }
.faq-a.open { max-height: 200px; padding-bottom: 20px; }
.faq-a p { padding: 0 24px; font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* === CONTACT === */
.contact { padding: 110px 0; background: var(--dark); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact__left h2 { font-size: clamp(1.9rem, 2.8vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; }
.contact__left p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 36px; line-height: 1.7; }
.contact__left .section-tag { background: rgba(244,124,10,0.15); border-color: rgba(244,124,10,0.25); }
.contact__items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; transition: all var(--transition); }
.contact-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(244,124,10,0.25); }
.ci-icon { width: 42px; height: 42px; background: rgba(244,124,10,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-item span { font-size: 0.95rem; color: rgba(255,255,255,0.85); }

/* Form */
.contact__form-wrap { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-lg); }
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.83rem; font-weight: 700; color: var(--dark); }
.form-group input, .form-group textarea {
  padding: 13px 16px; border: 2px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition); resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-glow); }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; }

/* === FOOTER === */
.footer { background: #12141F; padding: 70px 0 0; }
.footer__container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__brand p { font-size: 0.9rem; color: rgba(255,255,255,0.38); margin-top: 16px; line-height: 1.75; }
.footer__nav h4, .footer__contact-col h4 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.13em; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__nav ul li a:hover { color: var(--orange); }
.footer__contact-col p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer__contact-col a:hover { color: var(--orange); }
.footer__bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__legal a:hover { color: var(--orange); }
.footer__credit a { color: var(--orange); }
.footer__credit a:hover { text-decoration: underline; }

/* === ANIMATIONS === */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-animate].is-visible { opacity: 1; transform: none; }
.services__grid .service-card:nth-child(2)[data-animate] { transition-delay: 0.08s; }
.services__grid .service-card:nth-child(3)[data-animate] { transition-delay: 0.16s; }
.services__grid .service-card:nth-child(4)[data-animate] { transition-delay: 0.24s; }
.services__grid .service-card:nth-child(5)[data-animate] { transition-delay: 0.05s; }
.services__grid .service-card:nth-child(6)[data-animate] { transition-delay: 0.13s; }
.services__grid .service-card:nth-child(7)[data-animate] { transition-delay: 0.21s; }
.services__grid .service-card:nth-child(8)[data-animate] { transition-delay: 0.29s; }
.testi-card:nth-child(2)[data-animate] { transition-delay: 0.1s; }
.testi-card:nth-child(3)[data-animate] { transition-delay: 0.2s; }

/* === LEGAL PAGES === */
.legal-page { min-height: 100vh; padding: calc(var(--nav-h) + 60px) 28px 80px; background: var(--white); }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.legal-page .back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 600; font-size: 0.9rem; margin-bottom: 32px; }
.legal-page .back-link:hover { text-decoration: underline; }
.legal-page h2 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 32px 0 8px; }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 8px; }
.legal-page a { color: var(--orange); }
.legal-page a:hover { text-decoration: underline; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__card-col { display: none; }
  .hero__btns { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__sub { margin: 0 auto 36px; }
  .why__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 0; }
  .sbar-item { padding: 0 24px; }
  .why__inner { gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer__legal { justify-content: center; }
  .contact__items { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testi-cta { flex-direction: column; gap: 16px; }
  .sbar-div { display: none; }
  .stats-bar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .sbar-item { padding: 0; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .contact__form-wrap { padding: 28px 20px; }
}

/* === GALERIE === */
.galerie { padding: 100px 0; background: var(--light); }
.galerie__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  background: var(--border);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; display: block; }
.thumb:hover img { transform: scale(1.08); }
.thumb::after {
  content: '⤢';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,124,10,0.4);
  color: #fff; font-size: 1.4rem;
  opacity: 0; transition: opacity 0.25s;
}
.thumb:hover::after { opacity: 1; }

/* === LIGHTBOX === */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap { max-width: 88vw; max-height: 82vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: 8px; }
.lb-close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  font-size: 1.3rem; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 1.5rem; width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center;
}
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-prev:hover, .lb-next:hover { background: rgba(244,124,10,0.55); }
.lb-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* === TESTIMONIALS – REAL SCREENSHOTS === */
.testi-screen {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-screen:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.45);
}
.testi-screen--featured {
  transform: scale(1.05);
  border-color: rgba(244,124,10,0.45);
  box-shadow: 0 12px 40px rgba(244,124,10,0.18);
  position: relative;
  z-index: 1;
}
.testi-screen--featured:hover {
  transform: scale(1.05) translateY(-6px);
}
.testi-screen img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .galerie__thumbs { grid-template-columns: repeat(4, 1fr); }
  .testi-screen--featured { transform: none; }
  .testi-screen--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 600px) {
  .galerie__thumbs { grid-template-columns: repeat(3, 1fr); }
}
