/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0d0d0d;
  --surface:  #161616;
  --surface2: #1e1e1e;
  --border:   #282828;
  --accent:   #e85c26;
  --accent-h: #ff6b35;
  --text:     #ffffff;
  --muted:    #888888;
  --muted2:   #555555;

  --font:     'Inter', system-ui, sans-serif;
  --radius:   10px;
  --trans:    .25s ease;
  --nav-h:    68px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ══════════════════════════════════════
   CONTAINER & LAYOUT
══════════════════════════════════════ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }

.section__header { margin-bottom: 52px; }
.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.section__sub { color: var(--muted); font-size: .92rem; }

/* Orange dot marker before section title */
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), transform var(--trans), opacity var(--trans);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--orange {
  background: var(--accent);
  color: #fff;
}
.btn--orange:hover { background: var(--accent-h); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--muted); }

.btn--full { width: 100%; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid transparent;
  transition: background var(--trans), border-color var(--trans);
}
.nav.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}

.nav__logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent);
}
.nav__logo span { color: var(--accent); }

.nav__center {
  display: flex;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__center a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans);
}
.nav__center a:hover { color: var(--text); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__phone {
  font-size: .82rem;
  color: var(--muted);
  transition: color var(--trans);
}
.nav__phone:hover { color: var(--text); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--trans), opacity var(--trans);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 199;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--trans);
}
.mobile-menu ul li a:hover { color: var(--accent); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 72px;
}
.hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
}
.hero__right {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero__sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 12px; }

/* Stats */
.stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.stat {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat__value {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.stat__label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

/* ══════════════════════════════════════
   PROJECT CARDS
══════════════════════════════════════ */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.project-card:hover {
  border-color: var(--muted2);
  transform: translateY(-3px);
}

.project-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface2);
  position: relative;
}
.project-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.project-card:hover .project-card__img img { transform: scale(1.03); }

.project-card__body { padding: 18px 20px 22px; }

.project-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 8px 0 6px;
}
.project-card__desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.project-card__tags span {
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 9px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
}

/* Tags */
.tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}
.tag--orange { background: rgba(232,92,38,.15); color: var(--accent); }
.tag--blue   { background: rgba(59,130,246,.15); color: #60a5fa; }
.tag--green  { background: rgba(34,197,94,.15);  color: #4ade80; }
.tag--purple { background: rgba(168,85,247,.15); color: #c084fc; }

/* ══════════════════════════════════════
   IMAGE PLACEHOLDER
══════════════════════════════════════ */
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted2);
  background: var(--surface2);
  border: 2px dashed var(--border);
  letter-spacing: .5px;
}
.img-placeholder--sm { font-size: .7rem; }

/* Real images */
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.seo-result__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ══════════════════════════════════════
   SEO RESULTS
══════════════════════════════════════ */
.seo { background: var(--surface); }

.seo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.seo-result--big {
  grid-row: span 2;
}

.seo-result {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seo-result__metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.seo-metric { display: flex; flex-direction: column; gap: 3px; }
.seo-metric__val {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.seo-metric--accent .seo-metric__val { color: var(--accent); }
.seo-metric__label {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 500;
}

.seo-result__img {
  flex: 1;
  position: relative;
  min-height: 140px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface2);
}
.seo-result--big .seo-result__img { min-height: 220px; }
.seo-result__img img { width: 100%; height: 100%; object-fit: cover; }

.seo-result__note {
  font-size: .72rem;
  color: var(--muted2);
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background var(--trans);
}
.service-card:hover { background: var(--surface); }

.service-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.about__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.about__content { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.about__name {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
}
.about__content p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.about__stats { display: flex; gap: 32px; }
.about__stat { display: flex; flex-direction: column; gap: 4px; }
.about__stat-val {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.about__stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }

.about__links { display: flex; gap: 16px; }
.about__link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--trans), border-color var(--trans);
}
.about__link:hover { color: var(--text); border-color: var(--text); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.testi-card p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}
.testi-card__name {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
}
.testi-card__role {
  display: block;
  font-size: .75rem;
  color: var(--muted2);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq { background: var(--surface); }
.faq__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-item {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq-item h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.faq-item p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact__inner {
  max-width: 640px;
}

.contact__heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.contact__sub {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact__phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--trans);
}
.contact__phone:hover { color: var(--text); }

/* WhatsApp CTA button */
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  gap: 10px;
  font-size: .92rem;
  padding: 13px 26px;
}
.btn--whatsapp:hover {
  background: #20bb5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn--whatsapp svg { flex-shrink: 0; }

/* Instagram button */
.btn--insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  gap: 9px;
  font-size: .92rem;
  padding: 13px 22px;
}
.btn--insta:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,39,67,.35);
}

/* Footer insta link */
.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--muted);
  margin-top: 6px;
  transition: color var(--trans);
}
.footer__insta:hover { color: #e6683c; }

/* ══════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.footer__logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.footer__left p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.8;
}
.footer__copy { color: var(--muted2) !important; }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process { background: var(--surface); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.process-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--trans);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--surface2); }

.process-step__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  transition: color var(--trans);
}
.process-step:hover .process-step__num { color: var(--accent); }
.process-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: 10px; }
.process-step p  { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════
   WHY ME
══════════════════════════════════════ */
.whyme { background: var(--bg); }

.whyme__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.whyme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--trans), transform var(--trans);
}
.whyme-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.whyme-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: block;
}
.whyme-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.whyme-card {
  text-align: center;
}
.whyme-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 10px; }
.whyme-card p  { font-size: .82rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 16px;
}
.trust__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust__tags span {
  font-size: .8rem;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  transition: border-color var(--trans), color var(--trans);
}
.trust__tags span:hover { border-color: var(--accent); color: var(--text); }

/* ══════════════════════════════════════
   VIDEO INTRO
══════════════════════════════════════ */
.video-intro { background: var(--surface); }

.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  border: 1px solid var(--border);
}
.video-wrap video,
.video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: none;
  display: block;
}


/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing { background: var(--bg); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color var(--trans), transform var(--trans);
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(232,92,38,.06), var(--surface));
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.pricing-card__header p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price__from {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}
.price__val {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text);
}
.pricing-card--featured .price__val { color: var(--accent); }
.price__cur {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-card__features li {
  font-size: .85rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: .8rem;
}

.pricing__note {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}
.pricing__note a {
  color: var(--accent);
  font-weight: 600;
  transition: opacity var(--trans);
}
.pricing__note a:hover { opacity: .75; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */

/* Base — all animated elements start hidden */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
}
[data-anim].anim-in {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
  animation-duration: .75s;
}

/* Types */
[data-anim="fade-up"]     { transform: translateY(40px); }
[data-anim="fade-down"]   { transform: translateY(-30px); }
[data-anim="fade-left"]   { transform: translateX(50px); }
[data-anim="fade-right"]  { transform: translateX(-50px); }
[data-anim="zoom-in"]     { transform: scale(.92); }
[data-anim="flip-up"]     { transform: perspective(600px) rotateX(12deg) translateY(30px); }

[data-anim="fade-up"].anim-in    { animation-name: a-fade-up; }
[data-anim="fade-down"].anim-in  { animation-name: a-fade-down; }
[data-anim="fade-left"].anim-in  { animation-name: a-fade-left; }
[data-anim="fade-right"].anim-in { animation-name: a-fade-right; }
[data-anim="zoom-in"].anim-in    { animation-name: a-zoom-in; }
[data-anim="flip-up"].anim-in    { animation-name: a-flip-up; }

@keyframes a-fade-up    { from { opacity:0; transform: translateY(40px);  } to { opacity:1; transform: none; } }
@keyframes a-fade-down  { from { opacity:0; transform: translateY(-30px); } to { opacity:1; transform: none; } }
@keyframes a-fade-left  { from { opacity:0; transform: translateX(50px);  } to { opacity:1; transform: none; } }
@keyframes a-fade-right { from { opacity:0; transform: translateX(-50px); } to { opacity:1; transform: none; } }
@keyframes a-zoom-in    { from { opacity:0; transform: scale(.92);        } to { opacity:1; transform: none; } }
@keyframes a-flip-up    { from { opacity:0; transform: perspective(600px) rotateX(12deg) translateY(30px); } to { opacity:1; transform: none; } }

/* Stagger delays (applied by JS via --delay) */
[data-anim].anim-in { animation-delay: var(--delay, 0ms); }

/* Hero entrance (plays on load, no scroll trigger) */
.hero__heading  { animation: a-fade-up .9s cubic-bezier(.22,1,.36,1) .1s both; }
.hero__right    { animation: a-fade-up .9s cubic-bezier(.22,1,.36,1) .25s both; }
.stats          { animation: a-fade-up .9s cubic-bezier(.22,1,.36,1) .4s both; }

/* Accent line before section titles */
.section__title .dot {
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
}
.section__header[data-anim].anim-in .dot {
  animation: dot-pop .5s cubic-bezier(.22,1,.36,1) var(--delay, 0ms) both;
}
@keyframes dot-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__photo { aspect-ratio: 1/1; }
}

@media (max-width: 860px) {
  .nav__center { display: none; }
  .nav__right  { display: none; }
  .nav__burger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .stats       { flex-direction: column; }
  .stat__divider { width: auto; height: 1px; align-self: stretch; }

  .seo__grid { grid-template-columns: 1fr; }
  .seo-result--big { grid-row: auto; }

  .services__grid  { grid-template-columns: 1fr 1fr; }
  .process__steps  { grid-template-columns: 1fr 1fr; }
  .process-step    { border-bottom: 1px solid var(--border); }
  .whyme__grid     { grid-template-columns: 1fr 1fr; }
  .pricing__grid   { grid-template-columns: 1fr; }
  .about__grid     { grid-template-columns: 1fr; }

  .testi__grid { grid-template-columns: 1fr; }
  .faq__grid   { grid-template-columns: 1fr; }

  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner  { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1024px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
  .whyme__grid    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .work__grid     { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .form__row      { grid-template-columns: 1fr; }
  .hero__heading  { letter-spacing: -0.5px; }
}
