:root {
  --bg-main: #f7f8fb;
  --bg-soft: #eef1f6;
  --bg-alt: #e9edf4;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --glass: rgba(255, 255, 255, 0.56);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --glass-border: rgba(255, 255, 255, 0.78);
  --glass-border-soft: rgba(90, 105, 135, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.95);
  --text-primary: #171a21;
  --text-secondary: #4d5667;
  --text-muted: #7d8798;
  --accent: #7567f8;
  --accent-blue: #5d8df7;
  --accent-soft: #aaa2ff;
  --accent-gradient: linear-gradient(135deg, #7567f8, #5d8df7);
  --shadow-soft: rgba(45, 55, 80, 0.1);
  --shadow-medium: rgba(45, 55, 80, 0.16);
  --content-width: 1240px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

#home,
#services,
#how-we-work,
#portfolio,
#testimonial,
#contactus1 {
  scroll-margin-top: 108px;
}

body.home-light {
  background:
    radial-gradient(circle at 16% 0%, rgba(170, 162, 255, 0.34), transparent 34rem),
    radial-gradient(circle at 88% 14%, rgba(93, 141, 247, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--bg-main), var(--bg-soft));
  color: var(--text-primary);
  font-family: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 450;
  overflow-x: hidden;
}

body.home-light p,
body.home-light a,
body.home-light button,
body.home-light input,
body.home-light textarea,
body.home-light h1,
body.home-light h2,
body.home-light h3,
body.home-light h4,
body.home-light h5,
body.home-light h6 {
  font-family: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ds-container {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
}

.ds-section {
  position: relative;
  padding: clamp(72px, 8vw, 128px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(170, 162, 255, 0.17), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(93, 141, 247, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--bg-main), var(--bg-soft));
}

.section-eyebrow,
.section-tag,
.section-label,
.stats-subtitle,
.about-header .subtitle,
.how-we-work-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-soft) !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-eyebrow::before,
.section-tag::before,
.section-label::before,
.stats-subtitle::before,
.about-header .subtitle::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent-gradient);
}

.circleShape {
  border-color: var(--accent) !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

.section-title,
.main-title,
.portfolio-heading {
  color: var(--text-primary) !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-copy,
.section-subtitle,
.portfolio-desc,
.about-description,
.section-text,
.consult-subtitle,
.stats-desc {
  color: var(--text-secondary) !important;
  line-height: 1.75;
}

.text-gradient,
.portfolio-heading .highlight,
.trusted .brands {
  color: transparent !important;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

@supports ((backdrop-filter: blur(20px)) or (-webkit-backdrop-filter: blur(20px))) {
  .navbar-area,
  .service-flower-shell,
  .consult-panel,
  .human-modal-panel,
  .project-meta,
  .testimonial-card,
  .faq-section .card,
  .app-download-content,
  .core-mark,
  .core-fragment,
  .process-panel {
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    backdrop-filter: blur(24px) saturate(145%);
  }
}

.navbar-area {
  background: rgba(247, 248, 251, 0.48);
  border-bottom: 1px solid rgba(90, 105, 135, 0.08);
  transition:
    background 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium),
    padding 0.28s var(--ease-premium),
    border-color 0.28s ease;
}

.navbar-area.sticky {
  background: rgba(242, 244, 248, 0.82);
  border-bottom-color: rgba(90, 105, 135, 0.12);
  box-shadow: 0 18px 58px rgba(45, 55, 80, 0.12);
}

.navbar-area .navbar {
  padding: 18px 0;
}

.navbar-area.sticky .navbar {
  padding: 10px 0;
}

.navbar-brand img {
  max-width: min(300px, 62vw);
  height: auto;
}

.navbar-area .navbar-nav .nav-item > a {
  color: rgba(23, 26, 33, 0.86);
  font-weight: 750;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.navbar-area.sticky .navbar-nav .nav-item > a {
  color: #252932;
}

.navbar-area .navbar-nav .nav-item.active > a,
.navbar-area .navbar-nav .nav-item > a:hover {
  color: var(--accent-soft);
}

.navbar-area.sticky .navbar-nav .nav-item.active > a {
  color: var(--accent);
}

.navbar-area.sticky .navbar-nav .nav-item > a:hover {
  color: #5c54db;
}

.navbar-area .sub-menu {
  background: rgba(247, 248, 251, 0.9);
  border: 1px solid var(--glass-border-soft);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(45, 55, 80, 0.14);
  overflow: hidden;
}

.navbar-area.sticky .sub-menu {
  background: rgba(242, 244, 248, 0.94);
  border-color: rgba(34, 38, 45, 0.12);
}

.navbar-area .sub-menu li a {
  color: rgba(23, 26, 33, 0.88) !important;
}

.navbar-area.sticky .sub-menu li a {
  color: #252932 !important;
}

.navbar-area .sub-menu li a:hover {
  color: var(--accent-soft) !important;
}

.navbar-toggler .toggler-icon {
  background: var(--text-primary);
}

.navbar-area.sticky .navbar-toggler .toggler-icon {
  background: #252932;
}

.revamp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 92px;
  background:
    radial-gradient(circle at 18% 18%, rgba(170, 162, 255, 0.34), transparent 30rem),
    radial-gradient(circle at 78% 28%, rgba(93, 141, 247, 0.2), transparent 30rem),
    radial-gradient(circle at 52% 74%, rgba(255, 255, 255, 0.74), transparent 26rem),
    linear-gradient(145deg, #f7f8fb 0%, #eef1f6 52%, #f4f5f8 100%);
}

.hero-grid-layer {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(90, 105, 135, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 105, 135, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

.hero-aurora,
.hero-beam {
  position: absolute;
  pointer-events: none;
  z-index: -2;
}

.hero-aurora {
  width: clamp(22rem, 38vw, 42rem);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(78px);
  opacity: 0.52;
}

.hero-aurora-one {
  left: -14rem;
  top: 8%;
  background: rgba(170, 162, 255, 0.68);
}

.hero-aurora-two {
  right: -15rem;
  top: 14%;
  background: rgba(93, 141, 247, 0.34);
}

.hero-beam {
  inset: 8% -20% auto;
  height: 52%;
  background: linear-gradient(110deg, transparent 12%, rgba(170, 162, 255, 0.2), rgba(93, 141, 247, 0.14), transparent 70%);
  transform: rotate(-8deg);
  animation: beamDrift 14s ease-in-out infinite alternate;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.revamp-hero-copy {
  position: relative;
  max-width: 740px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.revamp-hero .section-eyebrow {
  margin-bottom: 22px;
}

.revamp-hero .hero-title {
  color: var(--text-primary);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}

.revamp-hero .hero-title span {
  display: block;
  overflow: hidden;
  color: var(--text-primary) !important;
}

.hero-copy {
  max-width: 630px;
  color: var(--text-secondary);
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 28px;
}

.quote-btn,
.consult-btn,
.portfolio-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.24s var(--ease-premium), border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.quote-btn,
.consult-btn,
.portfolio-btn {
  border: 0;
  background: var(--accent-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 45px rgba(93, 141, 247, 0.22);
}

.ghost-btn {
  border: 1px solid var(--glass-border-soft);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 18px 50px var(--shadow-soft);
}

.quote-btn:hover,
.consult-btn:hover,
.portfolio-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 103, 248, 0.28);
  color: var(--accent) !important;
  box-shadow: 0 24px 58px rgba(117, 103, 248, 0.2);
}

.digital-core {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  transform-style: preserve-3d;
}

.core-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.core-ring,
.core-orbit,
.core-line {
  fill: none;
  stroke: url("#coreGradient");
  stroke-width: 1.4;
  stroke-linecap: round;
}

.core-ring {
  opacity: 0.24;
  stroke-dasharray: 2 12;
}

.core-orbit {
  opacity: 0.5;
  transform-origin: 320px 320px;
}

.orbit-one {
  transform: rotate(-18deg);
}

.orbit-two {
  transform: rotate(42deg);
  opacity: 0.36;
}

.core-line {
  opacity: 0.62;
}

.core-nodes circle {
  fill: var(--accent-blue);
  filter: drop-shadow(0 0 10px rgba(93, 141, 247, 0.62));
}

.core-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: min(62%, 330px);
  aspect-ratio: 1;
  padding: 34px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 34%, rgba(170, 162, 255, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    inset 0 0 58px rgba(117, 103, 248, 0.12),
    0 36px 100px rgba(45, 55, 80, 0.16);
}

.core-mark::before,
.core-mark::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(117, 103, 248, 0.18);
}

.core-mark::after {
  inset: 44px;
  border-color: rgba(93, 141, 247, 0.18);
}

.core-mark img {
  position: relative;
  z-index: 1;
  width: min(100%, 270px);
  height: auto;
}

.core-fragment {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 16px 42px var(--shadow-soft);
}

.fragment-one {
  left: 3%;
  top: 28%;
}

.fragment-two {
  right: 2%;
  bottom: 24%;
}

.services-flower-section {
  background:
    radial-gradient(circle at 12% 26%, rgba(178, 170, 255, 0.24), transparent 31rem),
    radial-gradient(circle at 84% 48%, rgba(120, 170, 255, 0.18), transparent 33rem),
    linear-gradient(180deg, var(--bg-main), var(--bg-soft));
}

.services-flower-section::before,
.services-flower-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.58;
}

.services-flower-section::before {
  width: clamp(18rem, 34vw, 38rem);
  aspect-ratio: 1;
  left: -12rem;
  top: 18%;
  background: rgba(170, 162, 255, 0.34);
}

.services-flower-section::after {
  width: clamp(16rem, 30vw, 34rem);
  aspect-ratio: 1;
  right: -10rem;
  bottom: 8%;
  background: rgba(93, 141, 247, 0.22);
}

.services-flower-intro {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: clamp(72px, 8vw, 120px);
}

.services-flower-section .section-title {
  max-width: 840px;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.05;
  margin: 18px 0;
}

.services-flower-section .section-subtitle {
  max-width: 650px;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
}

.services-flower-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: clamp(700px, 58vw, 900px);
  margin-top: 0;
  padding-top: 0;
}

.services-flower-stage::before {
  content: "";
  position: absolute;
  inset: 12% 20%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 56%),
    radial-gradient(circle at 45% 50%, rgba(173, 164, 255, 0.18), rgba(173, 164, 255, 0) 62%);
  filter: blur(22px);
  opacity: 0.72;
  pointer-events: none;
}

.services-flower-grid {
  --flower-card-size: clamp(230px, 17vw, 290px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, var(--flower-card-size)));
  column-gap: clamp(22px, 3vw, 36px);
  row-gap: clamp(24px, 3vw, 38px);
  justify-content: center;
  width: 100%;
}

.service-flower-card {
  --card-border: rgba(255, 255, 255, 0.82);
  --card-shadow: 0 20px 56px rgba(55, 65, 90, 0.12);
  position: relative;
  z-index: 1;
  width: var(--flower-card-size);
  min-height: clamp(285px, 22vw, 350px);
  height: auto;
  aspect-ratio: auto;
  overflow: visible;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.service-flower-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(20px, 2vw, 30px);
  overflow: visible;
  isolation: isolate;
  border-radius: 28px;
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at 84% 14%, rgba(170, 162, 255, 0.24), transparent 32%),
    radial-gradient(circle at 16% 92%, rgba(93, 141, 247, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    var(--card-shadow);
  transition:
    transform 0.34s var(--ease-premium),
    box-shadow 0.34s ease,
    border-color 0.34s ease;
}

.service-flower-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.48), transparent 36%),
    radial-gradient(circle at 50% 120%, rgba(140, 154, 255, 0.14), transparent 36%);
  pointer-events: none;
}

.service-flower-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-flower-link {
  color: inherit;
  text-decoration: none;
}

.service-flower-link:focus-visible {
  outline: 3px solid rgba(117, 103, 248, 0.34);
  outline-offset: 4px;
}

.service-flower-topline,
.service-flower-copy {
  position: relative;
  z-index: 1;
}

.service-flower-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-flower-number {
  display: inline-flex;
  color: rgba(105, 95, 214, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.service-flower-icon,
.service-flower-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-flower-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: 0.92;
  filter: saturate(0.88);
  transition: transform 0.34s var(--ease-premium);
}

.service-flower-glyph {
  position: relative;
  overflow: hidden;
}

.service-flower-glyph--nodes {
  background:
    radial-gradient(circle at 22% 58%, rgba(117, 103, 248, 0.68) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 28%, rgba(93, 141, 247, 0.58) 0 3px, transparent 4px),
    radial-gradient(circle at 74% 68%, rgba(170, 162, 255, 0.72) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(221, 228, 255, 0.45));
}

.service-flower-glyph--nodes::before {
  content: "";
  position: absolute;
  inset: 11px;
  background:
    linear-gradient(90deg, transparent 8%, rgba(117, 103, 248, 0.24) 9% 56%, transparent 57%),
    linear-gradient(148deg, transparent 40%, rgba(93, 141, 247, 0.2) 41% 68%, transparent 69%);
}

.service-flower-glyph--docs::before,
.service-flower-glyph--docs::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(209, 215, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.service-flower-glyph--docs::before {
  inset: 9px 12px 11px 13px;
}

.service-flower-glyph--docs::after {
  inset: 14px 9px 8px 16px;
  opacity: 0.62;
}

.service-flower-glyph--tiles {
  background:
    linear-gradient(135deg, rgba(117, 103, 248, 0.22), rgba(255, 255, 255, 0.56)) 0 0 / 46% 46% no-repeat,
    linear-gradient(135deg, rgba(93, 141, 247, 0.2), rgba(255, 255, 255, 0.44)) 100% 0 / 46% 46% no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(170, 162, 255, 0.22)) 0 100% / 46% 46% no-repeat,
    linear-gradient(135deg, rgba(170, 162, 255, 0.28), rgba(255, 255, 255, 0.5)) 100% 100% / 46% 46% no-repeat;
}

.service-flower-glyph--signal::before,
.service-flower-glyph--signal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(93, 141, 247, 0.24);
}

.service-flower-glyph--signal::after {
  inset: 14px;
  border-color: rgba(117, 103, 248, 0.26);
}

.service-flower-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.service-flower-copy h3 {
  color: var(--text-primary);
  font-size: clamp(1.12rem, 1.2vw, 1.32rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.service-flower-copy p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 0.95vw, 0.98rem);
  line-height: 1.5;
  display: block;
  overflow: visible;
  max-height: none;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
}

.service-flower-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;
}

.service-flower-cta span {
  display: inline-block;
  transition: transform 0.28s var(--ease-premium);
}

@media (hover: hover) and (pointer: fine) {
  .services-flower-grid:has(.service-flower-card:hover) .service-flower-card:not(:hover) {
    opacity: 0.94;
  }

  .service-flower-card:hover {
    z-index: 12 !important;
  }

  .service-flower-card:hover .service-flower-shell {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 28px 72px rgba(55, 65, 90, 0.16);
  }

  .service-flower-card:hover .service-flower-icon img,
  .service-flower-card:hover .service-flower-glyph {
    transform: translateY(-3px);
  }

  .service-flower-card:hover .service-flower-cta span {
    transform: translateX(4px);
  }
}

.readmore {
  color: var(--accent-soft) !important;
  font-weight: 800;
}

.consult-section,
.ftco-section-3 {
  background:
    radial-gradient(circle at 16% 24%, rgba(170, 162, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 86% 72%, rgba(93, 141, 247, 0.2), transparent 30rem),
    linear-gradient(180deg, #f7f8fb, #eef1f6) !important;
}

.consult-section .overlay {
  background: transparent !important;
}

.consult-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: clamp(30px, 5vw, 86px);
  align-items: stretch;
  padding: clamp(30px, 5vw, 64px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 24%, rgba(170, 162, 255, 0.24), transparent 26rem),
    radial-gradient(circle at 86% 78%, rgba(93, 141, 247, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 30px 80px rgba(70, 80, 120, 0.12);
}

.consult-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 28%),
    radial-gradient(circle at 22% 42%, rgba(180, 172, 255, 0.14), transparent 32%);
  pointer-events: none;
}

.consult-visual-glow {
  position: absolute;
  left: clamp(-72px, -3vw, -24px);
  top: 50%;
  width: clamp(240px, 24vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 50% 50%, rgba(154, 142, 255, 0.2), rgba(154, 142, 255, 0) 68%);
  filter: blur(10px);
  opacity: 0.95;
  pointer-events: none;
}

.consult-title,
.stats-title {
  color: var(--text-primary) !important;
  font-weight: 800;
  letter-spacing: 0;
}

.consult-title {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.05;
  max-width: 12ch;
  margin: 0;
}

.consult-subtitle {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.consult-intro,
.consult-form-wrap,
.consult-form-shell {
  position: relative;
  z-index: 1;
}

.consult-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  min-width: 0;
}

.consult-eyebrow {
  margin: 0;
  color: rgba(77, 86, 103, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.consult-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.consult-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 720;
}

.consult-trust-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b80f9, #73a7ff);
  box-shadow: 0 0 0 5px rgba(117, 103, 248, 0.08);
}

.consult-brief-chip {
  display: grid;
  gap: 6px;
  max-width: 280px;
  margin-top: 6px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 20px 46px rgba(80, 90, 126, 0.08);
}

.consult-brief-label {
  color: rgba(105, 95, 214, 0.82);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consult-brief-copy {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.consult-form-wrap {
  display: flex;
  align-items: stretch;
}

.consult-form-shell {
  width: 100%;
  padding: clamp(20px, 2vw, 28px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 48px rgba(80, 90, 126, 0.08);
}

.consult-form-kicker {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.consult-form-wrap form {
  display: grid;
  gap: 16px;
}

.consult-field {
  display: grid;
  gap: 8px;
}

.consult-label {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 720;
}

.consult-form-wrap .form-control,
.volunter-form .form-control {
  min-height: 60px;
  padding: 17px 18px;
  border-radius: 20px;
  border: 1px solid rgba(120, 130, 160, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(80, 90, 126, 0.04);
}

.consult-form-wrap textarea.form-control,
.volunter-form textarea.form-control {
  min-height: 168px;
  resize: vertical;
}

.consult-form-wrap .form-control::placeholder,
.volunter-form .form-control::placeholder {
  color: rgba(77, 86, 103, 0.66);
}

.consult-form-wrap .form-control:focus,
.volunter-form .form-control:focus {
  border-color: rgba(117, 103, 248, 0.46);
  box-shadow: 0 0 0 4px rgba(117, 103, 248, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.consult-submit-row {
  margin-top: 4px;
}

.consult-btn {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #8b80f9, #73a7ff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 32px rgba(101, 113, 230, 0.26);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s ease,
    filter 0.28s ease;
}

.consult-btn .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.consult-btn .btn-text span {
  display: inline-block;
  transition: transform 0.28s var(--ease-premium);
}

.consult-btn:hover,
.consult-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 24px 40px rgba(101, 113, 230, 0.28);
  filter: saturate(1.04);
}

.consult-btn:hover .btn-text span,
.consult-btn:focus-visible .btn-text span {
  transform: translateX(4px);
}

.consult-btn:disabled {
  transform: none;
  filter: saturate(0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(101, 113, 230, 0.16);
}

.accomplishments-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(93, 141, 247, 0.14), transparent 30rem),
    linear-gradient(180deg, var(--bg-main), var(--bg-alt));
}

.accomplishments-header {
  max-width: 820px;
}

.stats-title {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 12px 0 16px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  margin-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid rgba(90, 105, 135, 0.14);
}

.metric-item {
  position: relative;
  padding-top: clamp(24px, 3vw, 34px);
}

.metric-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: var(--metric-line, 0%);
  height: 2px;
  background: var(--accent-gradient);
}

.metric-number {
  display: block;
  color: var(--text-primary);
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.92;
}

.metric-label {
  display: block;
  margin-top: 16px;
  color: var(--text-muted);
  font-weight: 750;
}

.about-header {
  max-width: 930px;
  margin: 0 auto 44px;
}

.about-header .main-title {
  font-size: clamp(2.3rem, 4.8vw, 5.2rem);
  line-height: 1.02;
}

.about-description {
  color: var(--text-secondary);
  text-align: left;
  margin-bottom: 28px;
}

.about-stats {
  gap: 16px;
}

.about-stats .stat,
.fun-item {
  border-top: 1px solid rgba(90, 105, 135, 0.14);
  padding-top: 18px;
  background: transparent !important;
  border-radius: 0;
  box-shadow: none;
}

.about-stats .stat h4,
.fun-number {
  color: var(--text-primary);
  font-weight: 800;
}

.about-stats .stat p,
.fun-text {
  color: var(--text-muted);
}

.fun-stats {
  gap: 16px;
}

.about-image {
  width: min(100%, 560px);
  border-radius: 8px;
  filter: saturate(0.92) brightness(1.02) contrast(0.98);
  box-shadow: 0 30px 90px rgba(45, 55, 80, 0.14);
}

.wavyline,
.how-we-work-wave {
  display: none !important;
}

.revamp-process-section {
  color: var(--text-primary);
  --header-offset: 86px;
  padding-bottom: clamp(56px, 7vw, 96px);
}

.how-we-work-section .section-title {
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
}

.how-we-work-section .section-text {
  max-width: 720px;
}

.how-work-intro {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.process-pin-stage {
  position: relative;
  min-height: 0;
  display: block;
  padding: 0;
}

.process-pin-stage::before {
  content: "";
  position: absolute;
  inset: -8% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(170, 162, 255, 0.34), transparent 24rem),
    radial-gradient(circle at 78% 58%, rgba(93, 141, 247, 0.22), transparent 26rem),
    radial-gradient(circle at 48% 100%, rgba(117, 103, 248, 0.16), transparent 22rem);
  opacity: 0.72;
}

.process-pin-stage .ds-container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.process-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 56px);
  height: auto;
  min-height: 0;
  width: 100%;
}

.process-panel {
  position: relative;
  flex: 0 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.28fr);
  align-items: center;

  gap: clamp(18px, 4vw, 52px);

  overflow: hidden;
  min-height: clamp(240px, 22vw, 320px);

  padding: clamp(26px, 3vw, 42px);

  border-radius: clamp(20px, 2.2vw, 24px);

  background: #efefef;
  border: 1px solid rgba(17, 17, 17, 0.04);
  color: #111111;

  box-shadow: none;
  transform-origin: center center;

  --process-open: 0;

  will-change: transform, opacity;
  transform: translateZ(0);
}

.process-panel::before,
.process-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: var(--process-open);
  transition: opacity 0.18s linear;
}

.process-panel::before {
  z-index: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(93, 141, 247, 0.2), transparent 16rem),
    radial-gradient(circle at 18% 86%, rgba(170, 162, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(238, 238, 255, 0.34));
}

.process-panel::after {
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 20px 50px rgba(70, 70, 110, 0.1);
}

.process-panel-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title kicker"
    "copy kicker"
    "signature kicker";
  column-gap: clamp(18px, 3vw, 44px);
  row-gap: 0;
  min-width: 0;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.process-kicker {
  grid-area: kicker;
  align-self: center;
  color: #a2a2a2;
  font-size: clamp(1.35rem, 2.6vw, 2.55rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.process-panel h3,
.process-panel-title {
  grid-area: title;
  color: #111111;
  max-width: 760px;
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: left;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.process-panel p {
  grid-area: copy;
  max-width: 610px;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.62;
  text-align: left;
  margin: clamp(18px, 2.2vw, 26px) 0 0;
  overflow: hidden;
}

.process-signature {
  grid-area: signature;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  margin-top: clamp(24px, 3vw, 36px);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  overflow: hidden;
}

.process-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: min(100%, 210px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 44px rgba(70, 70, 110, 0.08);
  overflow: hidden;
}

.process-visual i {
  position: relative;
  z-index: 2;
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.process-visual span {
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  border: 1px solid rgba(117, 103, 248, 0.16);
}

.process-visual span::before,
.process-visual span::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(93, 141, 247, 0.13);
}

.process-visual span::before {
  inset: -28%;
}

.process-visual span::after {
  inset: 28%;
}
{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: end;
}

.portfolio-heading {
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 1.05;
  margin: 0 0 15px;
}

.portfolio-heading br {
  display: block;
  content: "";
  margin-bottom: 15px; /* spacing between heading lines */
}


.portfolio-desc {
  text-align: left;
  max-width: 650px;
}

.portfolio-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(42px, 7vw, 78px);
}

.portfolio-connectors {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  pointer-events: none;
  opacity: 0.65;
}

.connector-path {
  fill: none;
  stroke: rgba(117, 103, 248, 0.24);
  stroke-width: 1.4;
}

.connector-path-accent {
  stroke: rgba(93, 141, 247, 0.24);
}

.project-card {
  position: relative;
  min-height: clamp(320px, 34vw, 430px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid rgba(90, 105, 135, 0.1);
  box-shadow: 0 26px 86px rgba(45, 55, 80, 0.14);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(1.02) contrast(0.98);
  transform: scale(1.01);
  transition: transform 0.38s var(--ease-premium), filter 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(1) brightness(1.05) contrast(1);
}

.project-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 18px 48px var(--shadow-soft);
  transition: transform 0.26s var(--ease-premium), border-color 0.26s ease;
}

.project-card:hover .project-meta {
  transform: translateY(-4px);
  border-color: rgba(117, 103, 248, 0.32);
}

.project-meta h3 {
  color: var(--text-primary);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  margin: 0 0 8px;
}

.project-meta p {
  color: var(--text-secondary);
  margin: 0 0 12px;
  line-height: 1.5;
}

.portfolio-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(170, 162, 255, 0.22), transparent 31rem),
    radial-gradient(circle at 88% 36%, rgba(93, 141, 247, 0.14), transparent 30rem),
    linear-gradient(180deg, var(--bg-soft), var(--bg-main));
}

.portfolio-intro 
.project-meta a {
  color: var(--accent-soft) !important;
  font-weight: 800;
}

.project-meta a span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.project-card:hover .project-meta a span {
  transform: translateX(5px);
}

.capabilities-section {
  background:
    radial-gradient(circle at 16% 30%, rgba(170, 162, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 84% 28%, rgba(93, 141, 247, 0.13), transparent 30rem),
    linear-gradient(145deg, #f4f5f8, var(--bg-soft)) !important;
}

.capabilities-inner {
  position: relative;
}

.capability-side-image {
  position: absolute;
  z-index: 1;
  width: 250px;
  filter: saturate(0.92) brightness(1.02);
}

.capability-side-left {
  left: 3%;
}

.capability-side-right {
  right: 5%;
}

.app-download-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px);
  border-radius: 36px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(170, 162, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 72%, rgba(93, 141, 247, 0.14), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 28px 70px rgba(70, 80, 120, 0.12);
}

.app-download-content h2 {
  color: var(--text-primary);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.app-download-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.store-button {
  min-width: 230px;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(70, 80, 120, 0.12);
  color: var(--text-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(70, 80, 120, 0.16);
  border-color: rgba(111, 127, 240, 0.34);
}

.store-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 1.9rem;
  color: #203765;
}

.store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.05;
}

.store-copy small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.store-copy strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-primary);
}

.app-shape-1,
.app-shape-2 {
  opacity: 0.12;
  filter: grayscale(1) brightness(1.4);
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 130px) 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(170, 162, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 86% 60%, rgba(93, 141, 247, 0.16), transparent 32rem),
    linear-gradient(180deg, #f8f6ff 0%, #f4f7ff 100%);
}

.testimonials-section::before,
.testimonials-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.testimonials-section::before {
  width: clamp(240px, 24vw, 360px);
  height: clamp(240px, 24vw, 360px);
  top: 8%;
  left: -5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
}

.testimonials-section::after {
  width: clamp(280px, 26vw, 420px);
  height: clamp(280px, 26vw, 420px);
  right: -8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(198, 214, 255, 0.42), rgba(198, 214, 255, 0));
}

.testimonials-inner {
  position: relative;
  width: min(calc(100% - 32px), 1320px);
}

.testimonials-header {
  max-width: 760px;
  margin: 0 auto clamp(56px, 6vw, 76px);
  text-align: center;
}

.testimonials-eyebrow {
  margin: 0 0 18px;
  color: #6678d8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.testimonials-header h2 {
  margin: 0;
  color: #16213f;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.testimonials-intro {
  max-width: 700px;
  margin: 20px auto 0;
  color: rgba(35, 48, 82, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.7;
}

.testimonials-glass-shell {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 520px;
  padding: clamp(34px, 4vw, 54px);
  height: auto;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(170, 162, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 88% 86%, rgba(93, 141, 247, 0.14), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 64px rgba(70, 80, 120, 0.12);
}

.testimonials-pages {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  min-height: 0;
  padding-inline: clamp(54px, 6vw, 80px);
}

.testimonial-card {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 380px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(30px, 3vw, 42px);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(180, 172, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(70, 80, 120, 0.1);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
}

.testimonial-card.is-visible {
  position: relative;
  inset: auto;
  visibility: visible;
  pointer-events: auto;
  animation: testimonialPageIn 0.28s ease forwards;
}

.testimonials-pages.is-measuring {
  display: block;
}

.testimonials-pages.is-measuring .testimonial-card {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--testimonial-measure-width, 100%);
  min-height: 380px;
  height: auto;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: none !important;
  pointer-events: none !important;
  animation: none !important;
}

@keyframes testimonialPageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-avatar {
  width: clamp(78px, 6vw, 92px);
  height: clamp(78px, 6vw, 92px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 34px rgba(45, 55, 80, 0.16);
  flex: 0 0 auto;
}

.testimonial-person {
  min-width: 0;
}

.client-name {
  margin: 0;
  color: #17213d;
  font-size: clamp(1.14rem, 1.4vw, 1.34rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.client-role {
  margin: 8px 0 0 !important;
  color: rgba(48, 61, 96, 0.72) !important;
  font-size: 0.96rem;
  line-height: 1.5;
}

.testimonial-stars {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: #6f7ff0;
  font-size: clamp(1rem, 1vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #16213f !important;
  font-size: clamp(1.2rem, 1.5vw, 1.7rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(120, 130, 160, 0.28);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.testimonial-dot.is-active,
.testimonial-dot:focus-visible {
  background: #6f7ff0;
  transform: scale(1.15);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 12px 30px rgba(70, 80, 120, 0.12);
  color: #6f7ff0;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: translateY(-50%) scale(1.06);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(70, 80, 120, 0.16);
}

.testimonial-arrow-prev {
  left: clamp(14px, 2vw, 28px);
}

.testimonial-arrow-next {
  right: clamp(14px, 2vw, 28px);
}

.human-modal[hidden] {
  display: none;
}

.human-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.human-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(238, 241, 246, 0.72);
}

.human-modal-panel {
  position: relative;
  width: min(100%, 470px);
  padding: clamp(26px, 5vw, 42px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(170, 162, 255, 0.24), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48));
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 34px 110px rgba(45, 55, 80, 0.18);
}

.human-modal-panel h2 {
  color: var(--text-primary);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 800;
  margin: 8px 0 12px;
}

.human-modal-panel p {
  color: var(--text-secondary);
}

.human-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.62);
}

.human-captcha {
  min-height: 78px;
  margin: 22px 0 10px;
}

.human-modal-status {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--accent-soft) !important;
  font-size: 0.92rem;
}

.human-cancel {
  width: 100%;
}

.human-modal-open {
  overflow: hidden;
}

.faq-section {
  background: linear-gradient(180deg, var(--bg-main), var(--bg-soft));
}

.faq-section .section-title {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.faq-section .card {
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid rgba(90, 105, 135, 0.14);
  border-radius: 0 !important;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.faq-section .card:last-child {
  border-bottom: 1px solid rgba(90, 105, 135, 0.14);
}

.faq-section .card-header {
  background: transparent;
  border: 0;
  padding: 0;
}

.faq-section .btn-link {
  width: 100%;
  padding: 22px 0;
  color: var(--text-primary);
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  white-space: normal;
}

.faq-section .btn-link::after {
  content: "+";
  float: right;
  color: var(--accent-soft);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-section .btn-link[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-section .collapse.show {
  background: rgba(255, 255, 255, 0.38);
}

.faq-section .card-body {
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 0 20px 22px;
}

.ftco-section-3 .row {
  align-items: stretch;
}

.map-responsive {
  min-height: 480px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(90, 105, 135, 0.12);
  filter: grayscale(0.45) saturate(0.82) brightness(1.04);
}

.map-responsive iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.consult-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)) !important;
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 18px 50px var(--shadow-soft);
}

.brands-marquee-section {
  position: relative;
  width: 100%;
  height: auto !important;
  padding: clamp(76px, 8vw, 112px) 24px;
  overflow: hidden;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 16% 18%, rgba(170, 162, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 68%, rgba(93, 141, 247, 0.13), transparent 30rem),
    linear-gradient(180deg, #f7f8ff 0%, #f4f7fb 100%) !important;
  border-top: 1px solid rgba(90, 105, 135, 0.1);
}

.brands-marquee-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.brands-marquee-section .display-5 {
  max-width: 860px;
  margin: 0 auto clamp(34px, 4vw, 48px);
  color: var(--text-primary) !important;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-align: center;
}

.brands-marquee-section .brands {
  color: #6f7ff0;
  font-size: inherit;
}

.brands-marquee-section .brands::after {
  display: none;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px) 0;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 56px rgba(70, 80, 120, 0.1);
}

.brands-marquee::before,
.brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(14vw, 140px);
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 248, 255, 0.88), rgba(247, 248, 255, 0));
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 248, 255, 0.88), rgba(247, 248, 255, 0));
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
  will-change: transform;
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

.brands-group {
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 80px);
  padding-right: clamp(42px, 5vw, 80px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(140px, 14vw, 220px);
}

.brand-logo img {
  height: clamp(42px, 5vw, 70px);
  width: auto;
  max-width: clamp(130px, 14vw, 220px);
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 24px 36px;
  background:
    radial-gradient(circle at 18% 0%, rgba(170, 162, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 88% 24%, rgba(93, 141, 247, 0.12), transparent 28rem),
    linear-gradient(180deg, #f4f7fb 0%, #f8f7ff 100%);
}

.site-footer .footer-container {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.site-footer .footer-glass {
  width: 100%;
  padding: clamp(30px, 4.5vw, 56px);
  align-items: stretch;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(26px) saturate(145%);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 64px rgba(70, 80, 120, 0.12);
}

.site-footer .footer-brand {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.6fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid rgba(90, 105, 135, 0.12);
}

.site-footer .logo-contain,
.site-footer .logo-text {
  margin: 0;
  height: auto;
  text-align: left;
}

.site-footer .f-logo {
  width: min(100%, 290px);
  height: auto;
}

.site-footer .logo-text p {
  max-width: 640px;
  margin: 0;
  color: var(--text-secondary) !important;
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.site-footer .flex-footer {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(160px, 0.8fr) minmax(280px, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  height: auto;
  margin: 0;
  padding: clamp(30px, 4vw, 46px) 0;
  align-items: start;
  justify-content: stretch;
  color: var(--text-secondary);
}

.site-footer .f-servives,
.site-footer .about-us {
  line-height: 1.8;
}

.site-footer .flex-footer h3,
.site-footer .follow h3 {
  margin: 0 0 16px;
  padding: 0;
  color: var(--text-primary) !important;
  font-size: 1rem;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer .f-text,
.site-footer .f-text p,
.site-footer .f-text a,
.site-footer .f-text h3 {
  color: var(--text-secondary) !important;
}

.site-footer .no-decore,
.site-footer .about-mouse {
  color: var(--text-secondary) !important;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #6f7ff0 !important;
}

.site-footer .location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.site-footer .loc-img {
  padding-top: 4px;
}

.site-footer .loc {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: none !important;
}

.site-footer .loc-adress p {
  margin: 0;
  color: var(--text-secondary) !important;
  line-height: 1.7;
  text-align: left;
}

.site-footer .follow {
  margin-top: 24px !important;
}

.site-footer .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.site-footer .social-mouse {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(70, 80, 120, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-footer .social-mouse:hover,
.site-footer .social-mouse:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(70, 80, 120, 0.14);
  transform: translateY(-2px);
}

.site-footer .social-icons img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: none !important;
}

.site-footer .footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(90, 105, 135, 0.12);
}

.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(48, 61, 96, 0.68) !important;
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 991px) {
  .site-footer .footer-brand {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer .flex-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .brands-marquee-section {
    padding: 64px 16px;
  }

  .brands-marquee-section .display-5 {
    font-size: 2rem;
    line-height: 1.14;
  }

  .brands-marquee {
    border-radius: 24px;
  }

  .brands-group {
    gap: 34px;
    padding-right: 34px;
  }

  .brand-logo {
    min-width: 118px;
  }

  .brand-logo img {
    height: 42px;
    max-width: 132px;
  }

  .site-footer {
    padding: 64px 16px 28px;
  }

  .site-footer .footer-glass {
    padding: 26px 20px;
    border-radius: 28px;
  }

  .site-footer .footer-brand,
  .site-footer .logo-contain,
  .site-footer .logo-text,
  .site-footer .logo-text p {
    text-align: left;
  }

  .site-footer .flex-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .contact {
    grid-column: auto;
  }

  .site-footer .location {
    align-items: flex-start;
  }

  .site-footer .social-icons {
    justify-content: flex-start;
  }
}

.modal-confirm .modal-content {
  background: var(--surface-strong);
  color: var(--text-primary);
}

.modal-confirm #modalMessage {
  color: var(--text-secondary) !important;
}

.modal-confirm .btn-success,
.back-to-top {
  background: var(--accent-gradient) !important;
  border: 0;
  box-shadow: 0 18px 42px rgba(117, 103, 248, 0.22);
}

@keyframes beamDrift {
  from {
    transform: translateX(-4%) rotate(-8deg);
    opacity: 0.42;
  }
  to {
    transform: translateX(4%) rotate(-8deg);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .service-flower-card,
  .process-panel {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .service-flower-shell {
    background:
      radial-gradient(circle at 84% 14%, rgba(170, 162, 255, 0.14), transparent 32%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 252, 0.82));
  }
}

@media (max-width: 1199px) {
  .hero-layout,
  .portfolio-intro,
  .consult-panel {
    grid-template-columns: 1fr;
  }

  .digital-core {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .consult-panel {
    gap: 30px;
    padding: clamp(28px, 4vw, 44px);
  }

  .consult-title {
    max-width: none;
  }

  .consult-brief-chip {
    max-width: 320px;
  }

  .services-flower-stage {
    min-height: clamp(680px, 80vw, 860px);
  }

  .services-flower-grid {
    --flower-card-size: clamp(210px, 22vw, 250px);
  }
}

@media (max-width: 991px) {
  .ds-container {
    width: min(calc(100% - 36px), var(--content-width));
  }

  .navbar-area .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(247, 248, 251, 0.94);
    border: 1px solid var(--glass-border);
  }

  .navbar-area.sticky .navbar-collapse {
    background: rgba(242, 244, 248, 0.96);
  }

  .revamp-hero {
    min-height: auto;
    padding: 118px 0 76px;
  }

  .process-pin-stage {
    min-height: auto;
    padding-top: 8px;
  }

  .process-stack {
    height: auto;
    gap: 18px;
  }

  .process-panel {
    flex: 0 0 auto !important;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(238, 238, 255, 0.34)) !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      0 20px 50px rgba(70, 70, 110, 0.1);
    clip-path: none !important;
    transform: none !important;
    --process-open: 1;
  }

  .consult-panel {
    gap: 26px;
    padding: 26px;
    border-radius: 28px;
  }

  .consult-intro {
    gap: 18px;
  }

  .consult-form-shell {
    padding: 20px;
    border-radius: 24px;
  }

  .process-panel-content {
    grid-template-areas:
      "title kicker"
      "copy copy"
      "signature signature";
    align-items: start;
  }

  .process-panel h3 {
    color: var(--text-primary) !important;
    font-size: clamp(1.6rem, 7vw, 2.6rem);
  }

  .process-panel p,
  .process-signature,
  .process-visual {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .process-panel p {
    color: var(--text-secondary);
  }

  .process-signature {
    margin-top: 24px;
  }

  .process-visual {
    width: min(48vw, 170px);
    justify-self: start;
  }

  .portfolio-connectors {
    display: none;
  }
}

@media (max-width: 767px) {
  .ds-container {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .revamp-hero {
    padding-top: 106px;
  }

  .revamp-hero .hero-title {
    font-size: clamp(2.65rem, 11vw, 3.9rem);
  }

  .digital-core {
    min-height: 380px;
  }

  .core-fragment {
    display: none;
  }

  .core-mark {
    width: min(68%, 280px);
    padding: 26px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .quote-btn,
  .ghost-btn,
  .portfolio-btn {
    width: 100%;
    margin-top: 20px;
  }

 

  .consult-title {
    font-size: clamp(2.2rem, 7.4vw, 3.2rem);
  }

  .consult-subtitle {
    font-size: 1rem;
  }

  .consult-trust-list {
    gap: 10px;
  }

  .consult-trust-chip {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .consult-brief-chip {
    display: none;
  }

  .services-flower-stage {
    min-height: clamp(620px, 96vw, 780px);
    padding-bottom: 18px;
  }

  .services-flower-grid {
    --flower-card-size: clamp(180px, 34vw, 230px);
    grid-template-columns: repeat(2, minmax(0, var(--flower-card-size)));
    column-gap: 18px;
    row-gap: 24px;
  }

  .service-flower-card {
    width: var(--flower-card-size);
  }

  .metric-row,
  .portfolio-showcase {
    grid-template-columns: 1fr;
  }

  .process-panel {
    padding: 28px;
    border-radius: 22px;
  }

  .process-panel h3 {
    font-size: clamp(1.55rem, 8vw, 2.45rem);
  }

  .process-panel p {
    font-size: 1rem;
  }

  .testimonials-section {
    padding: 88px 0;
  }

  .testimonials-header {
    margin-bottom: 48px;
  }

  .testimonials-glass-shell {
    min-height: 0;
    padding: 20px;
    border-radius: 32px;
  }

  .testimonials-pages {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-inline: 0;
    padding-bottom: 58px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 30px 24px;
    gap: 24px;
  }

  .testimonial-avatar {
    width: 78px;
    height: 78px;
  }

  .testimonial-quote {
    font-size: clamp(1.15rem, 4.8vw, 1.5rem);
  }

  .testimonial-stars {
    font-size: 1rem;
    letter-spacing: 0.14em;
  }

  .testimonial-arrow {
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .testimonial-arrow:hover,
  .testimonial-arrow:focus-visible {
    transform: scale(1.04);
  }

  .testimonial-arrow-prev {
    left: calc(50% - 58px);
  }

  .testimonial-arrow-next {
    right: calc(50% - 58px);
  }

  .map-responsive,
  .map-responsive iframe {
    min-height: 360px;
  }
}

@media (max-width: 420px) {
  .navbar-brand img {
    max-width: 225px;
  }

  .digital-core {
    min-height: 320px;
  }

  .core-mark {
    width: min(74%, 240px);
  }

  .services-flower-grid {
    grid-template-columns: 1fr;
  }

  .service-flower-card {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .service-flower-shell {
    padding: 18px;
  }

  .service-flower-copy h3 {
    font-size: 1.08rem;
  }

  .testimonials-inner {
    width: min(calc(100% - 24px), 1320px);
  }

  .testimonials-section {
    padding: 78px 0;
  }

  .testimonials-glass-shell {
    padding: 14px;
    border-radius: 28px;
  }

  .testimonials-header h2 {
    font-size: clamp(2.3rem, 13vw, 3.2rem);
  }

  .testimonials-intro {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .testimonial-card {
    padding: 26px 20px;
    border-radius: 28px;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .testimonial-avatar {
    width: 72px;
    height: 72px;
  }

  .client-role {
    font-size: 0.9rem;
  }

  .consult-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .consult-form-shell {
    padding: 16px;
    border-radius: 20px;
  }

  .consult-form-wrap .form-control,
  .volunter-form .form-control {
    min-height: 56px;
    padding: 15px 16px;
    border-radius: 18px;
  }

  .consult-form-wrap textarea.form-control,
  .volunter-form textarea.form-control {
    min-height: 148px;
  }

  .project-meta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
