/* ============================================================
   HARSHIL DHODI — Fresh Modern Theme
   Warm light aesthetic · Sora + Inter · Terracotta / Teal
   ============================================================ */

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

:root {
  /* Palette — warm cream base, terracotta + deep teal accents */
  --cream:        #fbf7f0;
  --cream-2:      #f4ede1;
  --ink:          #21201c;
  --ink-soft:     #57534a;
  --ink-faint:    #8a8377;
  --terracotta:   #e2683c;
  --terracotta-d: #c9532c;
  --teal:         #1f6f6b;
  --teal-d:       #164e4b;
  --gold:         #e0a43b;
  --white:        #ffffff;
  --line:         rgba(33, 32, 28, 0.08);
  --line-2:       rgba(33, 32, 28, 0.14);

  --shadow-sm:  0 2px 10px rgba(33, 32, 28, 0.06);
  --shadow-md:  0 14px 40px rgba(33, 32, 28, 0.10);
  --shadow-lg:  0 30px 70px rgba(33, 32, 28, 0.14);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1200px;
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 110px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn i { transition: transform 0.3s var(--ease); }
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(226, 104, 60, 0.32);
}
.btn-primary:hover { background: var(--terracotta-d); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(226,104,60,0.40); }
.btn-primary:hover i { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--terracotta);
  display: inline-block;
}
.head { max-width: 640px; }
.head.center { margin: 0 auto; text-align: center; }
.head.center .eyebrow::before { display: none; }
.head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 16px;
}
.head p { font-size: 1.06rem; color: var(--ink-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.site-header.stuck {
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.logo .mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(226,104,60,0.35);
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  transition: all 0.25s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); background: var(--cream-2); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  padding: 10px 18px;
  border: 1.5px solid rgba(31,111,107,0.25);
  border-radius: var(--r-pill);
  transition: all 0.25s var(--ease);
}
.header-cta:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.nav-toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  width: 46px; height: 46px;
  border-radius: 12px;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* mobile overlay */
.overlay {
  position: fixed; inset: 0;
  background: rgba(33,32,28,0.4);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 850;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 190px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -140px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(226,104,60,0.12), transparent 68%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(31,111,107,0.10), transparent 66%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 16px 8px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.badge span {
  background: var(--teal);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 22px;
}
.hero h1 .hl {
  position: relative;
  color: var(--terracotta);
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6px;
  width: 100%; height: 12px;
  background: rgba(224,164,59,0.35);
  z-index: -1;
  border-radius: 3px;
}
.hero-text {
  font-size: 1.12rem;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat h3 {
  font-size: 2.2rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}
.stat h3 .plus { color: var(--terracotta); }
.stat span { font-size: 0.88rem; color: var(--ink-faint); font-weight: 500; }

/* hero visual — stacked cards */
.hero-visual { position: relative; }
.visual-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.visual-card .vc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.vc-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--white);
}
.vc-icon.a { background: linear-gradient(135deg, var(--terracotta), var(--gold)); }
.vc-icon.b { background: linear-gradient(135deg, var(--teal), var(--teal-d)); }
.vc-tag {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  color: var(--teal);
  background: rgba(31,111,107,0.1);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.visual-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.visual-card p { font-size: 0.9rem; }
.bar-track { height: 8px; background: var(--cream-2); border-radius: var(--r-pill); overflow: hidden; margin-top: 18px; }
.bar-fill { height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--terracotta), var(--gold)); width: 84%; }
.float-card {
  position: absolute;
  bottom: -34px; left: -30px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 260px;
}
.float-card .fc-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.float-card h5 { color: var(--white); font-size: 1.3rem; }
.float-card span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* marquee strip */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
  padding: 26px 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
  animation: slide 26s linear infinite;
}
.strip-track span {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.strip-track span::after {
  content: '✦';
  color: var(--terracotta);
  font-size: 1rem;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--teal), var(--teal-d));
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.9);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.14), transparent 55%);
}
.about-badge {
  position: absolute;
  bottom: -26px; right: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge h3 { font-size: 2.4rem; color: var(--terracotta); }
.about-badge span { font-size: 0.82rem; color: var(--ink-faint); font-weight: 600; }
.points { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.point {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.point:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: transparent; }
.point-ic {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(226,104,60,0.1);
  color: var(--terracotta);
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.point h4 { font-size: 1.1rem; margin-bottom: 5px; }
.point p { font-size: 0.92rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream-2); }
.srv-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}
.srv-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px 30px;
  border-top: 1px solid var(--line-2);
  border-radius: var(--r-md);
  transition: all 0.35s var(--ease);
  cursor: default;
}
.srv-row:last-child { border-bottom: 1px solid var(--line-2); }
.srv-row:hover { background: var(--white); box-shadow: var(--shadow-md); transform: scale(1.01); }
.srv-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink-faint);
  transition: color 0.35s var(--ease);
}
.srv-row:hover .srv-num { color: var(--terracotta); }
.srv-body { display: flex; align-items: center; gap: 22px; }
.srv-ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(31,111,107,0.1);
  color: var(--teal);
  display: grid; place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
}
.srv-row:hover .srv-ic { background: var(--teal); color: var(--white); }
.srv-text h3 { font-size: 1.3rem; margin-bottom: 4px; }
.srv-text p { font-size: 0.95rem; max-width: 560px; }
.srv-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: var(--ink-faint);
  transition: all 0.35s var(--ease);
}
.srv-row:hover .srv-arrow { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); transform: rotate(-45deg); }

/* ============================================================
   PROCESS
   ============================================================ */
.proc-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px 28px;
  position: relative;
  transition: all 0.35s var(--ease);
}
.proc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.proc-step {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.proc-card .proc-dot {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--teal);
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.35s var(--ease);
}
.proc-card:hover .proc-dot { background: var(--teal); color: var(--white); }
.proc-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.proc-card p { font-size: 0.92rem; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--cream-2); }
.team-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 26px;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-ava {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  font-size: 2.2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
}
.team-card:nth-child(even) .team-ava { background: linear-gradient(135deg, var(--teal), var(--teal-d)); }
.team-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card span { font-size: 0.86rem; color: var(--ink-faint); font-weight: 500; }
.team-socials { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.team-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid; place-items: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.team-socials a:hover { background: var(--terracotta); color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  position: relative;
  transition: all 0.35s var(--ease);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 26px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(226,104,60,0.14);
  line-height: 1;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); margin-bottom: 18px; font-size: 0.95rem; letter-spacing: 2px; }
.testi-card blockquote { font-size: 1rem; color: var(--ink-soft); margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author .ta-ava {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.testi-author strong { display: block; font-family: 'Sora', sans-serif; color: var(--ink); font-size: 0.95rem; }
.testi-author span { font-size: 0.82rem; color: var(--ink-faint); }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: 60px 0; }
.cta-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(226,104,60,0.3), transparent 70%);
  border-radius: 50%;
}
.cta-card h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; position: relative; }
.cta-card p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 30px; position: relative; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }
.cta-card .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cta-card .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.cta-art {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 7rem;
  color: rgba(255,255,255,0.14);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
}
.contact-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ci-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(31,111,107,0.1);
  color: var(--teal);
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--ink-soft); }
.contact-item a:hover { color: var(--terracotta); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); transform: translateY(-3px); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 15px 18px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  margin-bottom: 16px;
  transition: all 0.25s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(226,104,60,0.1);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; margin-bottom: 20px; }
.footer-detail { display: flex; flex-direction: column; gap: 10px; }
.footer-detail p { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; }
.footer-detail i { color: var(--terracotta); margin-top: 4px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  transition: all 0.25s var(--ease);
}
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- scroll top ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s var(--ease);
  z-index: 800;
  box-shadow: 0 10px 26px rgba(226,104,60,0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--terracotta-d); transform: translateY(-4px); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.shown { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .section { padding: 84px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-visual { max-width: 380px; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .cta-card { grid-template-columns: 1fr; padding: 50px 40px; }
  .cta-art { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 82vw);
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 26px 40px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s var(--ease);
    z-index: 870;
  }
  .nav.open { right: 0; }
  .nav a { padding: 14px 18px; font-size: 1rem; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .srv-row { grid-template-columns: 1fr; gap: 16px; text-align: left; padding: 26px 20px; }
  .srv-num { font-size: 1.3rem; }
  .srv-arrow { display: none; }
  .srv-body { flex-direction: row; }
  .form-duo { grid-template-columns: 1fr; }
  .float-card { left: 50%; transform: translateX(-50%); bottom: -30px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero { padding: 150px 0 90px; }
  .hero-stats { gap: 26px; }
  .stat h3 { font-size: 1.8rem; }
  .proc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form { padding: 28px 22px; }
  .cta-card { padding: 40px 26px; }
  .about-badge { right: 0; }
}
