/* ===========================================================
   EVOLVIA MEDIA — Stylesheet
   Farben & Schriften aus dem bestehenden Corporate Design
   =========================================================== */

/* Selbst gehostete Schriften (statt Google Fonts CDN) – keine Verbindung zu
   Google-Servern beim Seitenaufruf, damit keine Einwilligung dafür nötig ist. */
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-italic-500.woff2') format('woff2');
}

:root {
  --cream: #F5F4EF;
  --cream-2: #efeee6;
  --dark: #292828;
  --dark-2: #33322f;
  --dark-3: #201f1e;
  --purple: #9B51E0;
  --purple-dark: #7A3BC4;
  --purple-light: #F1E7FB;
  --purple-accent: #C596F0;
  --muted: #4a4948;
  --muted-2: #a9a8a5;
  --muted-3: #8f8e8b;
  --line: rgba(41,40,40,0.1);
  --line-light: rgba(245,244,239,0.12);
  --shadow-lg: 0 30px 60px rgba(41,40,40,0.12);
  --ease: cubic-bezier(.16,.8,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--purple);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--purple-dark); }

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

h1, h2, h3, h4 { margin: 0; }

.display {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--purple-accent); }
.eyebrow.on-dark::before { background: var(--purple-accent); }
.eyebrow.on-purple { color: #fff; }
.eyebrow.on-purple::before { background: #fff; }
.eyebrow.center { justify-content: center; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 10px 24px rgba(155,81,224,0.28); }
.btn-primary:hover { background: var(--purple-dark); color: #fff; }
.btn-dark { background: var(--dark); color: var(--cream); }
.btn-dark:hover { background: var(--purple); color: #fff; }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); }
.btn-outline-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(245,244,239,0.5); }
.btn-outline-light:hover { background: var(--cream); color: var(--dark); }
.btn-on-purple { background: #fff; color: var(--purple-dark); }
.btn-on-purple:hover { background: var(--dark); color: #fff; }
.btn-sm { padding: 12px 24px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.btn-block { width: 100%; }

.icon-circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(41,40,40,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  flex: none;
}
.icon-circle:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-2px); }
.icon-circle svg { transition: stroke .18s ease; }
.icon-circle:hover svg { stroke: #fff; }
.icon-circle.light { border-color: rgba(245,244,239,0.3); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: 0 8px 24px rgba(41,40,40,0.06); }
.nav-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; flex: none; }
.nav-logo img { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.navlink {
  font-weight: 700; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--dark); padding: 10px 18px; border-radius: 10px;
  transition: background .18s ease, color .18s ease;
  position: relative;
}
.navlink:hover { background: var(--purple); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-menu-btn {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  border: 1.5px solid var(--dark); border-radius: 50%; flex: none; background: none; cursor: pointer;
  position: relative;
}
.mobile-menu-btn span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: transform .28s var(--ease), opacity .2s ease, top .28s var(--ease);
}
.mobile-menu-btn span:nth-child(1) { top: 15px; }
.mobile-menu-btn span:nth-child(2) { top: 20px; }
.mobile-menu-btn span:nth-child(3) { top: 25px; }
.mobile-menu-btn.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu-panel {
  display: flex; flex-direction: column; gap: 2px;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(20px, 5vw, 64px);
  max-height: 0; overflow: hidden;
  transition: max-height .32s var(--ease), padding .32s var(--ease);
}
.mobile-menu-panel.open { max-height: 420px; padding-top: 12px; padding-bottom: 20px; box-shadow: 0 20px 30px rgba(41,40,40,0.08); }
.mobile-menu-panel a:not(.btn) {
  padding: 13px 4px; font-weight: 500; font-size: 15px; color: var(--dark);
  border-bottom: 1px solid rgba(41,40,40,0.07);
}
.mobile-menu-panel .btn { margin-top: 14px; justify-content: center; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .08s; }
.reveal-delay-2.in-view { transition-delay: .16s; }
.reveal-delay-3.in-view { transition-delay: .24s; }
.reveal-delay-4.in-view { transition-delay: .32s; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(48px, 8vw, 88px); padding-bottom: clamp(40px, 6vw, 60px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  margin-top: 18px;
}
.hero-copy h1 .accent { color: var(--purple); }
.hero-copy p.lead {
  font-size: 18px; line-height: 1.65; color: var(--muted);
  max-width: 480px; margin: 22px 0 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap;
}
.hero-meta .avatars { display: flex; }
.hero-meta .avatars img {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--cream); margin-left: -10px;
}
.hero-meta .avatars img:first-child { margin-left: 0; }
.hero-meta .meta-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.hero-meta .meta-text strong { color: var(--dark); }

/* --- Hero visual: floating mockups (Animation #1) --- */
.hero-visual {
  position: relative;
  height: clamp(340px, 42vw, 480px);
  perspective: 1200px;
}
.hero-visual-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
}
.mockup {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(41,40,40,0.18);
  will-change: transform;
  transition: transform .1s linear;
}
.mockup-browser {
  left: 2%; top: 8%;
  width: 68%;
  background: #fff;
  border: 1px solid rgba(41,40,40,0.08);
  animation: float-a 7s ease-in-out infinite;
}
.mockup-browser .bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
}
.mockup-browser .bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(41,40,40,0.15); }
.mockup-browser .screen { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.mockup-browser .row { display: flex; gap: 10px; }
.mockup-browser .block { border-radius: 8px; background: var(--purple-light); }
.mockup-browser .block.purple { background: var(--purple); }
.mockup-browser .block.dark { background: var(--dark); }

.mockup-phone {
  right: 0%; bottom: 2%;
  width: 40%;
  aspect-ratio: 9/17.5;
  background: var(--dark);
  padding: 10px;
  animation: float-b 8s ease-in-out infinite;
  animation-delay: .4s;
}
.mockup-phone .screen {
  width: 100%; height: 100%; border-radius: 12px; overflow: hidden;
  background: var(--cream);
  display: flex; flex-direction: column;
}
.mockup-phone .post-media {
  flex: 1;
  background: linear-gradient(155deg, var(--purple) 0%, var(--purple-dark) 55%, #5b2e94 100%);
  position: relative;
  display: flex; align-items: flex-end;
}
.mockup-phone .post-media .pulse-heart {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; opacity: 0;
}
.mockup-phone .post-logo-card {
  position: absolute; left: 50%; top: 50%;
  width: 74%; padding: 12px 16px;
  background: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  animation: logoCardGlow 4.5s ease-in-out infinite;
}
.mockup-phone .post-logo-card img { width: 100%; height: auto; display: block; }
@keyframes logoCardGlow {
  0%, 100% { box-shadow: 0 14px 28px rgba(0,0,0,0.22); }
  50% { box-shadow: 0 18px 34px rgba(0,0,0,0.3); }
}
.mockup-phone .post-bar {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
}
.mockup-phone .post-bar .avatar {
  width: 26px; height: 26px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: none; padding: 4px; box-sizing: border-box;
  box-shadow: 0 0 0 1.5px var(--purple);
}
.mockup-phone .post-bar .avatar img { width: 100%; height: 100%; object-fit: contain; display: block; }
.mockup-phone .post-bar .lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mockup-phone .post-bar .lines .line-name { font-size: 10.5px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.mockup-phone .post-bar .lines i { display: block; height: 5px; width: 40%; border-radius: 3px; background: rgba(41,40,40,0.18); font-style: normal; }

.mockup-chip {
  position: absolute; z-index: 3;
  background: #fff; border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 16px 30px rgba(41,40,40,0.16);
  font-size: 12.5px; font-weight: 600;
  animation: float-c 6s ease-in-out infinite;
}
.mockup-chip.chip-1 { left: -4%; bottom: 14%; animation-delay: .8s; }
.mockup-chip.chip-2 { right: 24%; top: 0%; animation-delay: 1.6s; }
.mockup-chip.chip-3 { right: -4%; bottom: -3%; animation-delay: 2.4s; }
.mockup-chip .dot-green { width: 8px; height: 8px; border-radius: 50%; background: #4CAF6D; flex: none; box-shadow: 0 0 0 3px rgba(76,175,109,0.2); }
.mockup-chip svg { flex: none; }

@keyframes float-a {
  0%, 100% { transform: translateY(0px) rotate(-1.2deg); }
  50% { transform: translateY(-14px) rotate(0.4deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0px) rotate(1.5deg); }
  50% { transform: translateY(-18px) rotate(-0.6deg); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes heart-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0; }
  10% { opacity: 1; }
  35% { transform: scale(1.15); opacity: 1; }
  55% { opacity: 0; }
}
.mockup-phone .post-media .pulse-heart { animation: heart-pulse 3.4s ease-in-out infinite; }

/* ---------- Marquee (client logos) ---------- */
.marquee-section { padding: 44px 0; background: var(--dark); overflow: hidden; }
.marquee-label {
  text-align: center; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 26px;
}
.marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 64s linear infinite;
}
.marquee-content { display: flex; align-items: center; gap: 72px; margin-right: 72px; flex: none; }
.marquee-track img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; transition: opacity .2s ease; flex: none; }
.marquee-track img:hover { opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- USP cards ---------- */
.usp-section { padding: clamp(72px, 9vw, 112px) 0; }
.usp-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.usp-head h2 { font-size: clamp(32px, 4.4vw, 46px); margin-top: 14px; }
.usp-head p { font-size: 16px; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usp-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 36px 30px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.usp-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(41,40,40,0.1); border-color: transparent; }
.usp-card .num {
  font-family: 'Anton', sans-serif; font-size: 15px; color: var(--purple-accent);
  -webkit-text-stroke: 1px var(--purple);
  color: transparent;
  margin-bottom: 18px;
}
.usp-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.usp-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.usp-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- Services (dark) ---------- */
.services-section { background: var(--dark); padding: clamp(80px, 10vw, 112px) 0; }
.services-head { max-width: 660px; margin: 0 auto 60px; text-align: center; }
.services-head h2 { font-size: clamp(34px, 4.6vw, 48px); color: var(--cream); margin-top: 14px; }
.services-head p { font-size: 16px; color: var(--muted-2); margin-top: 16px; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: 1fr 1.08fr 1fr; gap: 24px; align-items: stretch; }
.svc-card {
  border-radius: 22px; padding: 38px 32px;
  background: var(--dark-2); border: 1px solid var(--line-light);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); }
.svc-card.featured {
  background: var(--purple);
  transform: translateY(-16px);
  box-shadow: 0 28px 52px rgba(0,0,0,0.28);
}
.svc-card.featured:hover { transform: translateY(-22px); }
.svc-card .eyebrow { margin-bottom: 4px; }
.svc-card h3 { font-size: 21px; font-weight: 600; color: var(--cream); margin: 12px 0 22px; }
.svc-card.featured h3 { color: #fff; }
ul.svc-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
ul.svc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.4; color: #d8d7d4; }
.svc-card.featured ul.svc-list li { color: #fff; }
ul.svc-list li svg { flex: none; margin-top: 3px; }
.svc-price { font-size: 12.5px; color: var(--muted-2); border-top: 1px solid var(--line-light); padding-top: 18px; }
.svc-card.featured .svc-price { color: rgba(255,255,255,0.85); border-top-color: rgba(255,255,255,0.25); }
.svc-price strong { color: var(--cream); font-size: 15px; display: block; margin-bottom: 2px; }
.svc-card.featured .svc-price strong { color: #fff; }

/* ---------- Value / pricing philosophy ---------- */
.value-section { padding: clamp(72px, 9vw, 112px) 0; background: var(--purple-light); }
.value-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.value-copy h2 { font-size: clamp(30px, 4.2vw, 42px); margin: 14px 0 20px; }
.value-copy p { font-size: 15.5px; line-height: 1.7; color: #5a4a6b; margin: 0 0 16px; max-width: 480px; }

.value-compare {
  background: #fff; border-radius: 22px; padding: 34px 32px;
  box-shadow: var(--shadow-lg);
}
.compare-row { margin-bottom: 26px; }
.compare-row:last-child { margin-bottom: 0; }
.compare-row .compare-label { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 600; margin-bottom: 10px; }
.compare-row .compare-label span:last-child { color: var(--muted); font-weight: 500; }
.compare-track { height: 14px; border-radius: 8px; background: var(--purple-light); overflow: hidden; }
.compare-fill { height: 100%; border-radius: 8px; width: 0%; transition: width 1.1s var(--ease); }
.compare-fill.dark { background: var(--dark-2); }
.compare-fill.purple { background: var(--purple); }
.compare-note { font-size: 12.5px; color: var(--muted-2); margin-top: 18px; line-height: 1.5; }

/* ---------- About ---------- */
.about-section { padding: clamp(72px, 9vw, 112px) 0; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 64px); align-items: center; }
.about-photo { position: relative; }
.about-photo .frame {
  width: 100%; aspect-ratio: 4/5; border-radius: 24px; position: relative; overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.about-photo .caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 22px 20px;
  background: linear-gradient(180deg, rgba(41,40,40,0) 0%, rgba(41,40,40,0.78) 100%);
}
.about-photo .caption .name { font-weight: 600; font-size: 15px; color: var(--cream); letter-spacing: 0.3px; }
.about-photo .caption .role { font-size: 12.5px; color: #e2dfe8; letter-spacing: 0.5px; margin-top: 2px; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px; background: var(--purple); color: #fff;
  padding: 16px 22px; border-radius: 16px; box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.about-badge .display { font-size: 22px; }
.about-badge .label { font-size: 11px; letter-spacing: 0.5px; margin-top: 2px; }

.about-copy h2 { font-size: clamp(30px, 4.2vw, 44px); margin: 14px 0 24px; }
.about-copy p { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
.about-tags { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 12px; }
.tag-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.tag-chip svg { flex: none; }

/* ---------- Process (Animation #2) ---------- */
.process-section { padding: clamp(80px, 10vw, 116px) 0; background: var(--dark); overflow: hidden; }
.process-head { max-width: 620px; margin: 0 auto 72px; text-align: center; }
.process-head h2 { font-size: clamp(32px, 4.4vw, 46px); color: var(--cream); margin-top: 14px; }
.process-head p { font-size: 16px; color: var(--muted-2); margin-top: 16px; line-height: 1.6; }

.process-track { position: relative; }
.process-line-bg {
  position: absolute; top: 27px; left: 0; right: 0; height: 2px;
  background: rgba(245,244,239,0.12);
}
.process-line-fill {
  position: absolute; top: 27px; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-accent));
  width: 0%;
  transition: width 1.6s var(--ease);
}
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step {
  opacity: 0; transform: translateY(18px) scale(0.96);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.process-step.in-view { opacity: 1; transform: translateY(0) scale(1); }
.process-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--dark-2);
  border: 2px solid rgba(245,244,239,0.14);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif; font-size: 18px; color: var(--purple-accent);
  margin-bottom: 22px; position: relative; z-index: 2;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.process-step.in-view .process-num { background: var(--purple); border-color: var(--purple); color: #fff; transform: scale(1.06); }
.process-step h3 { font-size: 17.5px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; line-height: 1.6; color: var(--muted-2); margin: 0; }

/* ---------- Quote ---------- */
.quote-section { padding: clamp(72px, 9vw, 104px) 0; background: var(--purple-light); }
.quote-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-mark { margin: 0 auto 24px; display: block; }
.quote-inner .display { font-size: clamp(24px, 3.4vw, 34px); color: var(--dark); line-height: 1.18; }
.quote-inner .quote-sub { font-size: 15.5px; line-height: 1.7; color: #5a4a6b; margin-top: 26px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- Contact ---------- */
.contact-section { padding: clamp(72px, 9vw, 112px) 0; }
.contact-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.contact-side {
  background: var(--purple); padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; justify-content: space-between; color: #fff;
}
.contact-side h2 { font-size: clamp(26px, 3.6vw, 38px); color: #fff; }
.contact-side p { font-size: 15.5px; color: #f1e4fc; line-height: 1.6; margin-top: 20px; }
.contact-side .contact-links { margin-top: 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.contact-side .social-row { display: flex; gap: 14px; }

/* --- Contact phone mockup (fills the purple panel, small looping chat animation) --- */
.contact-phone {
  width: 232px; background: var(--dark); border-radius: 26px;
  padding: 14px 10px 12px; box-shadow: 0 22px 40px rgba(20,10,35,0.3);
}
.contact-phone-notch { width: 52px; height: 5px; border-radius: 3px; background: rgba(245,244,239,0.25); margin: 0 auto 12px; }
.contact-phone-screen {
  background: #fff; border-radius: 16px; padding: 16px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.whatsapp-btn { padding: 11px 14px; font-size: 12px; gap: 7px; width: 100%; margin-top: 2px; white-space: normal; text-align: center; }
.chat-bubble {
  padding: 10px 16px; border-radius: 16px; font-size: 13.5px; line-height: 1.4;
  max-width: 86%; width: fit-content; opacity: 0; transform: translateY(10px);
}
.chat-bubble.in {
  align-self: flex-start; background: var(--purple-light); color: var(--dark);
  border-bottom-left-radius: 4px;
  animation: chatBubbleIn 9s ease-in-out infinite;
}
.chat-bubble.out {
  align-self: flex-end; background: var(--purple); color: #fff;
  border-bottom-right-radius: 4px;
  animation: chatBubbleOut 9s ease-in-out infinite;
}
.chat-typing {
  align-self: flex-start; background: var(--purple-light); border-radius: 16px; border-bottom-left-radius: 4px;
  padding: 12px 16px; display: flex; gap: 4px; width: fit-content;
  opacity: 0; transform: translateY(10px);
  animation: chatTypingWrap 9s ease-in-out infinite;
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--purple);
  animation: dotBounce 1s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes chatBubbleIn {
  0%, 4% { opacity: 0; transform: translateY(10px); }
  11%, 80% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-6px); }
}
@keyframes chatBubbleOut {
  0%, 20% { opacity: 0; transform: translateY(10px); }
  27%, 80% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-6px); }
}
@keyframes chatTypingWrap {
  0%, 40% { opacity: 0; transform: translateY(10px); }
  47%, 80% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-6px); }
}
@keyframes dotBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.contact-form-side { background: var(--cream); padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 44px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field label { font-size: 12.5px; font-weight: 600; color: var(--dark); }
.form-field input, .form-field textarea, .form-field select {
  padding: 13px 14px; border-radius: 10px; border: 2px solid #d8d5cc;
  background: var(--cream); font-size: 14px; outline: none; font-family: inherit;
  transition: border-color .18s ease, background .18s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--purple); background: #fff;
}
.form-field textarea { resize: vertical; }
form { display: flex; flex-direction: column; }
.form-success { display: none; min-height: 360px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px; }
.form-success.visible { display: flex; }
.form-success .check-circle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 22px; font-weight: 600; }
.form-success p { font-size: 14.5px; color: var(--muted); line-height: 1.6; max-width: 340px; margin: 0; }

/* ---------- Final CTA ---------- */
.cta-banner {
  margin: 0 clamp(20px, 5vw, 64px) 0;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
}
.cta-banner-inner {
  background: var(--dark);
  border-radius: 28px;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 6vw, 64px);
  text-align: center;
  position: relative; overflow: hidden;
  margin-bottom: clamp(72px, 9vw, 104px);
}
.cta-banner-inner::before {
  content: '';
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,81,224,0.35), transparent 70%);
  top: -220px; right: -160px;
}
.cta-banner-inner h2 { position: relative; font-size: clamp(28px, 4vw, 44px); color: var(--cream); max-width: 640px; margin: 0 auto; }
.cta-banner-inner p { position: relative; font-size: 15.5px; color: var(--muted-2); margin: 18px auto 32px; max-width: 480px; }
.cta-banner-inner .btn { position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); padding: clamp(48px, 6vw, 64px) 0 32px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line-light);
}
.footer-brand { display: flex; align-items: baseline; gap: 6px; }
.footer-brand span:first-child { color: var(--purple); }
.footer-brand span:last-child { color: var(--cream); }
.footer-tag { font-size: 13.5px; color: var(--muted-2); margin-top: 10px; max-width: 280px; line-height: 1.5; }
.footer-social { display: flex; gap: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer-bottom .copyright { font-size: 12.5px; color: var(--muted-3); }
.footer-bottom .legal-links { display: flex; gap: 20px; font-size: 12.5px; }
.footer-bottom .legal-links a { color: var(--muted-3); }
.footer-bottom .legal-links a:hover { color: var(--cream); }

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-sticky-cta { display: none; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
  background: var(--dark); color: var(--cream);
  padding: 18px clamp(20px, 5vw, 48px);
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -12px 30px rgba(0,0,0,0.18);
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.22,.9,.35,1);
}
.cookie-banner.show { display: flex; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgba(245,244,239,0.82); max-width: 640px; }
.cookie-banner a { color: var(--purple-accent); }
.cookie-banner a:hover { text-decoration: underline; }
.cookie-banner .cookie-actions { flex: none; }
.cookie-banner .cookie-actions .btn { padding: 11px 26px; font-size: 13.5px; }
@media (max-width: 640px) {
  .cookie-banner { justify-content: flex-start; padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px)); }
  .cookie-banner .cookie-actions { width: 100%; }
  .cookie-banner .cookie-actions .btn { width: 100%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; width: 100%; height: clamp(300px, 60vw, 420px); max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid .hide-mobile-value { order: 2; }
  .usp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card.featured { transform: none; order: -1; }
  .svc-card.featured:hover { transform: translateY(-6px); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .process-line-bg, .process-line-fill { display: none; }
}
@media (max-width: 860px) {
  .nav-links, .hide-mobile { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .contact-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }

  body { padding-bottom: 76px; }
  .mobile-sticky-cta {
    display: flex; align-items: center; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 12px clamp(16px, 4vw, 24px) calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(245,244,239,0.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 24px rgba(41,40,40,0.08);
  }
  .mobile-sticky-cta .sticky-btn {
    flex: 1; min-width: 0; padding: 14px 10px; font-size: 14px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .mobile-sticky-cta .sticky-btn.hidden-cta {
    opacity: 0; transform: scale(0.92); visibility: hidden; pointer-events: none; position: absolute;
  }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-meta { margin-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .mockup, .mockup-chip, .pulse-heart { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .process-step { opacity: 1; transform: none; }
  .chat-bubble, .chat-typing, .chat-typing span { animation: none !important; opacity: 1 !important; transform: none !important; }
  .post-logo-card { animation: none !important; }
}
