/* ══════════════════════════════════════════════════════
   VISUALAURA STUDIO — Service Page Styles
   ══════════════════════════════════════════════════════ */

/* ── SERVICE HERO ────────────────────────────────────── */
.svc-hero {
  min-height: 92vh;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sh-bg { position: absolute; inset: 0; z-index: 0; }
.sh-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
}
.sh-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,.35) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.sh-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(110,20,35,.2) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.sh-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(110,20,35,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110,20,35,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.sh-grid-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sh-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 400;
  color: var(--text-l);
  margin-bottom: 48px;
  letter-spacing: .08em; text-transform: uppercase;
  transition: color .25s;
}
.sh-back:hover { color: var(--primary); }
.sh-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400; line-height: 1.05;
  color: var(--text); letter-spacing: -.02em;
  margin: 16px 0 22px;
}
.sh-title em { color: var(--primary); font-style: italic; }
.sh-desc {
  font-size: 1rem; color: var(--text-m);
  line-height: 1.9; margin-bottom: 32px;
  max-width: 480px; font-weight: 300;
}
.sh-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.sh-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sh-tags span {
  font-size: .64rem; font-weight: 400; letter-spacing: .05em;
  color: var(--primary);
  background: rgba(110,20,35,.07);
  border: 1px solid rgba(110,20,35,.16);
  padding: 5px 14px; border-radius: 100px;
}

/* Hero visual area */
.sh-visual { position: relative; }

/* Generic mockup wrapper */
.shv-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--beige);
  animation: floatA 6s ease-in-out infinite;
}

/* Floating info cards on hero */
.shv-float {
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 14px; padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: .82rem; color: var(--text-m);
  display: flex; align-items: center; gap: 10px;
  animation: floatB 5s ease-in-out infinite;
}
.f1 { bottom: 30px; left: -20px; }
.f2 { top: 20px; right: -10px; animation-name: floatD; }
.shf-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.shf-big {
  font-family: var(--font-head);
  font-size: 1.9rem; font-weight: 400;
  color: var(--primary);
}
.shf-lbl { font-size: .72rem; color: var(--text-l); margin-top: 2px; }

/* ── UI/UX MOCKUP ────────────────────────────────────── */
.uiux-mock { padding: 16px; }
.um-top { display: flex; gap: 8px; }
.um-sidebar {
  width: 52px; background: #2E2E2E;
  border-radius: 8px; padding: 10px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ums-logo {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-bottom: 6px;
}
.ums-item {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.15);
}
.ums-item.act { background: var(--primary); }
.um-main { flex: 1; }
.umm-bar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.umm-btn {
  width: 50px; height: 22px; border-radius: 6px;
  background: var(--primary); opacity: .7; margin-left: auto;
}
.umm-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 6px; margin-bottom: 8px;
}
.umc {
  height: 48px; border-radius: 8px;
  background: rgba(110,20,35,.12);
  border: 1px solid rgba(110,20,35,.08);
}
.umc.tall { height: 72px; }
.umm-chart {
  display: flex; align-items: flex-end;
  gap: 5px; height: 48px;
}
.umc-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(110,20,35,.5), rgba(201,169,110,.25));
}
.umc-bar.hi { background: linear-gradient(180deg, var(--primary), var(--accent)); }

/* ── WEDDING MOCKUP ──────────────────────────────────── */
.wedding-mock {
  padding: 24px;
  background: linear-gradient(135deg, #fdf8f4 0%, #f0e8de 100%);
  text-align: center;
}
.wm-badge {
  display: inline-block; font-size: .62rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--primary);
  background: rgba(110,20,35,.1); padding: 4px 12px;
  border-radius: 100px; margin-bottom: 10px;
}
.wm-names {
  font-family: var(--font-head); font-size: 1.8rem;
  color: var(--text); font-style: italic;
  margin-bottom: 6px;
}
.wm-date { font-size: .8rem; color: var(--text-l); margin-bottom: 16px; }
.wm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110,20,35,.3), transparent);
  margin-bottom: 16px;
}
.wm-photos { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.wm-photos div {
  aspect-ratio: 1; border-radius: 8px;
}
.wm-photos div:nth-child(1) { background: linear-gradient(135deg, rgba(110,20,35,.35), rgba(201,169,110,.25)); }
.wm-photos div:nth-child(2) { background: linear-gradient(135deg, rgba(201,169,110,.45), rgba(110,20,35,.2)); }
.wm-photos div:nth-child(3) { background: linear-gradient(135deg, rgba(110,20,35,.25), rgba(201,169,110,.4)); }
.wm-rsvp-btn {
  display: block; background: var(--primary);
  color: rgba(255,255,255,.9); border-radius: 8px;
  padding: 10px; font-size: .8rem; text-align: center;
}

/* ── WEBSITE DESIGN MOCKUP ───────────────────────────── */
.website-mock { background: #fff; }
.wdm-bar {
  background: rgba(110,20,35,.06); padding: 8px 12px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(110,20,35,.08);
}
.wdm-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(110,20,35,.25); }
.wdm-url {
  flex: 1; height: 14px; background: rgba(110,20,35,.1);
  border-radius: 4px; margin: 0 8px; max-width: 200px;
}
.wdm-nav {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-bottom: 1px solid rgba(110,20,35,.06);
}
.wdm-logo { width: 60px; height: 10px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; }
.wdm-links { display: flex; gap: 8px; margin-left: auto; }
.wdm-links div { width: 28px; height: 6px; background: rgba(110,20,35,.2); border-radius: 2px; }
.wdm-btn { width: 48px; height: 20px; background: var(--primary); border-radius: 5px; opacity: .7; }
.wdm-hero { display: flex; gap: 12px; padding: 14px; align-items: center; }
.wdh-text { flex: 1; }
.wdh-img {
  width: 110px; height: 75px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.4), rgba(110,20,35,.3));
}
.wdm-features {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 6px; padding: 0 14px 14px;
}
.wdm-features div {
  height: 48px; border-radius: 8px;
  background: rgba(110,20,35,.07);
  border: 1px solid rgba(110,20,35,.08);
}

/* ── LANDING PAGE MOCKUP ─────────────────────────────── */
.landing-mock { background: #fff; }
.ldm-bar { background: rgba(110,20,35,.04); padding: 7px 10px; display: flex; gap: 5px; border-bottom: 1px solid rgba(110,20,35,.06); }
.ldm-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(110,20,35,.2); }
.ldm-hero { padding: 16px; text-align: center; background: linear-gradient(135deg, #fdf8f4, #f0e8de); }
.ldh-badge { width: 80px; height: 10px; background: rgba(110,20,35,.2); border-radius: 100px; margin: 0 auto 10px; }
.ldh-h { width: 85%; height: 14px; background: rgba(110,20,35,.3); border-radius: 3px; margin: 0 auto 6px; }
.ldh-sub { width: 65%; height: 8px; background: rgba(110,20,35,.15); border-radius: 3px; margin: 0 auto 14px; }
.ldh-cta { display: flex; gap: 8px; justify-content: center; }
.ldh-cta div { height: 26px; border-radius: 6px; }
.ldh-cta div:first-child { width: 80px; background: var(--primary); opacity: .7; }
.ldh-cta div:last-child { width: 70px; background: rgba(110,20,35,.15); border: 1px solid rgba(110,20,35,.2); }
.ldm-logos { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px; background: rgba(110,20,35,.03); }
.ldm-logos div { height: 8px; background: rgba(110,20,35,.15); border-radius: 2px; }
.ldm-features { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 10px; }
.ldm-features div { height: 44px; border-radius: 7px; background: rgba(110,20,35,.08); border: 1px solid rgba(110,20,35,.06); }

/* ── BRANDING MOCKUP ─────────────────────────────────── */
.branding-mock {
  padding: 24px;
  background: linear-gradient(135deg, #f8f4f0 0%, #ece5da 100%);
}
.bm-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bm-sym {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.bm-name { display: flex; flex-direction: column; gap: 5px; }
.bm-name div { height: 10px; background: rgba(110,20,35,.4); border-radius: 3px; }
.bm-name div:first-child { width: 80px; }
.bm-name div:last-child { width: 50px; height: 7px; opacity: .6; }
.bm-palette { display: flex; gap: 8px; margin-bottom: 14px; }
.bm-palette div { flex: 1; height: 40px; border-radius: 8px; }
.bm-palette div:nth-child(1) { background: var(--primary); }
.bm-palette div:nth-child(2) { background: var(--accent); }
.bm-palette div:nth-child(3) { background: #F7F3EF; border: 1px solid rgba(110,20,35,.15); }
.bm-palette div:nth-child(4) { background: #2E2E2E; }
.bm-type { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.bm-type-head { height: 18px; background: rgba(110,20,35,.5); border-radius: 3px; width: 70%; font-family: var(--font-head); }
.bm-type-body { height: 8px; background: rgba(110,20,35,.2); border-radius: 2px; width: 90%; }
.bm-type-body + .bm-type-body { width: 75%; }
.bm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bm-card { height: 48px; border-radius: 8px; background: rgba(255,255,255,.6); border: 1px solid rgba(110,20,35,.1); }
.bm-card.dark { background: #2E2E2E; border-color: transparent; }

/* ── GRAPHIC DESIGN MOCKUP ───────────────────────────── */
.graphic-mock {
  padding: 0; overflow: hidden;
  background: #1a1a1a;
}
.gdm-top { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px 12px 6px; }
.gdm-poster {
  aspect-ratio: 3/4; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative; overflow: hidden;
}
.gdm-poster::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,0,0,.3));
}
.gdm-social { display: grid; grid-template-rows: 1fr 1fr; gap: 6px; }
.gdm-sq {
  border-radius: 8px;
  background: linear-gradient(135deg, #2E2E2E, var(--primary));
  aspect-ratio: 1;
}
.gdm-sq:last-child { background: linear-gradient(135deg, var(--accent), var(--primary-d)); }
.gdm-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 0 12px 12px; }
.gdm-banner {
  height: 32px; border-radius: 6px;
  background: linear-gradient(90deg, rgba(201,169,110,.4), rgba(110,20,35,.3));
}
.gdm-banner:nth-child(2) { background: linear-gradient(90deg, rgba(110,20,35,.5), rgba(201,169,110,.2)); }
.gdm-banner:nth-child(3) { background: linear-gradient(90deg, rgba(46,46,46,.5), rgba(110,20,35,.3)); }

/* ── DELIVERABLES ────────────────────────────────────── */
.deliverables { background: var(--beige); }
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.deliv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s;
  opacity: 0; transform: translateY(20px);
}
.deliv-card.visible { opacity: 1; transform: translateY(0); transition-delay: var(--delay, 0s); }
.deliv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dc-icon { width: 2.4rem; height: 2.4rem; margin-bottom: 14px; display: block; color: var(--primary); }
.dc-icon svg { width: 100%; height: 100%; }
.deliv-card h3 {
  font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 500; color: var(--text); margin-bottom: 10px; letter-spacing: -.01em;
}
.deliv-card p { font-size: .88rem; color: var(--text-m); line-height: 1.8; font-weight: 300; }

/* ── SHOWCASE ────────────────────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.sc-large { grid-column: span 2; }
.sc-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--beige);
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), box-shadow .4s;
}
.sc-item.visible { opacity: 1; transform: translateY(0); transition-delay: var(--delay, 0s); }
.sc-item:hover { box-shadow: var(--shadow-lg); }
.sci-visual { padding: 20px; background: var(--beige); }
.sci-info {
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.sci-cat {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); font-weight: 600; margin-bottom: 4px;
}
.sci-info h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 500; color: var(--text); letter-spacing: -.01em; }

/* Dashboard showcase */
.dashboard-vis { background: #f0ece7; }
.dv-nav {
  display: flex; align-items: center; gap: 10px;
  background: rgba(110,20,35,.06); padding: 8px 12px;
  margin-bottom: 8px; border-radius: 8px;
}
.dvn-logo { width: 60px; height: 10px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; }
.dvn-links { display: flex; gap: 8px; }
.dvn-links div { width: 30px; height: 6px; background: rgba(110,20,35,.2); border-radius: 2px; }
.dvn-av { width: 24px; height: 24px; border-radius: 50%; background: var(--primary); opacity: .5; margin-left: auto; }
.dv-body { display: flex; gap: 8px; }
.dv-sidebar {
  width: 40px; background: #2E2E2E; border-radius: 8px;
  padding: 8px; display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.dv-sidebar div { width: 20px; height: 20px; border-radius: 5px; background: rgba(255,255,255,.15); }
.dv-sidebar div.act { background: var(--primary); }
.dv-main { flex: 1; }
.dvm-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 8px; }
.met { height: 40px; border-radius: 7px; background: rgba(110,20,35,.1); border: 1px solid rgba(110,20,35,.08); }
.dvm-chart-row { display: flex; gap: 6px; }
.big-chart { flex: 2; height: 80px; border-radius: 8px; background: rgba(110,20,35,.08); border: 1px solid rgba(110,20,35,.06); }
.side-panel { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.side-panel::before, .side-panel::after {
  content: ''; display: block; flex: 1; border-radius: 6px;
  background: rgba(110,20,35,.1); border: 1px solid rgba(110,20,35,.06);
}

/* Mobile app vis */
.mobile-app-vis { display: flex; justify-content: center; padding: 10px; }
.mav-phone {
  background: var(--white); border-radius: 16px;
  border: 1px solid var(--border);
  width: 140px; padding: 14px;
  box-shadow: var(--shadow-sm);
}
.mav-header { margin-bottom: 10px; }
.mav-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
.mav-cards div { height: 50px; border-radius: 8px; background: rgba(110,20,35,.1); }
.mav-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.mav-list div { height: 28px; border-radius: 6px; background: rgba(110,20,35,.06); border: 1px solid rgba(110,20,35,.06); }
.mav-nav { display: flex; justify-content: space-around; padding: 8px 0 4px; border-top: 1px solid rgba(110,20,35,.1); }
.mav-nav div { width: 22px; height: 22px; border-radius: 6px; background: rgba(110,20,35,.12); }
.mav-nav div.act { background: var(--primary); }

/* Landing vis */
.landing-vis { background: var(--beige); }
.lv-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 8px; background: rgba(255,255,255,.7); border-radius: 8px; }
.lv-links { display: flex; gap: 6px; margin-left: auto; }
.lv-links div { width: 24px; height: 6px; background: rgba(110,20,35,.2); border-radius: 2px; }
.lv-btn { width: 40px; height: 18px; background: var(--primary); border-radius: 5px; opacity: .7; }
.lv-hero { display: flex; gap: 10px; align-items: center; }
.lvh-text { flex: 1; }
.lvh-img {
  width: 100px; height: 70px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.4), rgba(110,20,35,.3));
}

/* ── SERVICE PROCESS ─────────────────────────────────── */
.svc-process { background: var(--beige); }
.sp-steps {
  display: flex; align-items: flex-start;
  gap: 0; position: relative;
}
.sp-step {
  flex: 1; text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--delay, 0s);
}
.sp-step.visible { opacity: 1; transform: translateY(0); }
.sp-step:hover { box-shadow: var(--shadow-md); }
.sp-connector {
  flex-shrink: 0; width: 24px; margin-top: 40px;
  height: 1px; background: var(--border);
}
.sps-num {
  font-family: var(--font-head); font-size: 3rem;
  font-weight: 300; color: rgba(110,20,35,.12);
  margin-bottom: 10px; line-height: 1;
}
.sp-step h3 {
  font-family: var(--font-head); font-size: 1.15rem;
  font-weight: 500; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em;
}
.sp-step p { font-size: .84rem; color: var(--text-m); line-height: 1.75; font-weight: 300; }

/* ── SERVICE PRICING ─────────────────────────────────── */
.svc-pricing { background: var(--white); }
.sp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spp-card {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), box-shadow .4s;
}
.spp-card.visible { opacity: 1; transform: translateY(0); transition-delay: var(--delay, 0s); }
.spp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.spp-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  border-color: transparent; color: #fff;
}
.spp-featured h3 { color: #fff !important; }
.spp-featured ul li { color: rgba(255,255,255,.85) !important; }
.spp-featured ul li::before { background: var(--accent) !important; }
.spp-featured .spp-price { color: #fff !important; }
.spp-featured .spp-price span { color: rgba(255,255,255,.8) !important; }
.spp-featured .sf { color: rgba(255,255,255,.6) !important; }
.spp-featured .spp-pop { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.spp-featured .btn { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); box-shadow: none; }
.spp-featured .btn:hover { background: rgba(255,255,255,.25); }
.spp-pop {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: .6rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.spp-card h3 {
  font-family: var(--font-head); font-size: 1.4rem;
  font-weight: 500; color: var(--text);
  margin-bottom: 16px; letter-spacing: -.01em;
}
.spp-price {
  font-family: var(--font-head); font-size: 2.8rem;
  font-weight: 400; color: var(--primary);
  margin-bottom: 24px; display: flex; align-items: baseline; gap: 2px;
}
.spp-price span { font-family: var(--font-body); font-size: .95rem; font-weight: 400; }
.sf { font-size: 1rem; color: var(--text-l); margin-left: 2px; }
.spp-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.spp-card ul li {
  font-size: .87rem; color: var(--text-m);
  padding-left: 20px; position: relative; font-weight: 300; line-height: 1.5;
}
.spp-card ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
}

/* ── SERVICE TESTIMONIAL ─────────────────────────────── */
.svc-testi { background: var(--beige); }
.svc-testi-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  box-shadow: var(--shadow-md);
}
.svc-testi-inner .tc-stars { font-size: 1.1rem; color: var(--accent); letter-spacing: 3px; margin-bottom: 20px; }
.svc-testi-inner blockquote {
  font-family: var(--font-head); font-size: 1.4rem;
  color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 28px;
  font-weight: 400; letter-spacing: -.01em;
}
.svc-testi-inner .tc-author { justify-content: center; }

/* ── RESPONSIVE ──────────────────────────────────────── */

/* ── 900px ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .svc-hero { min-height: auto; padding-top: calc(var(--nav-h) + 48px); padding-bottom: 64px; }
  .sh-grid-layout { grid-template-columns: 1fr; text-align: center; }
  .sh-visual { display: none; }
  .sh-content { max-width: 600px; margin: 0 auto; }
  .sh-ctas { justify-content: center; }
  .sh-tags { justify-content: center; }
  .sh-title { font-size: clamp(2.2rem, 5.5vw, 3.2rem); }
  .deliv-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-steps { flex-direction: column; }
  .sp-connector { width: 1px; height: 20px; margin: 0 auto; }
  .sp-pricing-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .sc-large { grid-column: span 1; }
  .svc-testi-inner { padding: 36px 28px; }
  .svc-testi-inner blockquote { font-size: 1.2rem; }
}

/* ── 700px ───────────────────────────────────────────── */
@media (max-width: 700px) {
  .sp-pricing-grid { grid-template-columns: 1fr; }
  .sh-title { font-size: clamp(2rem, 7vw, 3rem); }
  .svc-hero { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 56px; }
}

/* ── 600px ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .deliv-grid { grid-template-columns: 1fr; }
  .sh-ctas { flex-direction: column; align-items: center; }
  .sh-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .spp-pop { font-size: .56rem; letter-spacing: .12em; }
}

/* ── 480px ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .svc-hero { padding-top: calc(var(--nav-h) + 20px); padding-bottom: 48px; }
  .sh-title { font-size: clamp(1.9rem, 10vw, 2.8rem); line-height: 1.08; }
  .sh-desc { font-size: .95rem; }
  .sp-step { padding: 20px 16px; }
  .sps-num { font-size: 2.2rem; }
  .sp-step h3 { font-size: 1rem; }
  .deliv-card { padding: 24px 18px; }
  .dc-icon { width: 2rem; height: 2rem; margin-bottom: 10px; }
  .spp-card { padding: 28px 18px; }
  .spp-price { font-size: 2.2rem; }
  .spp-card h3 { font-size: 1.2rem; }
  .svc-testi-inner { padding: 28px 18px; border-radius: 20px; }
  .svc-testi-inner blockquote { font-size: 1.05rem; }
  .svc-testi-inner .tc-stars { font-size: .95rem; }
  .sh-back { font-size: .65rem; }
  .sh-tags span { font-size: .6rem; }
}
