/* ============================
   DELUXE R2 — Modern Redesign
   ============================ */

:root {
  --blue: #16a34a;
  --blue-dark: #15803d;
  --blue-light: #dcfce7;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --dark: #111827;
  --medium: #6b7280;
  --light: #9ca3af;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --t: 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--dark); line-height: 1.65; background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
h1, h2, h3 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 90px 0; }
.section-light { background: var(--bg); }
.center { text-align: center; }

/* === EYEBROW / HEADINGS === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--dark); margin-bottom: 0.75rem; }
.lead { font-size: 1.05rem; color: var(--medium); max-width: 560px; line-height: 1.75; }
.center .lead { margin-inline: auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-blue  { background: var(--blue); color: white; border-color: var(--blue); }
.btn-blue:hover  { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.28); }

.btn-white { background: white; color: var(--blue); border-color: white; }
.btn-white:hover { background: var(--blue-light); }

.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.1); }

.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: white; }

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; border-radius: 10px; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-brand { display: flex; align-items: center; gap: 0.75rem; }

.nav-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-name { display: flex; flex-direction: column; line-height: 1.1; }
.nav-name-main { font-size: 1.05rem; font-weight: 800; color: var(--blue); letter-spacing: -0.01em; }
.nav-name-sub  { font-size: 0.63rem; font-weight: 600; color: var(--medium); letter-spacing: 0.07em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { color: var(--blue); font-size: 0.9rem; font-weight: 500; transition: color var(--t); }
.nav-links a:hover { color: var(--blue-dark); }

.nav-phone { display: flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.95rem; color: var(--blue); }
.nav-phone i { font-size: 0.82rem; }

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

/* === HERO === */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #0a2b10;
  background-image:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url('pozadie.jpg');
  background-size: cover;
  background-position: center;
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  max-width: 780px;
  width: 100%;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22,163,74,.15);
  color: var(--blue);
  border: 1px solid rgba(22,163,74,.4);
  padding: 0.38rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); color: white; margin-bottom: 1.25rem; text-shadow: 0 2px 16px rgba(0,0,0,.4); }
.hero h1 em { font-style: normal; color: white; }

.hero-desc { font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 2.25rem; max-width: 530px; line-height: 1.75; margin-inline: auto; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; justify-content: center; }

.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.hero-trust-item { display: flex; align-items: center; gap: 0.45rem; color: rgba(255,255,255,.72); font-size: 0.86rem; }
.hero-trust-item i { color: #4ade80; font-size: 0.75rem; }

/* === STATS BAR === */
.stats-bar { background: var(--blue); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: 0 auto;
}

.stat-cell {
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-cell:last-child { border-right: none; }
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 0.25rem; }
.stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,.68); font-weight: 500; }

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }

.svc-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.svc-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.svc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.svc-card p  { font-size: 0.88rem; color: var(--medium); line-height: 1.7; }

/* === WHY US === */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1rem;
}

.checklist { list-style: none; margin-top: 2rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }

.check {
  width: 24px; height: 24px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.7rem;
  margin-top: 2px;
}

.checklist li strong { display: block; font-size: 0.97rem; margin-bottom: 0.15rem; }
.checklist li span  { font-size: 0.85rem; color: var(--medium); line-height: 1.65; }

.why-visual {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.why-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
}

.why-stat {
  padding: 1.1rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.why-stat:nth-child(2n) { border-right: none; }
.why-stat:nth-child(3), .why-stat:nth-child(4) { border-bottom: none; }

.why-stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 0.2rem; }
.why-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,.65); font-weight: 500; }

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

.why-visual-inner { position: relative; z-index: 1; }

.why-big {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.3rem;
}

.why-big-label { font-size: 0.88rem; color: rgba(255,255,255,.72); margin-bottom: 2rem; }

.why-perks { list-style: none; margin-bottom: 2.5rem; }
.why-perks li {
  display: flex; align-items: center; gap: 0.7rem;
  color: rgba(255,255,255,.85);
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.why-perks li:last-child { border-bottom: none; }
.why-perks li i { color: #4ade80; font-size: 0.75rem; flex-shrink: 0; }

.why-cta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.why-cta a:not(.btn) { color: rgba(255,255,255,.65); font-size: 0.88rem; }
.why-cta a:not(.btn) span { text-decoration: underline; }

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  border-top: 2px dashed var(--border);
}

.step { text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 62px; height: 62px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(22,163,74,.3);
}

.step h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.step p  { font-size: 0.88rem; color: var(--medium); line-height: 1.7; }

/* === TESTIMONIALS === */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

.testi-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all var(--t);
}
.testi-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }

.stars { display: flex; gap: 0.2rem; color: #f59e0b; font-size: 0.82rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.91rem; color: var(--medium); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.88rem;
  color: var(--blue);
  flex-shrink: 0;
}
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.testi-city { font-size: 0.78rem; color: var(--light); }

/* === LOCATIONS === */
.locs { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; justify-content: center; }

.loc {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--dark);
  transition: all var(--t);
}
.loc i { color: var(--blue); font-size: 0.72rem; }
.loc:hover { background: var(--blue); color: white; border-color: var(--blue); }
.loc:hover i { color: white; }

/* === CTA === */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: white; margin-bottom: 0.75rem; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2.25rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; margin-top: 3rem; align-items: start; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }

.c-icon {
  width: 46px; height: 46px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.c-lbl { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--light); margin-bottom: 0.15rem; }
.c-val { font-size: 1rem; font-weight: 600; color: var(--dark); }
.c-val a { color: inherit; transition: color var(--t); }
.c-val a:hover { color: var(--blue); }

.contact-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.contact-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.contact-card p  { font-size: 0.88rem; color: var(--medium); margin-bottom: 1.5rem; }

/* === FOOTER === */
.footer { background: #0f172a; padding: 60px 0 24px; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 240px; margin-top: 0.75rem; }
.footer-logo-main { font-size: 1.1rem; font-weight: 800; color: white; }
.footer-logo-sub  { font-size: 0.65rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 0.1em; }

.footer-col h4 { color: white; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 0.5rem; }
.footer-col a { color: rgba(255,255,255,.48); font-size: 0.87rem; display: flex; align-items: center; gap: 0.45rem; transition: color var(--t); }
.footer-col a:hover { color: rgba(255,255,255,.9); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 1.5rem; }
.footer-copy { text-align: center; font-size: 0.77rem; color: rgba(255,255,255,.27); }

/* ========== DOPYT PAGE ========== */
.dopyt-nav { background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }

.dopyt-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1120px; margin: 0 auto; padding: 0 1.5rem;
}

.dopyt-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: calc(100vh - 72px);
}

.dopyt-sidebar {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 4rem 3rem;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dopyt-sidebar h2 { font-size: 1.9rem; color: white; margin-bottom: 0.6rem; }
.dopyt-sidebar > p { color: rgba(255,255,255,.75); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2.5rem; }

.sidebar-list { list-style: none; margin-bottom: 2.5rem; }
.sidebar-list li {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,.85);
  font-size: 0.93rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list i { color: #4ade80; font-size: 0.78rem; flex-shrink: 0; }

.sidebar-direct {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.sidebar-direct p { font-size: 0.82rem; color: rgba(255,255,255,.55); margin-bottom: 0.6rem; }
.sidebar-direct a { color: white; font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
.sidebar-direct a:hover { opacity: .85; }

.dopyt-form-area { background: var(--bg); padding: 4rem 3rem; display: flex; align-items: flex-start; justify-content: center; }
.dopyt-form-card { background: white; border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 2.5rem; width: 100%; max-width: 520px; }

.form-heading { font-size: 1.55rem; margin-bottom: 0.35rem; }
.form-subheading { font-size: 0.9rem; color: var(--medium); margin-bottom: 2rem; }

.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 0.35rem; }

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--dark);
  background: white;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22,163,74,.09);
}

.fg textarea { resize: vertical; min-height: 90px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-btn {
  width: 100%; padding: 1rem;
  background: var(--blue); color: white;
  border: none; border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  margin-top: 0.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-btn:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,163,74,.28); }

.form-privacy { text-align: center; font-size: 0.77rem; color: var(--light); margin-top: 0.85rem; display: flex; align-items: center; justify-content: center; gap: 0.35rem; }

/* ========== DAKUJEM PAGE ========== */
.thanks-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1.5rem;
}

.thanks-card {
  max-width: 520px; width: 100%;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.thanks-icon {
  width: 80px; height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--green);
  margin: 0 auto 1.5rem;
}

.thanks-card h1 { font-size: 1.9rem; margin-bottom: 0.75rem; }
.thanks-card > p { color: var(--medium); margin-bottom: 2rem; line-height: 1.75; }

.thanks-contacts {
  background: var(--bg);
  border-radius: var(--r);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.thanks-contacts a { color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 0.4rem; font-size: 0.92rem; }

.thanks-note { font-size: 0.82rem; color: var(--light); margin-bottom: 1.75rem; }

/* ========== ANIMATIONS ========== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Nav entrance */
.nav { animation: slideDown 0.5s ease both; }

/* Hero staggered entrance */
.hero-pill    { animation: fadeIn 0.6s ease both; animation-delay: 0.1s;  opacity: 0; }
.hero h1      { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; opacity: 0; }
.hero-desc    { animation: fadeUp 0.7s ease both; animation-delay: 0.42s; opacity: 0; }
.hero-actions { animation: fadeUp 0.7s ease both; animation-delay: 0.58s; opacity: 0; }
.hero-trust   { animation: fadeUp 0.6s ease both; animation-delay: 0.72s; opacity: 0; }

/* Floating why-visual card */
.why-visual { animation: float 5s ease-in-out infinite; }

/* Scroll-triggered — JS adds .visible */
.anim {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .dopyt-layout { grid-template-columns: 1fr; }
  .dopyt-sidebar { position: static; height: auto; padding: 2.5rem 2rem; }
  .dopyt-form-area { padding: 2.5rem 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--dark); font-size: 1rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }

  .section { padding: 64px 0; }
  .hero-body { padding: 3.5rem 1.5rem; }

  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-grid::before { display: none; }

  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .dopyt-form-card { padding: 1.5rem; }
}
