:root {
  --purple: #4d2875;
  --white: #ffffff;
  --neon: #d0ff00;
  --bg: #f6f3fb;
  --text: #1e1830;
  --muted: #5c5472;
  --card-shadow: 0 14px 32px rgba(77, 40, 117, 0.14);
  --border: 1px solid rgba(77, 40, 117, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

main {
  padding-bottom: 0;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  max-width: 100%;
}

.section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.alt {
  background: linear-gradient(180deg, #f2eff8 0%, #f7f5fb 100%);
}

.problem h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 4vw, 2rem); /* reduced size for PC */
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2,
.contact-section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--purple);
  font-weight: 800;
}

.section-head p,
.section-head .section-subtitle,
.contact-section > .container > .reveal > p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}

.section-head.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.3;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-head p,
.muted,
p {
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.header {

  height: 80px;
  /* position: sticky; */
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: var(--border);
}

/* navbar logo  */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--purple);
}


/* Logo styles */
.logo-icon {
  position: relative;
/* right:120px; */
  height: 150px;
  width: auto;
  /* max-width: 280px; */
  object-fit: contain;
  display: block;
  /* transition: transform 0.3s ease; */
}



.footer .logo-icon {
  height: 150px;
  max-width: 240px;
}

@media (max-width: 760px) {
  .header{
            position: relative !important;

  }
  
  .logo-icon {
    height: 110px;
    width:auto
    
    
  }

  .footer .logo-icon {
    height: 150px;
    max-width: 150px;
  }
.band-kpi{
    display: none;
}

}
/* .logo:hover .logo-icon {
  transform: scale(1.05);
} */

.nav-wrap {

     height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  min-width: 0;
  width: 95%;

}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(5px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
  top: -140px;
  left: -100px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(208, 255, 0, 0.58), rgba(208, 255, 0, 0));
}

.orb-2 {
  right: -90px;
  top: 34vh;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(77, 40, 117, 0.3), rgba(77, 40, 117, 0));
  animation-delay: 1.8s;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--neon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--purple);
}

.nav a.btn:hover,
.nav a.btn.active {
  color: var(--white);
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, filter 0.25s ease;

}

.btn1 {

    background: transparent;
  color: var(--purple);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--purple);
  /* background: var(--purple); */

  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, filter 0.25s ease;

}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(77, 40, 117, 0.25);
  filter: brightness(1.04);
}
.btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(77, 40, 117, 0.25);
  filter: brightness(1.04);
}


.contact-actions {
  margin-top:25px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.contact-or {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.form-subtext {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  text-align: center;
}
.btn-sm {
  padding: 0.55rem 0.95rem;
}

.btn-ghost {
  background: transparent;
  color: var(--purple);
}

.hero {
  padding-top: 2.8rem;
  padding-bottom: 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
  min-width: 0;
}

.hero-copy,
.hero-stack {
  min-width: 0;
  max-width: 100%;
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--purple);
  max-width: 100%;
  word-wrap: break-word;
}

.hero h1 span {
  background: linear-gradient(95deg, var(--purple), #6f3ba8 55%, #8d58c4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.hero-copy .hero-bullets {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-copy .hero-bullets li {
  margin-bottom: 0.35rem;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  border: var(--border);
  border-radius: 18px;
  background: linear-gradient(175deg, #ffffff 0%, #f8f5fc 100%);
  box-shadow: var(--card-shadow);
  padding: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(77, 40, 117, 0.16);
}

.hero-card-main .panel-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-metric-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-big {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}

.hero-trend.up {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a7a3e;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.35rem;
  margin-top: 1rem;
}

.mini-chart span {
  display: block;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--neon), rgba(208, 255, 0, 0.45));
  transform-origin: bottom;
  animation: barPulse 1.8s ease-in-out infinite;
}

.mini-chart span:nth-child(odd) {
  opacity: 0.85;
  animation-delay: 0.15s;
}

@keyframes barPulse {

  0%,
  100% {
    transform: scaleY(0.55);
  }

  50% {
    transform: scaleY(1);
  }
}

.hero-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hero-card-mini {
  text-align: center;
}

.hero-card-mini strong {
  display: block;
  font-size: 1.75rem;
  color: var(--purple);
}

.hero-card-mini span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-card-split .bar-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}

.bar-track {
  display: flex;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.bar-organic {
  width: 70%;
  background: linear-gradient(90deg, var(--purple), #6f3fa8);
}

.bar-paid {
  width: 30%;
  background: var(--neon);
}
/* 
.skills-ticker {
  border-top: var(--border);
  border-bottom: var(--border);
  background: linear-gradient(90deg, rgba(77, 40, 117, 0.06), rgba(208, 255, 0, 0.12));
  padding: 20px;
  margin: 20px; /* added margin for PC */
  /* overflow: hidden; */
  /* height: 60px */
/* } */
 

.skills-ticker {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 20px;
  height: 60px;

  border-top: var(--border);
  border-bottom: var(--border);
  background: linear-gradient(90deg,
      rgba(77, 40, 117, 0.06),
      rgba(208, 255, 0, 0.12));
}

.skills-ticker .ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker-infinite 32s linear infinite;
  

}

.skills-ticker:hover .ticker-inner {
  animation-play-state: paused;
}

.skills-ticker .ticker-track {
  display: flex;
  
  align-items: center;
  gap: 3rem; /* increased gap for PC */
  padding-right: 2.5rem;
}

.skills-ticker .ticker-track span {
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.skills-ticker .ticker-track span::before {
  content: "✦ ";
  color: var(--neon);
}

@keyframes ticker-infinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .skills-ticker {
    padding: 1rem 0; /* reduced padding for mobile */
    margin: 1rem 0; /* reduced margin for mobile */
  }
  .skills-ticker .ticker-track {
    gap: 1.5rem; /* reduced gap for mobile */
  }
  /* Reduce overall section padding for mobile */
  .section {
    padding: 3rem 0;
  }
  .problem h2 {
    font-size: clamp(1.2rem, 5vw, 1.8rem); /* further reduced size for mobile */
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 3rem 0;
  }
  .skills-ticker {
    padding: 2rem 0;
  }
  .skills-ticker .ticker-track {
    gap: 2rem;
  }
}

.band-kpi {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 100%;
}

.kpi-row .hero-card-mini {
  border: var(--border);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  background: var(--white);
  box-shadow: var(--card-shadow);
  text-align: center;
  min-width: 0;
}

.kpi-row strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--purple);
}

.kpi-row span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.growth-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.growth-row-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.growth-row-2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.why-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  border: var(--border);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card .icon {
  width: 40px;
  height: 40px;
  background: rgba(77, 40, 117, 0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--purple);
}

.why-card h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--purple);
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
}

.logos-strip {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.logos-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(77, 40, 117, 0.55);
  max-width: 100%;
  padding: 0 0.5rem;
}

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
  flex: 0 0 auto;
  min-width: 0;
}

.carousel-item .stars {
  color: #c9a227;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border);
  background: var(--white);
  color: var(--purple);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.carousel-btn:hover {
  background: var(--purple);
  color: var(--neon);
  transform: scale(1.05);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: -2.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(77, 40, 117, 0.25);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--purple);
}

#team.section {
  padding-bottom: 6.25rem;
}

/* Team Section Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.team-member-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--neon);
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 22px rgba(77, 40, 117, 0.16);
  background: var(--bg);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member-card:hover .team-avatar img {
  transform: scale(1.1);
}

.team-member-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  color: var(--purple);
  font-weight: 700;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--purple);
  margin: 0 0 0.85rem;
  opacity: 0.85;
}

.team-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.team-socials {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: var(--border);
  background: var(--white);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.team-socials a:hover {
  background: var(--purple);
  color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(77, 40, 117, 0.2);
}


.stats {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.stats div {
  background: rgba(77, 40, 117, 0.06);
  border-radius: 12px;
  border: var(--border);
  padding: 0.6rem;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--purple);
}

.stats span {
  font-size: 0.78rem;
  color: var(--muted);
}

.trust-strip {
  margin-top: 1.4rem;
  padding: 0.9rem 1.1rem;
  border: var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--purple);
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.card {
  position: relative;
  isolation: isolate;
  border: var(--border);
  border-radius: 16px;
  background: linear-gradient(175deg, #ffffff 0%, #f8f5fc 100%);
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
  min-width: 0;
  max-width: 100%;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg,
      rgba(208, 255, 0, 0.16),
      rgba(255, 255, 255, 0),
      rgba(77, 40, 117, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.card:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 40px rgba(77, 40, 117, 0.24);
  border-color: rgba(77, 40, 117, 0.34);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--purple);
  color: var(--neon);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  background: var(--neon);
  color: #172100;
  font-size: 0.75rem;
  font-weight: 700;
}

.thumb {
  width: 100%;
  height: 156px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  background: linear-gradient(140deg, #5c2f90, #d0ff00);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease, filter 0.38s ease;
}

.project-card:hover .thumb img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.04);
}

.avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--neon);
  margin-bottom: 0.7rem;
  box-shadow: 0 8px 18px rgba(77, 40, 117, 0.2);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: 0.9rem 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.faq-list details[open] {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(77, 40, 117, 0.18);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--purple);
}

.faq-list p {
  margin: 0.7rem 0 0;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  min-width: 0;
}

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  max-width: 100%;
  min-width: 0;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: var(--border);
  background: #fff;
  padding: 0.75rem;
  outline: none;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(77, 40, 117, 0.16);
}

.form-status {
  min-height: 0;
  margin: 0.85rem 0 0;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  color: var(--purple);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(208, 255, 0, 0.22);
  border: 1px solid rgba(77, 40, 117, 0.2);
  color: #2d4a00;
}

.form-status.is-error {
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.25);
  color: #b42318;
}

.form-status.is-loading {
  background: rgba(77, 40, 117, 0.06);
  border: 1px solid rgba(77, 40, 117, 0.15);
  color: var(--purple);
}

.map-wrap {
  border: var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-wrap h3,
.map-wrap p {
  padding: 1rem 1rem 0.2rem;
  /* Reduced padding */
  margin: 0;
}

.map-wrap p {
  padding-bottom: 0.8rem;
  /* Reduced padding */
}

.map-wrap iframe {
  border: 0;
  display: block;
  width: 100%;
  flex: 1; /* This will make it fill all available vertical space */
  min-height: 400px;
}

.contact-section::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 9%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 255, 0, 0.3), rgba(208, 255, 0, 0));
  z-index: -1;
}

.footer {
  border-top: var(--border);
  background: #f2eff8;
  padding: 4rem 0 2rem 0;
  margin-bottom: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer a {
  color: var(--purple);
  font-weight: 700;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--purple);
}

.social-links {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-links a,
.social-links .social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: var(--border);
  background: var(--white);
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-links a:hover,
.social-links .social-icon:hover {
  background: var(--purple);
  color: var(--neon);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(77, 40, 117, 0.24);
}

.social-links .social-icon svg {
  display: block;
}

.footer-top .footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links--footer {
  margin-top: 0;
}

.footer-mail {
  color: var(--purple);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(77, 40, 117, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}


.contact-form .field-error {
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 600;
}

.card strong {
  color: var(--purple);
  font-size: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  max-width: 100%;
  min-width: 0;
}

.container.reveal {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(18px);
  }
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .hero-grid,
  .contact-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-row-3,
  .growth-row-2 {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    flex-wrap: wrap;
    padding-bottom: 2rem;
  }

  .carousel-btn {
    order: 2;
  }

  .carousel-viewport {
    order: 1;
    width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3rem 0;
  }

  .skills-ticker {
    padding: 0.65rem 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 4%;
    left: 4%;
    background: #fff;
    border: var(--border);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.22s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .contact-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    border-radius: 16px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero-mini-row {
    grid-template-columns: 1fr;
  }

  .kpi-row {
    grid-template-columns: 1fr;
  }

  .growth-row-3,
  .growth-row-2 {
    grid-template-columns: 1fr;
  }


  #team.section {
    padding-bottom: 5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem 0;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-top .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.text-center {
  text-align: center;
}

.logos-strip-inner {
  width: 100%;
}

/* Story Timeline */
.story-timeline {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--neon), var(--purple));
  z-index: 0;
}

.story-chapter {
  position: relative;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
}

.chapter-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--purple);
  color: var(--neon);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--bg);
}

.story-chapter .project-card {
  width: 100%;
}

@media (min-width: 768px) {
  .story-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .story-chapter {
    width: 50%;
    padding-left: 0;
  }

  .story-chapter:nth-child(odd) {
    align-self: flex-start;
    padding-right: 40px;
    text-align: right;
  }

  .story-chapter:nth-child(even) {
    align-self: flex-end;
    padding-left: 40px;
  }

  .story-chapter:nth-child(odd) .chapter-node {
    left: auto;
    right: -21px;
  }

  .story-chapter:nth-child(even) .chapter-node {
    left: -21px;
  }
}

/* ==========================================================================
   Ventra Update: Problem Section, Who We Work With, and Floating CTA Bar
   ========================================================================== */

/* Problem section styles */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 100%;
}

@media (min-width: 981px) {
  .problem-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .problem-copy > * {
    max-width: 64ch;
    width: 100%;
  }

  .problem-copy .highlight-text {
    margin-left: auto;
    margin-right: auto;
  }
}

section#process.section {
  padding-top: 3rem;
}

.problem-copy h2 {
  color: var(--purple);
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 2.8vw, 2.5rem);
}

.problem-copy h2 span {
  background: linear-gradient(95deg, var(--purple), #6f3ba8 55%, #8d58c4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.problem-copy {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  
}

.problem-copy p {
  margin-bottom: 1.2rem;
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  line-height: 1.6;
}

.problem-copy .highlight-text {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  font-weight: 700;
  color: var(--purple);
  padding-left: 1.2rem;
  margin: 1.8rem 0;
  line-height: 1.45;
}

.problem-copy .solution-text {
  font-size: clamp(1.05rem, 3.8vw, 1.3rem);
  color: var(--purple);
  margin-top: 1.8rem;
  font-weight: 700;
}

.problem-graphic {
  position: relative;
  /* max-width: min(100%, 920px); */
  margin: 0 auto;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* 
.problem-graphic {
  background: white;
  border: var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  padding:20px;
} */

.system-comparison {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  min-width: 0;
    gap:1rem;
}

.system-frame{
   width:40%;
    background:#fff;
    padding:10px;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    z-index: 2;
}
.system-box {

    /* box-sizing: border-box; */
     /* display:inline-block; */
      /* display:block; */
  width: 100%;
  /* width:360px; */
  /* min-width: 0; */
  flex: 1 1 240px;
  /* max-width: 360px; */
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.system-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.system-box:hover {
  transform: translateY(-3px);
}

.system-box.broken {
  background: linear-gradient(165deg, #fff8f6 0%, #fdecea 55%, #fad9d5 100%);
  border: 2px solid rgba(180, 35, 24, 0.38);
  box-shadow: 0 10px 28px rgba(180, 35, 24, 0.12);

  
}


.system-box.broken::before {
  background: linear-gradient(90deg, #b42318, #e85d4a);
}

.system-box.connected {
  background: linear-gradient(165deg, #ffffff 0%, #f3ecfb 50%, #ebe2f8 100%);
  border: 2px solid var(--purple);
  box-shadow: 0 12px 32px rgba(77, 40, 117, 0.18);
}

.system-box.connected::before {
  background: linear-gradient(90deg, var(--purple), var(--neon));
}

.system-title {
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(77, 40, 117, 0.1);
}

.broken .system-title {
  color: #b42318;
  border-bottom-color: rgba(180, 35, 24, 0.18);
}

.connected .system-title {
  color: var(--purple);
  border-bottom-color: rgba(77, 40, 117, 0.15);
}

.system-nodes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sys-node {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 0;
}

.broken .sys-node {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(180, 35, 24, 0.16);
  color: #5c2a24;
}

.connected .sys-node {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(77, 40, 117, 0.14);
  color: var(--text);
}

.node-status {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.node-status.negative {
  background: rgba(180, 35, 24, 0.14);
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.2);
}

.node-status.positive {
  background: rgba(208, 255, 0, 0.35);
  color: #3d5200;
  border: 1px solid rgba(77, 40, 117, 0.12);
}

.system-arrow {
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f2eff8 0%, #f7f5fb 100%);
  /* border: 2px solid rgba(77, 40, 117, 0.12); */
  box-shadow: none;
  z-index: 1;

}

.system-arrow svg {
  display: block;
}

.system-footer {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
}

.broken .system-footer {
  color: #9c1f15;
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.14);
}

.connected .system-footer {
  color: var(--purple);
  background: rgba(208, 255, 0, 0.18);
  border: 1px solid rgba(77, 40, 117, 0.12);
}

@media (max-width: 980px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 760px) {
  .system-frame{
    width:100%;
    padding:5px;
  }
  .problem-section .container {
    width: min(1120px, 94%);
  }

  .problem-copy .highlight-text {
    padding-left: 0.75rem;
    margin: 1.25rem 0;
  }

  .problem-copy .solution-text {
    margin-top: 1.25rem;
  }

  .problem-graphic {
    padding: 20px;
  }

  .system-comparison {
    gap: 1rem;
  }

  .system-box {
    z-index: 2;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 1.1rem 1rem;
  }


  .system-title {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .sys-node {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8rem;
    padding: 0.6rem 0.75rem;
  }

  .node-status {
    font-size: 0.68rem;
    align-self: flex-start;
    white-space: normal;
    text-align: left;
  }

  .system-arrow {
 
    flex-basis: 100%;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    transform: rotate(90deg);
    background: linear-gradient(180deg, #f2eff8 0%, #f7f5fb 100%);
   }

  .floating-cta-bar {
    display: none !important;
  }
}

/* Card meta styles for Who We Work With */
.card-meta {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple);
  margin: 0 0 0.65rem;
  opacity: 0.85;
}

/* Floating CTA Bar */
.floating-cta-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: var(--border);
  box-shadow: 0 -10px 30px rgba(77, 40, 117, 0.12);
  padding: 0.9rem 0;
  z-index: 99;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta-bar.visible {
  bottom: 0;
}

.floating-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.floating-cta-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple);
}

/* Process section — step cards */
.process-grid {
  position: relative;
}

.process-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-left: 4px solid var(--neon);
  background: linear-gradient(135deg, #ffffff 0%, #f4f0fa 100%);
}

.process-card::before {
  display: none;
}

.process-card:hover {
  border-left-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(77, 40, 117, 0.2);
}

.process-step {
  flex-shrink: 0;
}

.process-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--neon);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(77, 40, 117, 0.25);
}

.process-body {
  flex: 1;
  min-width: 0;
}

.process-body h3 {
  margin: 0 0 0.5rem;
}

.process-body p {
  margin: 0;
}

@media (min-width: 981px) {
  .process-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(77, 40, 117, 0.15), transparent);
    z-index: 0;
    pointer-events: none;
  }

  .process-card {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 600px) {
  .process-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .process-num {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .floating-cta-inner {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
  .floating-cta-text {
    font-size: 0.88rem;
  }
  .floating-cta-bar {
    padding: 0.75rem 0;
  }

  .contact-actions .btn .btn1{
    width: 100%;
    max-width: 100%;
  }
}

