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

html {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #222;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Pepla colour tokens ─────────────────────────────────────────── */
:root {
  --pepla-orange: #E74C3C;
  --pepla-green:  #2BAE4A;
  --pepla-blue:   #29ABE2;
  --pepla-teal:   #1ABC9C;
  --pepla-purple: #8E44AD;
  --pepla-coral:  #E67E22;
  --dark:         #1a1a1a;
}

/* ================================================================= */
/*  HEADER / NAV — sticky frosted glass                               */
/* ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 200, 200, 0.35);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 30px;
  gap: 28px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  position: relative;
  transition: color .25s;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--pepla-orange);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.main-nav a:hover { color: var(--pepla-orange); }
.main-nav a:hover::after { transform: scaleX(1); }
.nav-active { color: var(--pepla-orange) !important; }

/* ── Burger menu ──────────────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  z-index: 110;
  width: 44px;
  height: 44px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 60px);
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 30px 24px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 105;
    overflow-y: auto;
  }

  .main-nav.is-open {
    right: 0;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-divider {
    display: none;
  }
}

.nav-divider {
  color: #bbb;
  font-size: 0.8rem;
  user-select: none;
}

/* ================================================================= */
/*  HERO WRAPPER — canvas lives behind hero content                   */
/* ================================================================= */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  background: #fff;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ================================================================= */
/*  HERO SECTION                                                      */
/* ================================================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  z-index: 2;
}

/* ── Logo panel — centered in hero ──────────────────────────────── */
.hero-logo-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  opacity: 0;
  animation: fadeInUp .8s ease 0.4s forwards;
}

.hero-logo {
  display: block;
  max-width: 380px;
  width: 80%;
  height: auto;
}

/* ── Stepper dots ───────────────────────────────────────────────── */
.hero-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-bottom: 20px;
  opacity: 0;
  animation: fadeInUp .8s ease 0.8s forwards;
}

.stepper-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stepper-dot--green  { background: var(--pepla-green); }
.stepper-dot--orange { background: var(--pepla-orange); }
.stepper-dot--blue   { background: var(--pepla-blue); }

.hero-tagline {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: #444;
  margin-top: -2px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Colour blocks row ───────────────────────────────────────────── */
.hero-blocks {
  display: flex;
  align-items: flex-end;
  width: 100vw;
  gap: 0;
  position: relative;
}

/* blue wide block with terminal */
.hero-blue-block {
  flex: 1;
  min-height: 100px;
  background: var(--pepla-blue);
  color: #fff;
  padding: 18px 28px;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 1.6rem;
  line-height: 1.6;
  overflow: hidden;
  transform: translateX(110%);
  animation: slideInLeft .8s ease-out 1s forwards;
}

@keyframes slideInLeft {
  to { transform: translateX(0); }
}

.terminal-prompt {
  color: rgba(255,255,255,.55);
}

.terminal-text {
  color: #fff;
}

.terminal-cursor {
  display: inline-block;
  color: #fff;
  animation: blink .55s step-end infinite;
  margin-left: 1px;
  font-weight: 300;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ================================================================= */
/*  ABOUT / GET TO KNOW US                                            */
/* ================================================================= */
.about {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.about-heading {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.4fr;
  gap: 20px;
  align-items: start;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}



.about-text-col p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #444;
}

/* ================================================================= */
/*  SERVICES                                                           */
/* ================================================================= */
.services {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px;
}

.testimonials-section
 {
  padding: 50px;

}




.about-heading, .services-heading {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px 36px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  opacity: 0;
  transform: perspective(800px) rotateY(90deg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card.animate-in {
  animation: cardFlipIn 0.6s ease-out forwards;
}


@keyframes cardFlipIn {
  0%   { opacity: 0; transform: perspective(800px) rotateY(90deg); }
  100% { opacity: 1; transform: perspective(800px) rotateY(0deg); }
}

.service-card:hover {
  transform: perspective(800px) translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.service-card .btn {
  margin-top: auto;
}

.service-card__desc {
  margin-bottom: 20px;
}

/* Top accent bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.service-card--green::before  { background: var(--pepla-green); }
.service-card--orange::before { background: var(--pepla-orange); }
.service-card--blue::before   { background: var(--pepla-blue); }
.service-card--teal::before   { background: var(--pepla-teal); }
.service-card--purple::before { background: var(--pepla-purple); }
.service-card--coral::before  { background: var(--pepla-coral); }
.service-card--dark::before   { background: var(--dark); }

.service-card__icon {
  width: 100px;
  height: 100px;
  margin: 24px 0;
  flex-shrink: 0;
}

.service-card--green .service-card__icon  { color: var(--pepla-green); }
.service-card--orange .service-card__icon { color: var(--pepla-orange); }
.service-card--blue .service-card__icon   { color: var(--pepla-blue); }
.service-card--teal .service-card__icon   { color: var(--pepla-teal); }
.service-card--purple .service-card__icon { color: var(--pepla-purple); }
.service-card--coral .service-card__icon  { color: var(--pepla-coral); }
.service-card--dark .service-card__icon   { color: var(--dark); }

.svc-anim {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.service-card__desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #666;
}

/* ── SVG icon animations ─────────────────────────────────────────── */

/* Code brackets pulse */
.svc-anim--code .svc-anim__bracket-l { animation: bracketL 2.5s ease-in-out infinite; }
.svc-anim--code .svc-anim__bracket-r { animation: bracketR 2.5s ease-in-out infinite; }
.svc-anim--code .svc-anim__slash     { animation: slashPulse 2.5s ease-in-out infinite; }

@keyframes bracketL  { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-3px); } }
@keyframes bracketR  { 0%,100% { transform: translateX(0); } 50% { transform: translateX(3px); } }
@keyframes slashPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Globe spin */
.svc-anim--web .svc-anim__orbit-h { animation: orbitPulse 3s ease-in-out infinite; }
.svc-anim--web .svc-anim__orbit-v { animation: orbitRotate 4s linear infinite; transform-origin: 40px 40px; }

@keyframes orbitPulse  { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes orbitRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* UX cursor float */
.svc-anim--ux .svc-anim__cursor { animation: cursorFloat 2s ease-in-out infinite; }
.svc-anim--ux .svc-anim__pen    { animation: penDraw 3s ease-in-out infinite; transform-origin: 40px 40px; }

@keyframes cursorFloat { 0%,100% { transform: translate(0,0); opacity: 0.3; } 50% { transform: translate(6px,-6px); opacity: 0.6; } }
@keyframes penDraw     { 0%,100% { transform: rotate(0deg); } 25% { transform: rotate(5deg); } 75% { transform: rotate(-5deg); } }

/* App blocks pop in */
.svc-anim--app .svc-anim__app-block1 { animation: blockPop 2s ease-in-out 0.0s infinite; }
.svc-anim--app .svc-anim__app-block2 { animation: blockPop 2s ease-in-out 0.3s infinite; }
.svc-anim--app .svc-anim__app-block3 { animation: blockPop 2s ease-in-out 0.6s infinite; }
.svc-anim--app .svc-anim__app-block4 { animation: blockPop 2s ease-in-out 0.9s infinite; }

@keyframes blockPop { 0%,100% { opacity: 0.25; } 50% { opacity: 0.7; } }

/* Cloud float */
.svc-anim--cloud .svc-anim__cloud-shape { animation: cloudFloat 3s ease-in-out infinite; }
.svc-anim--cloud .svc-anim__arrow1      { animation: arrowDown 1.8s ease-in-out infinite; }
.svc-anim--cloud .svc-anim__arrow2      { animation: arrowUp 1.8s ease-in-out 0.5s infinite; }

@keyframes cloudFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes arrowDown  { 0%,100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(3px); opacity: 1; } }
@keyframes arrowUp    { 0%,100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(-3px); opacity: 1; } }

/* Team augmentation — person fades in */
.svc-anim--team .svc-anim__person-add { animation: personFade 2.5s ease-in-out infinite; }
.svc-anim--team .svc-anim__plus-h     { animation: plusPulse 2.5s ease-in-out infinite; }
.svc-anim--team .svc-anim__plus-v     { animation: plusPulse 2.5s ease-in-out infinite; }

@keyframes personFade { 0%,100% { opacity: 0.3; stroke-dashoffset: 0; } 50% { opacity: 1; stroke-dashoffset: 0; } }
@keyframes plusPulse  { 0%,100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }

/* AI brain — synapses fire */
.svc-anim--ai .svc-anim__synapse1 { stroke-dasharray: 40; animation: synapseFire 2.5s ease infinite; }
.svc-anim--ai .svc-anim__synapse2 { stroke-dasharray: 40; animation: synapseFire 2.5s ease 0.5s infinite; }
.svc-anim--ai .svc-anim__pulse1   { animation: neuronPulse 2s ease infinite; }
.svc-anim--ai .svc-anim__pulse2   { animation: neuronPulse 2s ease 0.4s infinite; }
.svc-anim--ai .svc-anim__pulse3   { animation: neuronPulse 2s ease 0.8s infinite; }

@keyframes synapseFire { 0% { stroke-dashoffset: 40; } 50%,100% { stroke-dashoffset: 0; } }
@keyframes neuronPulse { 0%,100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 0.8; transform: scale(1.3); } }

/* Consulting — checkmark draws */
.svc-anim--consult .svc-anim__check1  { animation: checkDraw 2s ease-in-out infinite; }
.svc-anim--consult .svc-anim__check1b { animation: checkDraw 2s ease-in-out 0.2s infinite; }

@keyframes checkDraw { 0%,30% { opacity: 0; } 50%,100% { opacity: 1; } }

/* Sprint board — tasks slide across columns */
.svc-anim--sprint .svc-anim__task1 { animation: taskSlide 3s ease-in-out 0.0s infinite; }
.svc-anim--sprint .svc-anim__task2 { animation: taskSlide 3s ease-in-out 0.5s infinite; }
.svc-anim--sprint .svc-anim__task3 { animation: taskSlide 3s ease-in-out 1.0s infinite; }
.svc-anim--sprint .svc-anim__task4 { animation: taskSlide 3s ease-in-out 0.3s infinite; }
.svc-anim--sprint .svc-anim__task5 { animation: taskSlide 3s ease-in-out 0.8s infinite; }
.svc-anim--sprint .svc-anim__task6 { animation: taskSlide 3s ease-in-out 1.3s infinite; }

@keyframes taskSlide { 0%,100% { opacity: 0.3; } 50% { opacity: 0.8; } }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services { padding: 40px 16px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ================================================================= */
/*  OUR CLIENTS — scrolling rows                                       */
/* ================================================================= */
.clients {
  background: #fff;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.clients.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.clients-heading {
  text-align: center;
  color: #000;
}

.clients-subtitle {
  text-align: center;
  color: #999;
  font-size: 1.1rem;
  margin-top: 8px;
  margin-bottom: 50px;
}

.scroll-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.scroll-row {
  overflow: hidden;
  height: 190px;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.scroll-track {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.scroll-row--left .scroll-track {
  animation: scrollLeft 60s linear infinite;
}

.scroll-row--right .scroll-track {
  animation: scrollRight 60s linear infinite;
}

.scroll-row--right .client-chip img {
  height: 100px;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

@keyframes scrollRight {
  0%   { transform: translateX(calc(-100% / 3)); }
  100% { transform: translateX(0); }
}

.client-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  background: #fff;
  border: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}


.client-chip img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.client-chip--stallion {
  background: #000;
  border-radius: 16px;
  padding: 10px 16px;
}

.client-chip--stallion img {
  height: 70px;
}

.client-chip--fuzion {
  background: #000;
  border-radius: 16px;
  padding: 10px 16px;
}

.client-chip--sm img {
  height: 30px;
}

.client-chip--lg img {
  height: 130px;
}

.client-chip--orms img  {
  height: 160px !important;
}

.client-chip--hyphen {
  background: #002246;
  border-radius: 16px;
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
}

.client-chip--hyphen img {
  height: 36px;
}

.client-chip--ddp {
  background: #0C3652;
  border-radius: 16px;
  padding: 10px 16px;
}

.client-chip--ddp img {
  height: 50px !important;
}

.client-chip--dark {
  background: #2a2a2a;
  border-radius: 16px;
  padding: 10px 16px;
}

.client-chip--dark img {
  height: 36px;
}

.client-chip--dark.client-chip--lg img {
  height: 70px;
}

/* ================================================================= */
/*  TESTIMONIALS                                                       */
/* ================================================================= */
.testimonials {
  margin-top: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 40px;
  align-items: start;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials .speech-bubble {
  position: sticky;
  top: 100px;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card:nth-child(1) { border-left-color: var(--pepla-green); }
.testimonial-card:nth-child(2) { border-left-color: var(--pepla-orange); }
.testimonial-card:nth-child(3) { border-left-color: var(--pepla-blue); }
.testimonial-card:nth-child(4) { border-left-color: var(--pepla-teal); }
.testimonial-card:nth-child(5) { border-left-color: var(--pepla-purple); }
.testimonial-card:nth-child(6) { border-left-color: var(--pepla-coral); }

.testimonial-card {
  background: #fff;
  border-left: 4px solid var(--pepla-green);
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.testimonial-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }
.testimonial-card:nth-child(4) { transition-delay: 0.45s; }

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: #222;
}

@media (max-width: 700px) {
  .testimonials {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .testimonials .speech-bubble {
    justify-self: center;
    margin-bottom: 24px;
    position: static;
  }
}

/* ================================================================= */
/*  CONTACT US                                                         */
/* ================================================================= */
.contact {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px;
}

.contact-heading {
  text-align: center;
  margin-bottom: 50px;
  color: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-col {
  text-align: left;
}

.contact-col__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.contact-col__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: auto;
}

.contact-col--meeting {
  display: flex;
  flex-direction: column;
}

.contact-col--meeting .btn {
  margin-top: 16px;
  align-self: flex-start;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-item__icon {
  font-size: 1.2rem;
  color: var(--pepla-blue);
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item__link {
  font-size: 1.05rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-item__link:hover {
  color: var(--pepla-orange);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.connect-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.connect-header .contact-col__title {
  margin-bottom: 0;
}

.mouse-icon {
  width: 40px;
  height: auto;
}

.social-img {
  width: 70px;
  height: auto;
  transition: transform 0.2s ease;
}

.social-img:hover {
  transform: translateY(-3px);
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================================================= */
/*  FOOTER                                                             */
/* ================================================================= */
.site-footer {
  padding: 20px 40px 10px;
}

.footer-inner {
  width: 100%;
}

.footer-tagline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-squares {
  display: flex;
  gap: 4px;
}

.sq {
  width: 18px;
  height: 18px;
  border-radius: 3px;
}

.sq--orange { background: var(--pepla-orange); }
.sq--green  { background: var(--pepla-green); }
.sq--blue   { background: var(--pepla-blue); }

.footer-hashtag {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.05em;
}

.footer-line {
  width: 100%;
  height: 3px;
  background: var(--pepla-green);
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-voice {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-voice__bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--pepla-blue);
  border-radius: 50%;
  animation: voicePulse 2s ease infinite;
  flex-shrink: 0;
}

.footer-voice__bubble svg {
  width: 18px;
  height: 18px;
}

.footer-voice__bars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-voice__bar {
  width: 2.5px;
  background: #fff;
  border-radius: 2px;
  animation: voiceBar 1.2s ease infinite;
}

.footer-voice__bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.footer-voice__bar:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.footer-voice__bar:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.footer-voice__bar:nth-child(4) { height: 16px; animation-delay: 0.45s; }
.footer-voice__bar:nth-child(5) { height: 8px; animation-delay: 0.6s; }

@keyframes voiceBar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

@keyframes voicePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(41, 171, 226, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(41, 171, 226, 0); }
}

.footer-voice-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pepla-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-voice-link:hover {
  color: var(--pepla-orange);
}

.footer-circles {
  display: flex;
  justify-content: flex-end;
}

.footer-circles img {
  height: 40px;
  width: auto;
}

/* ================================================================= */
/*  COLOUR BANNER — section divider                                    */
/* ================================================================= */
.color-banner {
  display: flex;
  width: 100vw;
  height: 8px;
}

.color-banner span {
  flex: 1;
}

.color-banner span:nth-child(1) { background: var(--pepla-green); }
.color-banner span:nth-child(2) { background: var(--pepla-orange); }
.color-banner span:nth-child(3) { background: var(--pepla-blue); }

/* ================================================================= */
/*  BUTTONS                                                            */
/* ================================================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--orange { background: var(--pepla-orange); }
.btn--green  { background: var(--pepla-green); }
.btn--blue   { background: var(--pepla-blue); }
.btn--dark   { background: var(--dark); }
.btn--teal   { background: var(--pepla-teal); }
.btn--coral  { background: var(--pepla-coral); }
.btn--purple { background: var(--pepla-purple); }
.btn--sm     { font-size: 0.85rem; max-width: 200px; min-height: 50px; text-align: center; padding-top: 15px; }

/* outlined variants */
.btn--outline-orange { background: transparent; border: 2px solid var(--pepla-orange); color: var(--pepla-orange); }
.btn--outline-green  { background: transparent; border: 2px solid var(--pepla-green);  color: var(--pepla-green); }
.btn--outline-blue   { background: transparent; border: 2px solid var(--pepla-blue);   color: var(--pepla-blue); }
.btn--outline-dark   { background: transparent; border: 2px solid var(--dark);          color: var(--dark); }

/* ================================================================= */
/*  SPEECH BUBBLES                                                     */
/* ================================================================= */
.speech-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  width: 300px;
  min-height: 300px;
  line-height: 1.4;
  border-radius: 0 50% 50% 50%;
  box-shadow: 6px 8px 20px rgba(0,0,0,0.25);
}

.speech-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: inherit;
  border-radius: 0;
}

.speech-bubble:hover {
  animation: wobble .5s ease-in-out;
  cursor: pointer;
}

@keyframes wobble {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(2deg); }
  50%  { transform: rotate(-2deg); }
  75%  { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}

.speech-bubble--green  { background: var(--pepla-green); }
.speech-bubble--orange { background: var(--pepla-orange); }
.speech-bubble--blue   { background: var(--pepla-blue); }
.speech-bubble--dark   { background: var(--dark); }

/* ── Section images ────────────────────────────────────────────────── */
.section-image {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
}

.section-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  margin: 10px 0;
}

@media (max-width: 600px) {
  .section-image { padding: 0 20px; }
  .section-image img { height: 200px; }
}

/* ================================================================= */
/*  RESPONSIVE                                                        */
/* ================================================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-grid .speech-bubble { justify-self: center; grid-column: 1 / -1; }
  .hero-logo { max-width: 300px; }
  .hero-tagline { font-size: 1.1rem; letter-spacing: 0.2em; }
  .hero-blocks { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 12px; }
  .hero { padding: 32px 16px 0; min-height: 400px; }
  .hero-blue-block { font-size: 0.85rem; padding: 14px 18px; }
  .about { padding: 48px 16px 60px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .speech-bubble { justify-self: center; }
}
