/* ==========================================================================
   SS DIGITAL PRINTS — style.css
   Formal, trendy LIGHT theme · Printing & Designing, Chennai
   Fonts: Space Grotesk (display) · Inter (body) · Instrument Serif (accents)
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* surfaces */
  --paper: #F7F6F1;          /* warm light page background */
  --surface: #FFFFFF;        /* cards */
  --shell: #F1EFEA;          /* deeper section alternation */
  --ink-band: #14141B;       /* dark bands / footer */

  /* text */
  --ink: #1A1A23;            /* headings — deep formal navy-black */
  --body: #4E4E5A;           /* paragraph text */
  --muted: #83838F;          /* captions */

  /* borders */
  --line: #E6E3DA;           /* warm light border */
  --line-soft: #EEEBE3;

  /* print accents (formal CMYK, tuned for light bg) */
  --c: #0099C4;              /* cyan */
  --c-tint: #E3F3F9;
  --m: #DC1F7A;              /* magenta */
  --m-tint: #FBE8F2;
  --y: #F2B705;              /* amber yellow */
  --y-tint: #FFF5D8;

  /* brand actions */
  --wa: #1FB85C;             /* whatsapp green */
  --wa-dark: #15A34E;

  /* fx */
  --radius: 20px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(26, 26, 35, 0.05);
  --shadow-md: 0 14px 36px -12px rgba(26, 26, 35, 0.14);
  --shadow-lg: 0 30px 70px -24px rgba(26, 26, 35, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--body);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

::selection { background: var(--m); color: #fff; }

h1, h2, h3, h4, .display { font-family: var(--font-display); color: var(--ink); letter-spacing: -0.02em; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 118px) 0; position: relative; }
.section-alt { background: var(--surface); border-block: 1px solid var(--line-soft); }
.section-shell { background: var(--shell); border-block: 1px solid var(--line-soft); }

/* ---------- 3. Typography helpers ---------- */
.serif-it { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.grad-text {
  background: linear-gradient(92deg, var(--c) 0%, var(--m) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.accent-m { color: var(--m); }
.accent-c { color: var(--c); }
.accent-y { color: #C78F00; }

.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.kicker.center { justify-content: center; }
.kicker .k-line { width: 42px; height: 2px; background: linear-gradient(90deg, var(--c), var(--m), var(--y)); border-radius: 2px; }
.kicker .k-label { font-size: 12px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.kicker .k-num { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--c); }

.title-xl { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 700; line-height: 1.07; }
.title-lg { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; line-height: 1.1; }
.lead { font-size: clamp(1rem, 1.4vw, 1.14rem); color: var(--body); max-width: 640px; margin-top: 18px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.mt-lead-center { margin-inline: auto; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px; letter-spacing: 0.01em;
  padding: 16px 28px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn:hover svg.arr { transform: translate(2px, -2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { box-shadow: 0 16px 40px -12px rgba(26, 26, 35, 0.45); }
.btn-magenta { background: var(--m); color: #fff; }
.btn-magenta:hover { background: #C4186B; box-shadow: 0 16px 44px -12px rgba(220, 31, 122, 0.5); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 16px 44px -12px rgba(31, 184, 92, 0.5); }
.btn-line { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost-light:hover { border-color: #fff; }
.btn-sm { padding: 11px 20px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- 5. Header ---------- */
.topbar {
  background: var(--ink-band); color: #CFCFD8; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-align: center; padding: 9px 16px; position: relative; z-index: 60;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--y); }
.topbar .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--y); margin-right: 8px; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 246, 241, 0.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(255, 255, 255, 0.92); box-shadow: 0 6px 24px -12px rgba(26,26,35,0.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark-wrap { position: relative; width: 44px; height: 44px; flex-shrink: 0; }
.logo-mark-wrap svg { display: block; }
.logo-mark-wrap .ss {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; text-shadow: 0 1px 5px rgba(0,0,0,0.45);
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1.05; letter-spacing: -0.02em; }
.logo-text b { color: var(--m); font-weight: 700; }
.logo-text small { display: block; font-size: 8.5px; font-weight: 700; letter-spacing: 0.34em; color: var(--muted); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a.nav-link {
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--body);
  padding: 4px 0; background: linear-gradient(currentColor, currentColor) left bottom / 0% 1.8px no-repeat;
  transition: color 0.25s, background-size 0.3s;
}
.nav a.nav-link:hover { color: var(--ink); background-size: 100% 1.8px; }
.nav a.nav-link.active { color: var(--m); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 50%; background: var(--surface); position: relative; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile-cta { display: none; }

/* ---------- 6. Hero (home) ---------- */
.hero { position: relative; padding: clamp(84px, 10vw, 128px) 0 clamp(64px, 7vw, 96px); overflow: hidden; }
.bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(26,26,35,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(26,26,35,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 28%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 28%, black 30%, transparent 100%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; }
.blob-c { width: 400px; height: 400px; background: rgba(0,153,196,0.14); top: -120px; left: 12%; }
.blob-m { width: 380px; height: 380px; background: rgba(220,31,122,0.12); top: 24%; right: -100px; }
.blob-y { width: 320px; height: 320px; background: rgba(242,183,5,0.14); bottom: -120px; left: -60px; }

.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; gap: clamp(40px, 5vw, 72px); align-items: center; position: relative; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 18px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--body);
  box-shadow: var(--shadow-sm);
}
.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--m); flex-shrink: 0; }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--m); opacity: 0.5; animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.7; } 80%, 100% { transform: scale(1.5); opacity: 0; } }

.hero h1 { font-size: clamp(2.7rem, 6.4vw, 5rem); font-weight: 700; line-height: 1.0; margin-top: 26px; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--body); max-width: 560px; margin-top: 22px; }
.hero-sub b { color: var(--ink); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; fill: var(--y); }
.trust-item { font-size: 14px; color: var(--body); }
.trust-item b { font-family: var(--font-display); color: var(--ink); font-size: 16px; }

/* hero visual */
.hero-visual { position: relative; max-width: 520px; margin-inline: auto; width: 100%; }
.crop { position: absolute; width: 18px; height: 18px; color: rgba(26,26,35,0.4); }
.crop.tl { top: -9px; left: -9px; } .crop.tr { top: -9px; right: -9px; }
.crop.bl { bottom: -9px; left: -9px; } .crop.br { bottom: -9px; right: -9px; }
.hero-img-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: var(--surface);
}
.hero-img-frame img { width: 100%; aspect-ratio: 4 / 4.35; object-fit: cover; }
.cmyk-strip { position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: linear-gradient(90deg, var(--c) 0 25%, var(--m) 25% 50%, var(--y) 50% 75%, #fff 75% 100%); }

.float-chip {
  position: absolute; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px;
  font-size: 12.5px; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-md); z-index: 3;
}
.float-chip svg { width: 15px; height: 15px; }
.chip-tl { top: 22px; left: 22px; }
.chip-tl svg { color: var(--m); }

.float-stat {
  position: absolute; right: 22px; bottom: 32px; z-index: 3; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 18px; padding: 14px 20px; box-shadow: var(--shadow-md);
}
.float-stat b { display: block; font-family: var(--font-display); font-size: 26px; color: var(--ink); line-height: 1; }
.float-stat small { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.rot-badge { position: absolute; left: -34px; bottom: -26px; width: 118px; height: 118px; z-index: 4; }
.rot-badge svg.text-ring { position: absolute; inset: 0; animation: spin 14s linear infinite; }
.rot-badge .rot-core {
  position: absolute; inset: 0; margin: auto; width: 48px; height: 48px; border-radius: 50%;
  background: var(--m); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(220,31,122,0.55);
}
.rot-badge .rot-core svg { width: 22px; height: 22px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 7. Marquee band ---------- */
.band { background: var(--ink-band); color: #fff; padding: 18px 0; }
.marquee { overflow: hidden; position: relative; }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track.slow { animation-duration: 55s; }
.mq-set { display: flex; align-items: center; flex-shrink: 0; }
.mq-item { display: flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 0 26px; white-space: nowrap; }
.mq-dot { width: 9px; height: 9px; transform: rotate(45deg); background: var(--c); flex-shrink: 0; }
.mq-dot.dm { background: var(--m); } .mq-dot.dy { background: var(--y); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 8. Client logo carousel ---------- */
.clients-strip { padding: clamp(56px, 7vw, 88px) 0; }
.strip-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 36px; }
.strip-label b { color: var(--m); }
.logo-carousel { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.client-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 14px 26px; margin: 0 10px; font-family: var(--font-display); font-weight: 700;
  font-size: 15.5px; color: var(--ink); white-space: nowrap; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s; flex-shrink: 0;
}
.client-badge:hover { transform: translateY(-3px); border-color: var(--ink); }
.client-badge::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--dc, var(--c)); flex-shrink: 0; }
.client-badge .cb-kind { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.dc-c { --dc: var(--c); } .dc-m { --dc: var(--m); } .dc-y { --dc: var(--y); }

/* interactive client logo slider */
.slider-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 38px; }
.slider-head .strip-label { margin-bottom: 0; }
.slider-ctrls { display: flex; gap: 10px; }
.slider-ctrl {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface);
  color: var(--ink); display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.slider-ctrl:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.slider-ctrl:active { transform: translateY(0) scale(0.94); }
.slider-ctrl[disabled] { opacity: 0.4; pointer-events: none; }
.slider-ctrl svg { width: 17px; height: 17px; }
.logo-slider {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.logo-track {
  display: flex; width: max-content; will-change: transform; cursor: grab;
  user-select: none; -webkit-user-select: none; touch-action: pan-y;
}
.logo-track.dragging { cursor: grabbing; }
.logo-track .client-badge { flex-shrink: 0; }

/* ---------- 9. Grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #D8D4C8; }

.icon-tile { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; transition: transform 0.35s var(--ease); }
.icon-tile svg { width: 23px; height: 23px; }
.card:hover .icon-tile { transform: scale(1.1) rotate(4deg); }
.tone-c { background: var(--c-tint); color: var(--c); }
.tone-m { background: var(--m-tint); color: var(--m); }
.tone-y { background: var(--y-tint); color: #B07E00; }
.tone-k { background: #ECEAE4; color: var(--ink); }

.svc-card h3 { font-size: 18px; font-weight: 700; margin-top: 18px; line-height: 1.3; }
.svc-card p { font-size: 14px; color: var(--body); margin-top: 8px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color 0.25s; }
.svc-card:hover .svc-link { color: var(--m); }
.svc-link svg { width: 13px; height: 13px; transition: transform 0.3s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

.section-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head-row.center-row { justify-content: center; text-align: center; }
.link-more { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); transition: color 0.25s; }
.link-more:hover { color: var(--m); }
.link-more .lm-circle { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: all 0.3s var(--ease); }
.link-more:hover .lm-circle { background: var(--ink); border-color: var(--ink); color: #fff; transform: rotate(45deg); }
.link-more svg { width: 15px; height: 15px; }

/* tags & popular */
.tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--body); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; background: var(--paper); }
.popular-tag { position: absolute; top: 22px; right: 22px; display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #B07E00; background: var(--y-tint); border-radius: 999px; padding: 5px 11px; }
.popular-tag svg { width: 11px; height: 11px; }

/* ---------- 10. Why us ---------- */
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 5vw, 70px); align-items: start; }
.sticky-col { position: sticky; top: 110px; }
.reason {
  display: flex; gap: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.reason:hover { border-color: #D8D4C8; box-shadow: var(--shadow-md); transform: translateX(6px); }
.reason + .reason { margin-top: 14px; }
.reason-num { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--rc, var(--c)); line-height: 1; flex-shrink: 0; }
.reason h3 { font-size: 18px; font-weight: 700; }
.reason p { font-size: 14px; margin-top: 5px; }

.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); margin-top: 34px; }
.media-frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.8s var(--ease); }
.media-frame:hover img { transform: scale(1.05); }
.media-tag { position: absolute; left: 16px; bottom: 16px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 12px; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- 11. Steps ---------- */
.steps-wrap { position: relative; }
.steps-line { position: absolute; left: 4%; right: 4%; top: 44px; height: 2px; background: linear-gradient(90deg, var(--c), var(--m), var(--y)); opacity: 0.4; display: none; }
.step-card { text-align: left; }
.step-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--ink); border: 6px solid var(--paper); display: grid; place-items: center; position: relative; z-index: 2; transition: transform 0.35s var(--ease); }
.step-card:hover .step-icon { transform: scale(1.08) rotate(-5deg); }
.step-icon svg { width: 22px; height: 22px; color: var(--sc, var(--c)); }
.step-no { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sc, var(--c)); margin-top: 22px; }
.step-card h3 { font-size: 19px; font-weight: 700; margin-top: 6px; }
.step-card p { font-size: 14px; margin-top: 8px; }

/* ---------- 12. Gallery ---------- */
.img-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); margin-top: clamp(36px, 4vw, 52px); }
.gal-card { position: relative; width: 300px; height: 220px; border-radius: 18px; overflow: hidden; flex-shrink: 0; margin-right: 20px; border: 1px solid var(--line); display: block; }
.gal-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(35%); transition: filter 0.5s, transform 0.6s var(--ease); }
.gal-card:hover img { filter: grayscale(0); transform: scale(1.07); }
.gal-cap { position: absolute; inset-inline: 0; bottom: 0; padding: 30px 16px 14px; background: linear-gradient(transparent, rgba(20,20,27,0.85)); color: #fff; }
.gal-cap b { display: block; font-family: var(--font-display); font-size: 14px; }
.gal-cap small { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--y); }

.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill { font-family: var(--font-display); font-size: 13px; font-weight: 700; padding: 11px 22px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--body); transition: all 0.3s var(--ease); }
.pill:hover { border-color: var(--ink); color: var(--ink); }
.pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.pill.active.pink { background: var(--m); border-color: var(--m); }

.gal-grid { columns: 3 300px; column-gap: 20px; }
.gal-item { position: relative; break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; background: var(--surface); }
.gal-item img { width: 100%; transition: transform 0.6s var(--ease); }
.gal-item:hover img { transform: scale(1.05); }
.gal-item .gi-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(20,20,27,0.85)); }
.gal-item .gi-text { position: absolute; inset-inline: 0; bottom: 0; padding: 18px 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.gal-item .gi-text b { display: block; font-family: var(--font-display); font-size: 15px; color: #fff; }
.gal-item .gi-text small { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--y); }
.gi-expand { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.35); color: #fff; backdrop-filter: blur(6px); opacity: 0; transform: translateY(6px); transition: all 0.3s var(--ease); flex-shrink: 0; }
.gal-item:hover .gi-expand { opacity: 1; transform: none; }
.gi-expand svg { width: 15px; height: 15px; }

.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20,20,27,0.9); backdrop-filter: blur(10px); display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-fig { max-width: 880px; width: 100%; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; transform: scale(0.94) translateY(14px); transition: transform 0.35s var(--ease); }
.lightbox.open .lightbox-fig { transform: none; }
.lightbox-fig img { width: 100%; max-height: 72vh; object-fit: cover; }
.lightbox-bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; }
.lightbox-bar b { font-family: var(--font-display); color: var(--ink); display: block; font-size: 15px; }
.lightbox-bar small { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--m); }
.lightbox-close { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: all 0.25s; }
.lightbox-close:hover { border-color: var(--ink); transform: rotate(90deg); }
.lightbox-close svg { width: 16px; height: 16px; }

/* ---------- 13. Testimonials ---------- */
.tst-card { display: flex; flex-direction: column; height: 100%; }
.tst-card .q-mark { width: 30px; height: 30px; color: #DEDAce; color: #DEDAC9; }
.tst-card blockquote { font-family: var(--font-display); font-size: 16.5px; font-weight: 500; line-height: 1.6; color: var(--ink); margin-top: 14px; flex: 1; }
.tst-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.tst-foot b { font-family: var(--font-display); font-size: 14px; color: var(--ink); display: block; }
.tst-foot small { font-size: 12px; color: var(--muted); }

/* ---------- 14. FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item.open { border-color: #D8D4C8; box-shadow: var(--shadow-md); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; padding: 20px 24px; font-family: var(--font-display); font-size: 15.5px; font-weight: 700; color: var(--ink); }
.faq-chev { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: all 0.35s var(--ease); }
.faq-chev svg { width: 14px; height: 14px; }
.faq-item.open .faq-chev { background: var(--ink); border-color: var(--ink); color: #fff; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: 14px; color: var(--body); }

/* ---------- 15. Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.stat-cell { padding: 34px 20px; text-align: center; border-left: 1px solid var(--line-soft); }
.stat-cell:first-child { border-left: 0; }
.stat-cell b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; color: var(--ink); line-height: 1; }
.stat-cell.grad b { background: linear-gradient(92deg, var(--c), var(--m)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-cell small { display: block; margin-top: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ---------- 16. CTA band ---------- */
.cmyk-line { height: 6px; background: linear-gradient(90deg, var(--c) 0 25%, var(--m) 25% 50%, var(--y) 50% 75%, #FFFFFF 75% 100%); }
.cta-band { background: var(--ink-band); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band .container { padding-block: clamp(72px, 9vw, 110px); position: relative; }
.cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--y); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 700; line-height: 1.06; max-width: 780px; margin: 18px auto 0; }
.cta-band p { color: #B9B9C6; max-width: 560px; margin: 18px auto 0; font-size: clamp(0.98rem, 1.3vw, 1.1rem); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.cta-blob { position: absolute; width: 320px; height: 320px; border-radius: 50%; filter: blur(120px); opacity: 0.25; }
.cta-blob.bl1 { background: var(--m); left: -80px; top: 50%; transform: translateY(-50%); }
.cta-blob.bl2 { background: var(--c); right: -80px; top: 50%; transform: translateY(-50%); }

/* ---------- 17. Footer ---------- */
.footer { background: var(--ink-band); color: #A8A8B6; position: relative; }
.footer .container { padding: clamp(56px, 7vw, 84px) 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 1fr 1.1fr; gap: 44px; }
.footer h4 { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer p.about { font-size: 14px; line-height: 1.7; max-width: 340px; margin-top: 20px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14px; transition: color 0.25s; }
.footer ul a:hover { color: var(--y); }
.footer .logo-text { color: #fff; }
.footer .logo-text small { color: #8B8B98; }
.f-contact li { display: flex; gap: 12px; font-size: 13.5px; align-items: flex-start; }
.f-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.f-contact small { display: block; font-size: 11px; color: #7C7C8A; }
.f-dots { display: flex; gap: 6px; margin-top: 22px; }
.f-dots span { height: 6px; border-radius: 4px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(255,255,255,0.09); margin-top: 52px; padding-top: 26px; font-size: 12px; }
.to-top { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 12px; color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 9px 16px; transition: border-color 0.3s, background 0.3s; }
.to-top:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

/* ---------- 18. WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 16px 40px -10px rgba(31,184,92,0.6); transition: transform 0.3s var(--ease), background 0.3s;
}
.wa-float:hover { transform: translateY(-4px); background: var(--wa-dark); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--wa); animation: wa-pulse 2.2s var(--ease) infinite; z-index: -1; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.5; } 80%, 100% { transform: scale(1.85); opacity: 0; } }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- 19. Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: clamp(84px, 10vw, 130px) 0 clamp(46px, 5vw, 70px); overflow: hidden; }
.page-hero h1 { font-size: clamp(2.3rem, 5.4vw, 4.2rem); font-weight: 700; line-height: 1.04; max-width: 880px; margin-top: 24px; }

/* ---------- 20. Vision & misc cards ---------- */
.vision-card { overflow: hidden; }
.vision-card .v-glow { position: absolute; top: -60px; right: -60px; width: 190px; height: 190px; border-radius: 50%; filter: blur(70px); }
.vision-label { font-size: 11px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; margin-top: 26px; }
.vision-card h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 700; line-height: 1.55; margin-top: 10px; }

.gradient-frame { padding: 1.5px; border-radius: var(--radius); background: linear-gradient(135deg, var(--c), var(--m), var(--y)); }
.gradient-frame .gf-inner { background: var(--surface); border-radius: calc(var(--radius) - 1.5px); height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; transition: background 0.4s; }
.gradient-frame:hover .gf-inner { background: linear-gradient(135deg, #F2FAFD, #FDF0F6); }

/* ---------- 21. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 24px; align-items: start; }
.wa-hero-card {
  display: flex; align-items: center; gap: 20px; background: linear-gradient(120deg, var(--wa), #17A24C);
  border-radius: var(--radius-lg); padding: 26px; color: #fff; box-shadow: 0 24px 50px -20px rgba(31,184,92,0.55);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-hero-card:hover { transform: translateY(-4px); }
.wa-hero-card .wh-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.2); display: grid; place-items: center; flex-shrink: 0; }
.wa-hero-card .wh-icon svg { width: 26px; height: 26px; }
.wa-hero-card b { display: block; font-family: var(--font-display); font-size: 18px; }
.wa-hero-card p { font-size: 13.5px; opacity: 0.9; }
.wa-hero-card .wh-num { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; text-decoration: underline; text-underline-offset: 4px; display: inline-block; margin-top: 4px; }
.wa-hero-card > svg.arr { margin-left: auto; width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.3s; }
.wa-hero-card:hover > svg.arr { transform: translate(3px, -3px); }

.c-mini { display: flex; flex-direction: column; height: 100%; }
.c-mini .icon-tile { width: 44px; height: 44px; border-radius: 13px; }
.c-mini b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink); margin-top: 15px; }
.c-mini p { font-size: 13.5px; margin-top: 4px; }
.c-mini .c-go { margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; }
.c-mini .c-go svg { width: 12px; height: 12px; }

.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.area-chips span { font-size: 12px; font-weight: 600; color: var(--body); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; }
.area-chips span.all { background: var(--y-tint); border-color: transparent; color: #8A6400; font-weight: 700; }

.form-card { padding: clamp(28px, 4vw, 40px); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.form-card .cmyk-line { position: absolute; top: 0; left: 0; right: 0; border-radius: 0; }
.form-card h2 { margin-top: 14px; }
.form-sub { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 15px; padding: 15px 18px;
  font-size: 15px; color: var(--ink); outline: none; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  appearance: none; -webkit-appearance: none;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--m); background: #fff; box-shadow: 0 0 0 4px rgba(220,31,122,0.1);
}
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231A1A23' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 16px; }
.form-note a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 22. Landing page ---------- */
.lp { background: var(--paper); }
.lp-header .header-inner { height: 68px; }
.lp-hero { padding: clamp(56px, 7vw, 96px) 0 clamp(60px, 7vw, 92px); position: relative; overflow: hidden; }
.lp-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(36px, 5vw, 64px); align-items: center; position: relative; }
.lp-points { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.lp-points li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--ink); }
.lp-points svg { width: 19px; height: 19px; color: var(--wa); flex-shrink: 0; }

.lp-form-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(26px, 3vw, 36px); }
.lp-form-card .ribbon { position: absolute; top: -14px; left: 28px; background: var(--m); color: #fff; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; box-shadow: 0 10px 24px -8px rgba(220,31,122,0.55); }
.lp-form-card h2 { font-size: 22px; }
.lp-form-card .form-grid { margin-top: 22px; grid-template-columns: 1fr; }
.lp-call-alt { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--body); }
.lp-call-alt a { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.lp-call-alt svg { width: 15px; height: 15px; color: var(--c); }

.lp-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-svc { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; transition: all 0.3s var(--ease); }
.lp-svc:hover { transform: translateY(-3px); border-color: var(--m); box-shadow: var(--shadow-md); }
.lp-svc .icon-tile { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; }
.lp-svc .icon-tile svg { width: 19px; height: 19px; }
.lp-svc b { font-family: var(--font-display); font-size: 14px; color: var(--ink); line-height: 1.25; display: block; }
.lp-svc small { font-size: 11.5px; color: var(--muted); }

.offer-card { background: linear-gradient(120deg, var(--ink-band), #25253A); border-radius: var(--radius-lg); color: #fff; padding: clamp(30px, 5vw, 52px); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items: center; position: relative; overflow: hidden; }
.offer-card h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.12; }
.offer-card p { color: #B9B9C6; margin-top: 12px; font-size: 15px; }
.offer-checks { display: flex; flex-direction: column; gap: 12px; position: relative; }
.offer-checks li { display: flex; gap: 12px; align-items: center; font-size: 14.5px; font-weight: 600; color: #EDEDF2; }
.offer-checks svg { width: 19px; height: 19px; color: var(--y); flex-shrink: 0; }

.lp-sticky-cta { display: none; position: fixed; inset-inline: 0; bottom: 0; z-index: 80; background: rgba(255,255,255,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
.lp-sticky-cta .btn { flex: 1; padding: 14px 10px; font-size: 13.5px; }

.lp-footer { background: var(--ink-band); color: #A8A8B6; text-align: center; padding: 40px 0 96px; font-size: 13px; }
.lp-footer .logo { justify-content: center; margin-bottom: 16px; }
.lp-footer .logo-text { color: #fff; text-align: left; }

/* ---------- 23. Responsive ---------- */
@media (min-width: 1024px) {
  .steps-line { display: block; }
}
@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split, .lp-grid, .contact-grid { grid-template-columns: 1fr; }
  .sticky-col { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav {
    position: fixed; inset: 0; top: 0; z-index: 49; background: rgba(247,246,241,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; justify-content: center; padding: 90px 8% 40px; gap: 8px;
    transform: translateY(-102%); transition: transform 0.5s var(--ease); height: 100dvh;
  }
  .nav.open { transform: none; box-shadow: 0 30px 60px rgba(26,26,35,0.2); }
  .nav a.nav-link { font-size: 30px; font-weight: 700; color: var(--ink); padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a.nav-link.active { color: var(--m); }
  .nav-mobile-cta { display: inline-flex; margin-top: 26px; }
  .nav-toggle { display: block; z-index: 51; }
  .header-quote { display: none; }
  .rot-badge { left: -6px; }
  .offer-card { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .nav { position: static; transform: none; height: auto; padding: 0; background: transparent; backdrop-filter: none; }
}
@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
  .lp-services { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3) { border-left: 0; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 11px; }
  .rot-badge { width: 96px; height: 96px; bottom: -20px; }
  .float-stat { right: 14px; bottom: 24px; padding: 10px 16px; }
  .float-stat b { font-size: 22px; }
  .gal-card { width: 250px; height: 185px; }
  .lp-sticky-cta { display: flex; }
  body.lp-body { padding-bottom: 76px; }
  .wa-float { right: 16px; bottom: 92px; }
  .topbar.hide-sm { display: none; }
  .hero { padding-top: 56px; }
  .reason:hover { transform: none; }
}
@media (max-width: 480px) {
  .lp-services { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- 24. Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
