:root {
  --color-primary: #3e8bc4;
  --color-secondary: #111d45;
}

/* Hide scrollbar for horizontal scroll (clean UI) */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ===== Base ===== */
@keyframes shimmer-sweep {
  0% {
    transform: translateX(-100%);
    opacity: 0.85;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0.85;
  }
}

@keyframes shimmer-pulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ===== Page load: drop-in from above (text & cards) ===== */
@keyframes drop-in-from-top {
  from {
    opacity: 0;
    transform: translateY(-32px);
  }

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

/* Process section: left/right slide-in (left card = left→right, right card = right→left) */
@keyframes process-slide-in-from-left {
  from {
    opacity: 0;
    transform: translateX(-56px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes process-slide-in-from-right {
  from {
    opacity: 0;
    transform: translateX(56px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero & elements NOT in scroll sections: animate on page load */
.animate-drop-in {
  opacity: 0;
  animation: drop-in-from-top 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Sections that animate when scrolled into view: start hidden, no animation */
.animate-on-scroll-section .animate-drop-in {
  opacity: 0;
  animation: none;
}

/* When section is in view (center): smooth drop-in */
.animate-on-scroll-section.in-view .animate-drop-in {
  animation: drop-in-from-top 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-0 {
  animation-delay: 0s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-1 {
  animation-delay: 0.08s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-2 {
  animation-delay: 0.16s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-3 {
  animation-delay: 0.24s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-4 {
  animation-delay: 0.32s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-5 {
  animation-delay: 0.4s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-6 {
  animation-delay: 0.48s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-7 {
  animation-delay: 0.56s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-8 {
  animation-delay: 0.64s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-9 {
  animation-delay: 0.72s;
}

.animate-on-scroll-section.in-view .animate-drop-in.delay-10 {
  animation-delay: 0.8s;
}

/* Stagger service cards (inside scroll section) */
.animate-on-scroll-section.in-view .service-cards-grid .service-card.animate-drop-in:nth-child(1) {
  animation-delay: 0.32s;
}

.animate-on-scroll-section.in-view .service-cards-grid .service-card.animate-drop-in:nth-child(2) {
  animation-delay: 0.4s;
}

.animate-on-scroll-section.in-view .service-cards-grid .service-card.animate-drop-in:nth-child(3) {
  animation-delay: 0.48s;
}

.animate-on-scroll-section.in-view .service-cards-grid .service-card.animate-drop-in:nth-child(4) {
  animation-delay: 0.56s;
}

.animate-on-scroll-section.in-view .service-cards-grid .service-card.animate-drop-in:nth-child(5) {
  animation-delay: 0.64s;
}

.animate-on-scroll-section.in-view .service-cards-grid .service-card.animate-drop-in:nth-child(6) {
  animation-delay: 0.72s;
}

/* Process section: left card slides left→right, right card slides right→left */
.animate-on-scroll-section.in-view .process-step-card-left.animate-drop-in {
  animation: process-slide-in-from-left 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-on-scroll-section.in-view .process-step-card-right.animate-drop-in {
  animation: process-slide-in-from-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-drop-in.delay-0 {
  animation-delay: 0s;
}

.animate-drop-in.delay-1 {
  animation-delay: 0.08s;
}

.animate-drop-in.delay-2 {
  animation-delay: 0.16s;
}

.animate-drop-in.delay-3 {
  animation-delay: 0.24s;
}

.animate-drop-in.delay-4 {
  animation-delay: 0.32s;
}

.animate-drop-in.delay-5 {
  animation-delay: 0.4s;
}

.animate-drop-in.delay-6 {
  animation-delay: 0.48s;
}

.animate-drop-in.delay-7 {
  animation-delay: 0.56s;
}

.animate-drop-in.delay-8 {
  animation-delay: 0.64s;
}

.animate-drop-in.delay-9 {
  animation-delay: 0.72s;
}

.animate-drop-in.delay-10 {
  animation-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {

  .animate-drop-in,
  .animate-on-scroll-section .animate-drop-in {
    animation: none;
    opacity: 1;
  }

  .animate-on-scroll-section .process-step-card.animate-drop-in {
    transform: translateX(0);
  }
}

body {
  -moz-osx-font-smoothing: grayscale;
  color: #171717;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, #DCDCDC 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 20% 100%, #C9CDCF 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 60%, #D7D7D7 0%, transparent 80%),
    radial-gradient(ellipse 50% 35% at 10% 40%, #D7D7D7 0%, transparent 80%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 35%, #D7D7D7 70%, #ffffff 100%);
  background-attachment: fixed;
}

/* Cursor trail canvas: full viewport, on top of content, no pointer events */
#cursor-trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

html {
  scroll-behavior: smooth;
}

/* ===== Common / Layout ===== */
.section-container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .section-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background-color: #262626;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.heading-section {
  font-size: 1.875rem;
  font-weight: 700;
  color: #171717;
}

@media (min-width: 640px) {
  .heading-section {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .heading-section {
    font-size: 2.3rem;
  }
}

.section-white {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: transparent;
}

.templates-section,
.process-section {
  background: transparent;
}

@media (min-width: 768px) {
  .section-white {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section-gray {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: transparent;
}

@media (min-width: 768px) {
  .section-gray {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.text-primary {
  color: var(--color-primary);
}

.bg-primary {
  background-color: var(--color-primary);
}

/* Folder reveal service card – 0.5s cubic-bezier(.22,1,.36,1) */
.service-card {
  width: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  cursor: pointer;
  overflow: visible;
  background: #e0e0e0;

  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-showcase-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: #171717;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.project-showcase-load-more:hover {
  background: linear-gradient(135deg, #262626 0%, #404040 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.25), 0 4px 12px -4px rgba(0, 0, 0, 0.15);
}

.project-showcase-load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

/* Service cards grid – same responsive behaviour and gap as project grid */
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Folder container – 3d perspective */
.folder-perspective {
  position: relative;
  width: 192px;
  height: 135px;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

/* Folder front – opens when cursor enters, closes when cursor leaves */
.folder-front {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  height: 115px;
  z-index: 15;
  border-radius: 12px;
  overflow: hidden;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(0deg, rgb(227, 227, 227) 0%, rgb(250, 250, 250) 53.94%, rgb(240, 240, 242) 100%);
  box-shadow: inset 0 2px 0 0 rgb(255, 255, 255);
  transform-origin: 50% 100%;
}

.folder-back {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
  width: 192px;
  height: 145px;
  border-radius: 12px;
  background: linear-gradient(176deg, #ffffff 0%, #fafafa 30%, #f5f5f5 60%, #ececec 100%);
  mask: url("https://framerusercontent.com/images/u6NHrizsQWk4u5sqIM2DGhO2EI.svg") center / cover no-repeat;
  -webkit-mask: url("https://framerusercontent.com/images/u6NHrizsQWk4u5sqIM2DGhO2EI.svg") center / cover no-repeat;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 2px 2px rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(0, 0, 0, 0.03);
}

.service-card:hover .folder-front {
  transform: rotateX(-55deg);
}

/* Folder front – glossy highlight (Framer "Light") */
.folder-front-light {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 3rem;
  height: 4rem;
  opacity: 0.3;
  background-color: rgb(255, 255, 255);
  filter: blur(5px);
  transform: rotate(15deg);
}

/* Folder container – subtle base */
.folder-container {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

/* Folder back – enhanced glass with depth */


/* Files layer – always behind folder front so they appear INSIDE when it opens */
.doc-files {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  overflow: visible;
  z-index: 5;
}

/* Closed: upper sections peeking out (front covers lower half) */
.doc-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(229, 229, 229, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate(-50%, -50%) translateX(var(--doc-peek-x, 0px)) translateY(-0px) scale(1) rotate(var(--doc-rotate, 0deg));
}

/* Doc card positions (PortfolioServices – 3 cards) */
.doc-files .doc-card:nth-child(1) {
  --doc-x: -60px;
  --doc-y: -28px;
  --doc-scale: 1;
  --doc-rotate: -18deg;
  --doc-peek-x: -10px;
  z-index: 10;
}

.doc-files .doc-card:nth-child(2) {
  --doc-x: 0px;
  --doc-y: -35px;
  --doc-scale: 1.08;
  --doc-rotate: 0deg;
  --doc-peek-x: 0px;
  z-index: 30;
}

.doc-files .doc-card:nth-child(3) {
  --doc-x: 60px;
  --doc-y: -28px;
  --doc-scale: 1;
  --doc-rotate: 18deg;
  --doc-peek-x: 10px;
  z-index: 20;
}

.doc-card .doc-card-inner {
  aspect-ratio: 13/9;
  width: 100%;
  position: relative;
  clip-path: inset(0 0 calc(100% - 42px) 0);
  transition: clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.doc-card .doc-card-inner img {
  object-fit: cover;
  object-position: top;
}

/* Hover: files slide up from inside folder (lower position = inside, not overlapping) */
.service-card:hover .doc-card {
  transform: translate(-50%, -50%) translateX(var(--doc-x, 0px)) translateY(var(--doc-y, -36px)) scale(var(--doc-scale, 1)) rotate(var(--doc-rotate, 0deg));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card:hover .doc-card .doc-card-inner {
  clip-path: inset(0 0 0 0);
}

/* ===== PortfolioBottomBar ===== */
.bottom-bar-outer {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.06);
}

.bottom-bar-btn {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== PortfolioServices ===== */
/* Full-width wrapper so phone row spans viewport edge-to-edge */
.phone-mockup-row-fullwidth {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .phone-mockup-row-fullwidth {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .phone-mockup-row-fullwidth {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 4rem;
  }
}

/* App name and store badges above phone mockups */
.phone-mockup-app-header {
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.phone-mockup-app-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #171717;
  margin: 0 0 1rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .phone-mockup-app-name {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .phone-mockup-app-name {
    font-size: 4rem;
  }
}

/* In the wide centered carousel, show dots only on the center phone */
.phone-mockup-centered-track .phone-mockup-centered-item .phone-mockup-carousel-dots {
  display: none;
}
.phone-mockup-centered-track .phone-mockup-centered-item.is-center .phone-mockup-carousel-dots {
  display: flex;
}

.phone-mockup-store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.phone-mockup-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #171717;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.phone-mockup-store-btn:hover {
  background: #262626;
  color: #fff;
  transform: translateY(-2px);
}

.phone-mockup-store-btn-download {
  background: #f5f5f5;
  color: #171717;
  border: 2px solid #e5e5e5;
}

.phone-mockup-store-btn-download:hover {
  background: #e5e5e5;
  color: #171717;
  border-color: #d4d4d4;
}

.phone-mockup-store-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Horizontal row of multiple phone mockups (each with same carousel) */
/* Wide view: centered carousel – center phone big, sides smaller, with prev/next */
.phone-mockup-centered {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0.5rem 3rem;
  margin-bottom: 1rem;
  overflow: visible;
}

.phone-mockup-centered-inner {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.phone-mockup-centered-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: transform 0.4s ease-out;
  --phone-slot-width: 260px;
  --phone-gap: 1rem;
}

.phone-mockup-centered-track .phone-mockup-centered-item {
  flex: 0 0 var(--phone-slot-width);
  width: var(--phone-slot-width);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.35s ease-out;
  transform: scale(0.82);
}

.phone-mockup-centered-track .phone-mockup-centered-item.is-center {
  transform: scale(1);
  z-index: 2;
}

.phone-mockup-centered-track .phone-mockup-centered-item .phone-mockup-wrap-inline .phone-mockup-frame {
  max-width: 260px;
}

.phone-mockup-nav-btn-wide {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  background: #fff;
  color: #262626;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  z-index: 10;
}

.phone-mockup-nav-btn-wide:hover {
  background: #f5f5f5;
  border-color: #d4d4d4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.phone-mockup-nav-btn-wide svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 1000px) {
  .phone-mockup-nav-btn-wide {
    display: flex;
  }

  .phone-mockup-single-view .phone-mockup-nav-btn {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .phone-mockup-centered {
    display: none !important;
  }

  .phone-mockup-nav-btn-wide {
    display: none !important;
  }
}

.phone-mockup-row {
  display: none;
  /* replaced by phone-mockup-centered on wide */
}

.phone-mockup-row::-webkit-scrollbar {
  display: none;
}

/* Narrow view: one phone at a time with prev/next (used when width < 1000px) */
.phone-mockup-single-view {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0.5rem 3rem;
  margin-bottom: 1rem;
  overflow: visible;
}

.phone-mockup-single-view-inner {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 360px;
  overflow: hidden;
}

.phone-mockup-single-view .phone-mockup-single-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.35s ease-out;
}

.phone-mockup-single-view .phone-mockup-single-track>* {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.phone-mockup-single-view .phone-mockup-wrap-inline {
  min-width: 0;
}

.phone-mockup-single-view .phone-mockup-wrap-inline .phone-mockup-frame {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

.phone-mockup-nav-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  background: #fff;
  color: #262626;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  z-index: 10;
}

.phone-mockup-nav-btn:hover {
  background: #f5f5f5;
  border-color: #d4d4d4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.phone-mockup-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.phone-mockup-nav-btn.prev {
  order: -1;
}

.phone-mockup-nav-btn.next {
  order: 1;
}

.phone-mockup-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Narrow viewport: keep mockup section fully visible, no horizontal cut-off */
@media (max-width: 570px) {
  .phone-mockup-row-fullwidth {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .phone-mockup-single-view {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    gap: 0.5rem;
    min-width: 0;
  }

  .phone-mockup-single-view-inner {
    max-width: min(360px, calc(100vw - 1.5rem - 44px - 44px - 1rem));
    min-width: 0;
  }

  .phone-mockup-single-view .phone-mockup-wrap-inline .phone-mockup-frame {
    max-width: min(320px, calc(100vw - 1.5rem - 44px - 44px - 1rem - 0.5rem));
  }

  .phone-mockup-nav-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .phone-mockup-nav-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (min-width: 1000px) {
  .phone-mockup-single-view {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .phone-mockup-row {
    display: none !important;
  }
}

.phone-mockup-wrap-inline {
  flex: 0 0 auto;
  min-width: 200px;
  padding-bottom: 0;
  margin-bottom: 0;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
}

.phone-mockup-wrap-inline .phone-mockup-frame {
  max-width: 220px;
  width: 100%;
}

@media (min-width: 640px) {
  .phone-mockup-wrap-inline .phone-mockup-frame {
    max-width: 240px;
  }
}

@media (min-width: 1024px) {
  .phone-mockup-wrap-inline .phone-mockup-frame {
    max-width: 260px;
  }
}

/* Phone mockup above services (single) */
.phone-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3rem;
  margin-bottom: 1rem;
}

/* Prevent drag on click – stop image following cursor */
.phone-mockup-frame,
.phone-mockup-frame img {
  -webkit-user-drag: none;
  user-drag: none;
}

.phone-mockup-frame {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.phone-mockup-frame img.phone-mockup-device {
  width: 100%;
  height: auto;
  display: block;
}

.phone-mockup-screen {
  position: absolute;
  /* Tighter insets so content fills screen edge-to-edge like reference mockups */
  left: 3.7%;
  right: 3.7%;
  top: 1.7%;
  bottom: 1.7%;
  /* Scale radius with viewport: 25px on narrow, up to 40px on wide */
  border-radius: clamp(25px, 6vw, 40px);
  overflow: hidden;
  background: #000;
  /* So inner content corners align with screen cutout */
  isolation: isolate;
}

@media (min-width: 400px) and (max-width: 600px) {
  .phone-mockup-screen {
    /* Larger radius in 400–600px width range */
    border-radius: clamp(32px, 7.5vw, 40px);
  }
}

/* Swipeable carousel inside phone screen – horizontal (left/right) */
.phone-mockup-carousel {
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
}

.phone-mockup-carousel:active {
  cursor: grabbing;
}

.phone-mockup-carousel-track {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 400%;
  display: flex;
  flex-direction: row;
  will-change: transform;
}

/* Swipe left → content slides left (next slide enters from right) */
.phone-mockup-carousel-track[data-direction="left"] {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Swipe right → content slides right (previous slide enters from left) */
.phone-mockup-carousel-track[data-direction="right"] {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.phone-mockup-carousel-slide {
  flex: 0 0 25%;
  width: 25%;
  height: 100%;
  position: relative;
  min-width: 0;

}

.phone-mockup-carousel-slide img {
  object-fit: cover;
  object-position: top;
}

.phone-mockup-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}

.phone-mockup-carousel-dots .phone-mockup-dot {
  pointer-events: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.phone-mockup-carousel-dots .phone-mockup-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.phone-mockup-carousel-dots .phone-mockup-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* First-time hint inside phone screen: full-screen "Swipe to see more" */
.phone-mockup-swipe-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(2, 2, 2, 0.8);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.phone-mockup-swipe-hint-arrows {
  font-size: 1.5rem;
  opacity: 0.95;
  letter-spacing: 0.25em;
}

.phone-mockup-swipe-hint-text {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Next Image fill wrapper + img: cover full screen area (edge-to-edge) */
/* Exclude carousel track, dots, and swipe hint so they keep their own layout */
.phone-mockup-screen>*:not(.phone-mockup-carousel-track):not(.phone-mockup-carousel-dots):not(.phone-mockup-swipe-hint) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}

.phone-mockup-screen img {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card-inner {
  background: #fafafa;
}

.service-card-folder {
  width: 100%;
  max-width: 100%;
  height: 280px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  cursor: pointer;
  overflow: visible;
}

.service-card-folders-inner {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding-top: 1rem;
}

.folder-container-inner {
  position: relative;
  width: 192px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

.folder-front-inner {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 100%;
  height: 135px;
  z-index: 15;
  border-radius: 14px;
  overflow: hidden;
}

.doc-files-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  overflow: visible;
  z-index: 5;
}


.folder-container-3d {
  perspective: 1000px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

.folder-glass-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
  filter: blur(6px);
  transform: rotate(12deg);
}

.folder-glass-highlight-secondary {
  background-color: rgba(255, 255, 255, 0.6);
  filter: blur(4px);
  transform: rotate(-8deg);
}

/* ===== PortfolioProjects ===== */
.laptop-mockup-perspective {
  transform: perspective(800px) rotateX(8deg) rotateY(5deg);
}

.projects-pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.light-card-pattern {
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 20px,
      rgba(0, 0, 0, 0.03) 20px,
      rgba(0, 0, 0, 0.03) 21px);
}

/* ===== PortfolioHero ===== */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;


}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background-color: #171717;
  color: white;
  margin-bottom: 2rem;
}

.hero-pill-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 0.25rem;
}

.hero-pill-star {
  width: 1rem;
  height: 1rem;
}

.hero-intro {
  font-size: 1.25rem;
  color: #737373;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-family: system-ui, sans-serif;
}

@media (min-width: 768px) {
  .hero-intro {
    font-size: 1.5rem;
  }
}

.hero-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e5e5e5;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hero-avatar {
    width: 4rem;
    height: 4rem;
  }
}

.hero-avatar-img,
.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 400;
  color: #171717;
  letter-spacing: -0.025em;
  font-family: "DM Serif Display", Georgia, serif;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;

  }
}

.hero-tagline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .hero-tagline-row {
    gap: 0.75rem;
  }
}

.hero-tagline-row:last-of-type {
  margin-bottom: 2rem;
}

.hero-tagline-text {
  font-size: 1.875rem;
  font-weight: 400;
  color: #171717;
  font-family: "DM Serif Display", Georgia, serif;
}

@media (min-width: 640px) {
  .hero-tagline-text {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero-tagline-text {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-tagline-text {
    font-size: 3.75rem;
  }
}

.hero-tagline-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.hero-tagline-dot-dark {
  background-color: #262626;
}

.hero-tagline-dot-mid {
  background-color: #404040;
}

@media (min-width: 768px) {
  .hero-tagline-dot {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.hero-description {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #525252;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: #171717;
  color: white;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transform-origin: 50% 50%;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  isolation: isolate;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-btn-primary .hero-btn-text {
  display: block;
  overflow: hidden;
  line-height: 1.35;
  height: 1.35em;
  text-align: center;
}

.hero-btn-primary .hero-btn-text-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease-in-out;
}

.hero-btn-primary .hero-btn-text-inner span {
  flex-shrink: 0;
  display: block;
  padding: 0.05em 0 0;
  width: 100%;
  text-align: center;
}

.hero-btn-primary:hover .hero-btn-text-inner {
  transform: translateY(-50%);
}

.hero-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 0%,
      transparent 40%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 60%,
      transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #262626 0%, #404040 100%);
  transform: translate3d(0, -3px, 0) scale(1.05);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.35), 0 4px 12px -4px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover::after {
  transform: translateX(100%);
}

/* Hero primary (black) style when used on other CTA buttons */
.bottom-bar-cta.hero-btn-primary,
.bottom-bar-btn.hero-btn-primary,
.blog-cta-btn.hero-btn-primary,
.comparison-cta.hero-btn-primary {
  background-color: #171717;
  color: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.bottom-bar-cta.hero-btn-primary:hover,
.bottom-bar-btn.hero-btn-primary:hover,
.blog-cta-btn.hero-btn-primary:hover,
.comparison-cta.hero-btn-primary:hover {
  background: linear-gradient(135deg, #262626 0%, #404040 100%);
  transform: translate3d(0, -3px, 0) scale(1.05);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.35), 0 4px 12px -4px rgba(0, 0, 0, 0.2);
  filter: none;
}

/* Comparison CTA: make "Get Started for Free" white */
.comparison-cta.hero-btn-primary {
  background: white;
  color: #171717;
  border: 1px solid #171717;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-cta.hero-btn-primary:hover {
  background: #ffffff;
  border-color: #262626;
  transform: translate3d(0, -3px, 0) scale(1.05);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
}

.comparison-cta.hero-btn-primary .hero-btn-text,
.comparison-cta.hero-btn-primary .hero-btn-text-inner,
.comparison-cta.hero-btn-primary .hero-btn-text-inner span {
  text-align: center;
  width: 100%;
}

.hero-btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: white;
  border: 1px solid #171717;
  color: #171717;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transform-origin: 50% 50%;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  isolation: isolate;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-btn-secondary .hero-btn-text {
  display: block;
  overflow: hidden;
  line-height: 1.35;
  height: 1.35em;
  text-align: center;
}

.hero-btn-secondary .hero-btn-text-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease-in-out;
}

.hero-btn-secondary .hero-btn-text-inner span {
  flex-shrink: 0;
  display: block;
  padding: 0.05em 0 0;
  width: 100%;
  text-align: center;
}

.hero-btn-secondary:hover .hero-btn-text-inner {
  transform: translateY(-50%);
}

.hero-btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.04) 50%,
      transparent 60%,
      transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
}

.hero-btn-secondary:hover {
  background-color: #f5f5f5;
  border-color: #262626;
  transform: translate3d(0, -3px, 0) scale(1.05);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
}

.hero-btn-secondary:hover::after {
  transform: translateX(100%);
}

/* Hero-style overrides when used on other CTA buttons (View all projects, Get Started, View all blogs) */
.bottom-bar-cta.hero-btn-secondary,
.bottom-bar-btn.hero-btn-secondary,
.blog-cta-btn.hero-btn-secondary,
.comparison-cta.hero-btn-secondary {
  background: white;
  color: #171717;
  border: 1px solid #171717;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bottom-bar-cta.hero-btn-secondary:hover,
.bottom-bar-btn.hero-btn-secondary:hover,
.blog-cta-btn.hero-btn-secondary:hover,
.comparison-cta.hero-btn-secondary:hover {
  background-color: #f5f5f5;
  border-color: #262626;
  transform: translate3d(0, -3px, 0) scale(1.05);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
  filter: none;
}

/* ===== PortfolioToolkit ===== */
.toolkit-progress-bar {
  width: var(--toolkit-percent, 0%);
}

.toolkit-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  transition: width 0.7s;
}

.toolkit-section {
  background: transparent;
}

/* Font utilities */
.font-system {
  font-family: system-ui, sans-serif;
}

.font-serif-display {
  font-family: "DM Serif Display", Georgia, serif;
}

/* ===== Landing ===== */
.landing-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: transparent;
  padding-bottom: 6rem;
  overflow: hidden;
}

.landing-wrap::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.landing-wrap::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
  z-index: 0;
}

.landing-wrap>* {
  position: relative;
  z-index: 1;
}

/* ===== Navbar ===== */
.navbar-header {
  position: relative;
  z-index: 10;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar-header-scrolled {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .navbar-inner {
    height: 5rem;
  }
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.navbar-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #e5e5e5;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .navbar-avatar {
    width: 3rem;
    height: 3rem;
  }
}

.navbar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #171717;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .navbar-name {
    font-size: 1rem;
  }
}

.navbar-role {
  font-size: 0.75rem;
  color: #737373;
}

@media (min-width: 768px) {
  .navbar-role {
    font-size: 0.875rem;
  }
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .navbar-right {
    gap: 1.5rem;
  }
}

.navbar-available {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #737373;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .navbar-available {
    display: flex;
  }
}

.navbar-available-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #22c55e;
}

.navbar-social-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: white;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #404040;
  transition: background 0.2s;
}

.navbar-social-icon:hover {
  background: #fafafa;
}

.navbar-social-icon svg {
  width: 1rem;
  height: 1rem;
}

.navbar-menu-btn {
  display: block;
  padding: 0.5rem;
  color: #404040;
}

@media (min-width: 768px) {
  .navbar-menu-btn {
    display: none;
  }
}

.navbar-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.navbar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9998;
}

@media (min-width: 768px) {
  .navbar-overlay {
    display: none;
  }
}

.navbar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 18rem;
  background: white;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .navbar-drawer {
    display: none;
  }
}

.navbar-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 0;
}

.navbar-drawer-nav a {
  display: block;
  padding: 0.5rem 0;
  color: #404040;
  font-weight: 500;
}

.navbar-drawer-close {
  display: flex;
  justify-content: flex-end;
}

.navbar-drawer-close button {
  padding: 0.5rem;
}

.navbar-drawer-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.navbar-drawer-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  background: #171717;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .navbar-drawer {
    width: 100%;
    max-width: 24rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }
}

/* ===== Bottom Bar ===== */
.bottom-bar-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  display: flex;
  justify-content: center;
  padding: 1rem 1rem 1.5rem;
  pointer-events: none;
}

.bottom-bar-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.425rem;
  max-width: 42rem;
  width: 100%;
  min-width: 0;
  border-radius: 60px;
  background: white;
}

.bottom-bar-icons {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding: 1rem 1.75rem;
  min-width: 0;
  border-radius: 50px;
  background: #ebeced;
}

.bottom-bar-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  transition: transform 0.2s ease-out;
}

.bottom-bar-icon-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 30px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #171717;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.bottom-bar-icon-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.bottom-bar-cta[data-tooltip] {
  position: relative;
}

.bottom-bar-cta[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #171717;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.bottom-bar-cta[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.bottom-bar-icon-btn:hover {
  transform: scale(1.1);
}

.bottom-bar-icon-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.bottom-bar-cta {
  flex-shrink: 0;
  padding: 1.1rem 2rem;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* Mobile: circle Get Started to free space so all icons fit */
.bottom-bar-cta-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.bottom-bar-cta-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .bottom-bar-wrap .bottom-bar-inner {
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.425rem 0.5rem;
  }

  .bottom-bar-wrap .bottom-bar-icons {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0;
    padding: 0.4rem 0.25rem;
    min-width: 0;
    border-radius: 50px;
    background: #ebeced;
  }

  .bottom-bar-wrap .bottom-bar-icon-btn {
    min-width: 36px;
    min-height: 36px;
    flex-shrink: 0;
  }

  .bottom-bar-wrap .bottom-bar-icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .bottom-bar-wrap .bottom-bar-cta {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .bottom-bar-wrap .bottom-bar-cta .hero-btn-text {
    display: none !important;
  }

  .bottom-bar-wrap .bottom-bar-cta-icon {
    display: flex;
  }

  .bottom-bar-wrap .bottom-bar-cta-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Services ===== */
.section-services {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: transparent;
}

@media (min-width: 768px) {
  .section-services {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header .heading-section {
  margin-bottom: 1rem;
}

.section-desc {
  color: #525252;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

.section-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1rem;
  column-gap: 1rem;
  justify-items: stretch;
  width: 100%;
}

@media (min-width: 640px) {
  .section-grid-1 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
    column-gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .section-grid-1 {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1rem;
    column-gap: 1rem;
  }
}

.section-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .section-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #171717;
  text-align: center;
  padding: 0.25rem 0 0.75rem;
}

.doc-card-box {
  border: 1px solid rgba(229, 229, 229, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.doc-card-inner-img {
  aspect-ratio: 13/9;
  width: 100%;
  position: relative;
}

.doc-card-inner-img img {
  object-fit: cover;
  object-position: top;
}

/* ===== Projects ===== */
.section-projects {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: transparent;
}

@media (min-width: 768px) {
  .section-projects {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Project Showcase Grid - 2 cards side-by-side */
.project-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

/* One card per row when width < 1000px; 2 columns at 1000px+ */
@media (min-width: 1000px) {
  .project-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-showcase-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 28px;
  background: #e5e5e5;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  transition: transform 0.35s ease;
}

.project-showcase-card:hover {
  outline: none;
  transform: scale(1.02);
}

.project-showcase-img-wrap {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
}

.project-showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-showcase-card:hover .project-showcase-img-wrap img {
  transform: scale(1.06);
}

/* Bottom overlay - pill-shaped, slides up on hover */
.project-showcase-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #ffffff;
  border-radius: 40px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform: translateY(100%);
  opacity: 0;
}

.project-showcase-card:hover .project-showcase-overlay {
  transform: translateY(0);
  opacity: 1;
}

.project-showcase-overlay-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.project-showcase-overlay-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.project-showcase-overlay-logo {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  overflow: hidden;
  background: #e5e5e5;
  flex-shrink: 0;
}

.project-showcase-overlay-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-showcase-overlay-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.project-showcase-overlay-client {
  font-size: 0.65rem;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-showcase-overlay-title {
  font-size: 1rem;
  font-weight: 700;
  color: #171717;
}

.project-showcase-overlay-desc {
  font-size: 0.75rem;
  color: #525252;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-showcase-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 15px 18px;
  background: #e5e5e5;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #171717;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.project-showcase-card:hover .project-showcase-overlay-btn {
  background: #262626;
  color: #fff;
}

.project-showcase-load-wrap {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
}

.project-showcase-view-all {
  display: inline-block;
  text-decoration: none;
}

.project-showcase-view-all:hover {
  color: white;
  opacity: 0.95;
}

.project-showcase-loading {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  background: #e5e5e5;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.projects-dark-wavy {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.projects-dark-wavy svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 66.67%;
  opacity: 0.4;
}

.projects-laptop-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.projects-laptop-screen {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(64, 64, 64, 0.8);
  background: #171717;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.projects-laptop-inner {
  position: absolute;
  inset: 0;
  padding: 0.5rem;
}

.projects-laptop-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #262626;
}

.projects-laptop-img img {
  object-fit: cover;
}

.projects-laptop-base {
  height: 0.5rem;
  width: 95%;
  margin: -0.25rem auto 0;
  border-radius: 0 0 0.25rem 0.25rem;
  background: #262626;
  border: 1px solid rgba(64, 64, 64, 0.6);
  border-top: none;
}

.projects-laptop-foot {
  height: 0.25rem;
  width: 60%;
  margin: -0.125rem auto 0;
  border-radius: 0 0 0.25rem 0.25rem;
  background: rgba(64, 64, 64, 0.8);
}

.projects-devices-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  min-height: 160px;
  padding-top: 1rem;
}

.projects-device-monitor {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  border: 2px solid #d4d4d4;
  background: #f5f5f5;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.projects-device-tablet {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  border: 2px solid #d4d4d4;
  background: #f5f5f5;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.projects-device-phone {
  position: relative;
  width: 2.5rem;
  height: 4.5rem;
  border-radius: 0.5rem;
  border: 2px solid #d4d4d4;
  background: #f5f5f5;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: -0.5rem;
}

.projects-device-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.projects-device-img img {
  object-fit: cover;
}

.projects-device-tablet .projects-device-img img,
.projects-device-phone .projects-device-img img {
  object-position: top;
}

.projects-card-dark {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: #171717;
  min-height: 320px;
  position: relative;
  transition: all 0.3s;
}

.projects-card-dark:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.projects-card-light {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(245, 245, 245, 0.8);
  border: 1px solid rgba(229, 229, 229, 0.8);
  min-height: 320px;
  position: relative;
  transition: all 0.3s;
}

.projects-card-light:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(212, 212, 212, 0.6);
}

.projects-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: translateY(1rem);
}

.projects-card-dark:hover .projects-overlay,
.projects-card-light:hover .projects-overlay {
  opacity: 1;
  transform: translateY(0);
}

.projects-overlay-dark {
  background: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(229, 229, 229, 0.8);
}

.projects-overlay-light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(229, 229, 229, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.projects-overlay-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.projects-overlay-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  overflow: hidden;
  background: #e5e5e5;
  flex-shrink: 0;
}

.projects-overlay-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-overlay-desc {
  flex: 1;
  min-width: 0;
  color: #262626;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.projects-overlay-btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(229, 229, 229, 0.8);
  border: 1px solid #d4d4d4;
  font-size: 0.875rem;
  font-weight: 500;
  color: #262626;
  transition: background, color, border 0.2s;
}

.projects-card-dark:hover .projects-overlay-btn,
.projects-card-light:hover .projects-overlay-btn {
  background: #262626;
  color: white;
  border-color: #262626;
}

.projects-content {
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects-laptop-pt {
  padding-top: 1rem;
}

.projects-loading {
  height: 20rem;
  border-radius: 1rem;
  background: #e5e5e5;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

/* ===== Why Us ===== */
.section-why-us {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: transparent;
}

@media (min-width: 768px) {
  .section-why-us {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.8rem;
  column-gap: 0.8rem;
  perspective: 1200px;
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-us-card {
  padding: 1rem;
  border-radius: 1rem;
  background: #f0f0f0;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0) scale(1);
}

.why-us-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 45%, rgba(0, 0, 0, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.why-us-card:hover {
  transform: perspective(1200px) rotateX(-4deg) rotateY(2deg) translateY(-10px) scale(1.03);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16), 0 12px 28px rgba(0, 0, 0, 0.1);
}

.why-us-card:hover::before {
  opacity: 1;
}

.why-us-card-center:hover {
  transform: perspective(1200px) rotateX(-4deg) rotateY(2deg) translateY(-10px) scale(1.03);
}

.why-us-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.625rem;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-us-card:hover .why-us-icon-box {
  transform: scale(1.08);
}

.why-us-icon-box svg,
.why-us-icon-svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.why-us-icon-box .why-us-icon-img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.why-us-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #171717;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease, transform 0.3s ease;
}

.why-us-card:hover .why-us-card-title {
  color: #0a0a0a;
  transform: translateY(-2px);
}

.why-us-card-desc {
  color: #525252;
  font-size: 0.875rem;
  line-height: 1.625;
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {

  .why-us-card,
  .why-us-card:hover,
  .why-us-card-center,
  .why-us-card-center:hover {
    transition: none;
    transform: none;
  }
}

/* ===== Templates ===== */
.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .templates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.template-card {
  border-radius: 1rem;
  background: #fafafa;
  border: 1px solid #f5f5f5;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.2s;
}

.template-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.template-card-img {
  position: relative;
  aspect-ratio: 400/260;
  background: #f5f5f5;
}

.template-card-img img {
  object-fit: cover;
}

.template-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: #22c55e;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.template-card-body {
  padding: 1.5rem;
}

.template-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.template-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
}

.template-card-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
}

.template-card-desc {
  color: #525252;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.template-card-actions {
  display: flex;
  gap: 0.75rem;
}

.template-btn-outline {
  flex: 1;
  padding: 0.625rem;
  border-radius: 0.5rem;
  border: 1px solid #171717;
  color: #171717;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: background, color 0.2s;
}

.template-btn-outline:hover {
  background: #171717;
  color: white;
}

.template-btn-solid {
  flex: 1;
  padding: 0.625rem;
  border-radius: 0.5rem;
  background: #171717;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s;
}

.template-btn-solid:hover {
  background: #262626;
}

.template-bundle {
  margin-top: 4rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid #f5f5f5;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .template-bundle {
    flex-direction: row;
    padding: 2.5rem;
  }
}

.template-bundle-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 24rem;
}

.template-bundle-placeholder {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  background: #f5f5f5;
}

.template-bundle-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.5rem;
}

.template-bundle-content p {
  color: #525252;
  margin-bottom: 1rem;
}

.template-bundle-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 1rem;
}

.template-bundle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: #171717;
  color: white;
  font-weight: 600;
  transition: background 0.2s;
}

.template-bundle-btn:hover {
  background: #262626;
}

.template-bundle-btn svg {
  width: 1rem;
  height: 1rem;
}

.template-features {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .template-features {
    gap: 3rem;
  }
}

.template-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #525252;
}

.template-feature svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #737373;
}

.template-feature span {
  font-weight: 500;
}

/* ===== Testimonials ===== */
.testimonials-section {
  background: transparent;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  perspective: 1000px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.testimonial-card {
  padding: 2rem 1.5rem;
  border-radius: 22px;
  background: #fafafa;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px;
}

.testimonial-card:hover {
  transform: rotateX(5deg) rotateY(-5deg) scale(1.04);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card-center:hover {
  transform: rotate(-3deg) rotateX(5deg) rotateY(-5deg) scale(1.04);
}

.testimonial-avatar {
  width: 68px;
  height: 68px;
  border-radius: 9999px;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.0625rem;
  color: #171717;
  margin: 0 0 0.25rem;
}

.testimonial-username {
  font-size: 0.8125rem;
  color: #737373;
  margin: 0 0 1rem;
}

.testimonial-quote {
  color: #525252;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 auto 1rem;
  max-width: 18rem;
}

.testimonial-quote-icon {
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  font-family: Georgia, serif;
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 1.25rem 1rem;
    margin: 6px;
  }

  .testimonials-grid {
    gap: 0.75rem;
  }

  .testimonials-section .section-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.testimonials-trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonials-avatars {
  display: flex;
  margin-right: 0.5rem;
}

.testimonials-avatars .testimonials-avatar {
  margin-left: -0.5rem;
}

.testimonials-avatars .testimonials-avatar:first-child {
  margin-left: 0;
}

.testimonials-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #d4d4d4;
  border: 2px solid white;
}

.testimonials-trust-text {
  color: #525252;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {

  .testimonial-card,
  .testimonial-card:hover,
  .testimonial-card-center,
  .testimonial-card-center:hover {
    transition: none;
    transform: none;
  }
}

/* ===== Process ===== */
.process-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .process-mobile {
    display: none;
  }
}

.process-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .process-desktop {
    display: block;
    position: relative;
  }
}

/* Center timeline: white, 2px */
.process-timeline {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
}

.process-step-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 5rem;
  min-height: 1px;
}

.process-step-wrap:last-child {
  margin-bottom: 0;
}

/* Dots: black, 10px–12px */
.process-step-dot {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  background: #171717;
  transform: translateX(-50%);
  top: 50%;
  margin-top: -5.5px;
  flex-shrink: 0;
  z-index: 10;
}

/* Step cards: white bg, larger radius, padding 28–32px, soft shadow */
.process-step-card {
  padding: 32px 36px;
  border-radius: 28px;
  background: #fafafa;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 600px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 767px) {
  .process-step-card {
    padding: 1.25rem 1rem;
  }

  .process-step-card-inner {
    gap: 0.75rem;
  }

  .process-space {
    gap: 0.75rem;
  }
}

.process-step-card-left {
  transform: translateX(-24px);
}

/* When scroll animation is used, initial state is from keyframes; when not, use -visible for static show */
.process-step-card-visible {
  opacity: 1;
  transform: translateX(0);
}

.process-step-card-left.process-step-card-visible {
  transform: translateX(0);
}

/* Scroll-animated process cards: start hidden (animation drives transform when .in-view) */
.animate-on-scroll-section .process-step-card.animate-drop-in {
  transform: translateX(-56px);
}

.animate-on-scroll-section .process-step-card-right.animate-drop-in {
  transform: translateX(56px);
}

.process-step-card-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.process-step-icon {
  flex-shrink: 0;
  color: #525252;
  margin-top: 0.25rem;
}

@media (max-width: 700px) {
  .process-step-icon {
    display: none;
  }
}

.process-step-icon-lottie {
  width: 150px;
  height: 150px;
  /* Light grey tint to match step icons (hand, handshake style) */
  filter: grayscale(1) brightness(1.35) contrast(0.82);
}

.process-step-icon-lottie svg,
.process-step-icon-lottie canvas {
  width: 150px !important;
  height: 150px !important;
  display: block;
}

.process-step-icon-img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.process-step-icon-svg {
  width: 150px;
  height: 150px;
  display: block;
}

/* Step label: bold, larger font */
.process-step-label {
  font-size: 1rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.5rem;
}

/* Title: medium weight */
.process-step-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #171717;
  margin-bottom: 0.75rem;
}

/* Description: smaller gray text */
.process-step-desc {
  color: #737373;
  font-size: 0.875rem;
  line-height: 1.625;
  margin: 0;
}

.process-max {
  max-width: 64rem;
  margin: 0 auto;
}

.process-space {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .process-space {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .process-space {
    align-items: center;
  }

  .process-space .process-step-card {
    margin-left: auto;
    margin-right: auto;
  }
}

.process-step-side {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.process-step-left {
  justify-content: flex-end;
  padding-right: 2rem;
}

.process-step-right {
  justify-content: flex-start;
  padding-left: 2rem;
}

/* ===== Comparison ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 62rem;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-card-light {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.comparison-card-dark {
  padding: 30px;
  border-radius: 24px;
  background: #000;
  color: #f3f4f6;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
}

.comparison-card-dark .comparison-card-title {
  color: #fff;
}

.comparison-card-dark .comparison-list {
  flex: 1;
}

.comparison-card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}

.comparison-card-light .comparison-card-title {
  color: #171717;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 0;
  margin: 10px;
  list-style: none;
}

.comparison-list-light {
  color: #404040;
}

.comparison-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  padding: 0.75rem 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.comparison-row:hover {
  transform: translateY(-2px);
}

.comparison-row-light {
  background: #f3f3f3;
}

.comparison-row-light:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.comparison-row-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.comparison-row-dark:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.comparison-row-text {
  font-size: 0.95rem;
  line-height: 1.3;
}

.comparison-card-dark .comparison-row-text {
  color: #f3f4f6;
}

.comparison-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.95rem 1.5rem;
  height: 48px;
  border-radius: 9999px;
  background: #fff;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.comparison-card-dark .comparison-cta {
  margin-top: auto;
  padding-top: 1.25rem;
}

@media (max-width: 767px) {
  .comparison-card-light,
  .comparison-card-dark {
    padding: 1rem 0.75rem;
  }
  .comparison-list {
    margin: 0;
    gap: 0.5rem;
  }
  .comparison-row {
    padding: 0.5rem 0.65rem;
    gap: 0.5rem;
  }
  .comparison-card-dark .comparison-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .comparison-card-dark {
    padding-bottom: 1.5rem;
  }

  #comparison.section-gray {
    padding-top: 3rem;
  }

  .comparison-grid {
    gap: 1rem;
  }
}

.comparison-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* ===== Toolkit ===== */
.toolkit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .toolkit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.toolkit-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #262626;
  border: 1px solid #404040;
}

.toolkit-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.toolkit-card-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.toolkit-card-percent {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.toolkit-card-desc {
  color: #a3a3a3;
  font-size: 0.875rem;
}

.toolkit-progress-wrap {
  margin-top: 0.75rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #404040;
  overflow: hidden;
}

/* ===== Blog ===== */
.blog-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .blog-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1rem;
  row-gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);

  }
}

.blog-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
  overflow: hidden;
}

.blog-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.5rem;
}

@media (max-width: 767px) {
  .blog-card-body {
    padding: 1rem;
  }
}

.blog-card-date {
  display: block;
  font-size: 0.8125rem;
  color: #737373;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #171717;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.blog-card-read {
  font-size: 0.875rem;
  font-weight: 600;
  color: #171717;
}

.blog-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

.blog-cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #171717;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}

.blog-cta-btn:hover {
  background: #262626;
  transform: translateY(-2px);
}

.blog-list-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.blog-list-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-list-header .heading-section {
  margin-bottom: 0.5rem;
}

.blog-post-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: #f0f0f0;
}

@media (max-width: 767px) {
  .blog-post-page {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
  .blog-post-page .section-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .blog-post-card {
    padding: 0.875rem;
    border-radius: 20px;
  }
  .blog-post-content-card {
    margin-top: 1rem;
    padding: 0.5rem 0.5rem;
    border-radius: 16px;
  }
  .blog-post-content-title {
    margin-bottom: 0.75rem;
  }
  .blog-post-body p {
    margin-bottom: 0.75rem;
  }
  .blog-post-header {
    margin-bottom: 0.75rem;
  }
  .blog-post-preview-wrap {
    margin-top: 0.5rem;
  }
}

.blog-post-card {
  background: #f5f5f5;
  border-radius: 32px;
  padding: 15px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 639px) {
  .blog-post-card {
    padding: 0.875rem;
    border-radius: 20px;
  }
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #374151;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.blog-post-back:hover {
  color: #171717;
  opacity: 0.9;
}

.blog-post-back-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #171717;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-post-back:hover .blog-post-back-circle {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.blog-post-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 16px;
}

.blog-post-header-meta {
  min-width: 0;
}

.blog-post-date {
  display: block;
  font-size: 0.875rem;
  color: #737373;
  margin-bottom: 0.5rem;
}

.blog-post-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #171717;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .blog-post-title {
    font-size: 2rem;
  }
}

.blog-post-subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: #525252;
  line-height: 1.45;
  max-width: 56rem;
}

.blog-post-cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, #2d2d2d 0%, #171717 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.blog-post-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.blog-post-preview-wrap {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;

}


.blog-post-preview-inner {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;

  transition: box-shadow 0.3s ease;
}



.blog-post-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-preview-wrap:hover .blog-post-hero-img {
  transform: scale(1.03);
}

.blog-post-content-card {
  margin-top: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .blog-post-content-card {
    border-radius: 24px;
    padding: 32px;
  }
}

.blog-post-content-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #171717;
  margin: 0 0 1rem;
}

.blog-post-body {
  color: #404040;
  line-height: 1.7;
  margin: 0;
}

.blog-post-body p {
  margin: 0 0 1rem;
}

.blog-post-placeholder {
  color: #525252;
  line-height: 1.65;
}

/* ===== FAQ ===== */
#faq.section-white {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 48rem;
  margin: 15px auto;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.faq-item {
  border-radius: 40px;

  background: #fafafa;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.3s ease;
}

.faq-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.faq-item-open {
  padding-bottom: 4px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {

  .faq-item,
  .faq-item:hover {
    transition: none;
    transform: none;
  }
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-trigger {
  padding: 10px 10px 10px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: #fafafa;
  border: none;
  cursor: pointer;
}

.faq-question {
  font-weight: 700;
  color: #171717;
  font-size: 1rem;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.faq-toggle {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: #d4d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #525252;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-trigger:hover .faq-toggle {
  background: #c1c1c1;
  color: #171717;
}

.faq-toggle svg {
  display: block;
}

.faq-answer-wrap {
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-answer-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
}

.faq-content {
  margin: 0 20px 15px 20px;
  color: #525252;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-footer {
  text-align: center;
  margin-top: 2rem;
  color: #737373;
}

.faq-footer a {
  color: var(--color-primary);
  font-weight: 500;
}

.faq-footer a:hover {
  text-decoration: underline;
}

/* ===== Book a Call ===== */
.bookacall-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .bookacall-section {
    padding: 5rem 0;
  }
}

.bookacall-container {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .bookacall-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.bookacall-card {
  background: #f3f3f3;
  border-radius: 26px;
  padding: 5rem 2rem 5rem;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 2px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bookacall-card {
    padding: 6rem 3rem 6rem;
  }
}

@media (min-width: 1024px) {
  .bookacall-card {
    padding: 7rem 4rem 7rem;
  }
}

.bookacall-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.bookacall-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: #000;
  color: white;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.bookacall-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #171717;
  text-align: center;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .bookacall-heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .bookacall-heading {
    font-size: 48px;
  }
}

.bookacall-subtitle {
  text-align: center;
  color: #525252;
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.bookacall-form {
  max-width: 28rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.bookacall-input,
.bookacall-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 40px;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


.bookacall-textarea-m {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bookacall-input::placeholder,
.bookacall-textarea::placeholder {
  color: #a3a3a3;
}

.bookacall-input:focus,
.bookacall-textarea:focus {
  border-color: #404040;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.bookacall-textarea {
  resize: vertical;
  min-height: 100px;
}

.bookacall-btn {
  width: 100%;
  height: 52px;
  padding: 0 1.5rem;
  border-radius: 9999px;
  background: #000;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bookacall-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.bookacall-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bookacall-msg {
  margin: -0.5rem auto 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.bookacall-msg.success {
  color: #16a34a;
}

.bookacall-msg.error {
  color: #dc2626;
}

/* ===== Newsletter ===== */
.newsletter-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .newsletter-section {
    padding: 5rem 0;
  }
}

.newsletter-container {
  max-width: 64rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .newsletter-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.newsletter-card {
  background: #f3f3f3;
  border-radius: 24px;
  padding: 3.25rem 2rem;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 2px 12px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 767px) {
  .newsletter-card {
    padding: 1.5rem 1rem;
  }
  .newsletter-subtitle {
    margin-bottom: 1.25rem;
  }
  .newsletter-form {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .newsletter-input {
    padding: 0.625rem 1rem;
  }
  .newsletter-input.newsletter-textarea {
    min-height: 5rem;
  }
}

.newsletter-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: #262626;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.newsletter-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #171717;
  text-align: center;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .newsletter-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .newsletter-heading {
    font-size: 3rem;
  }
}

.newsletter-subtitle {
  text-align: center;
  color: #525252;
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.newsletter-textarea {
  resize: vertical;
  min-height: 6rem;
  border-radius: 15px;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  border: none;
  background: #fff;
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(255, 255, 255, 0.8);
  outline: none;
  font-size: 1rem;
  transition: box-shadow 0.2s ease;
}

.newsletter-input::placeholder {
  color: #a3a3a3;
}

.newsletter-input.newsletter-textarea {
  border-radius: 15px;
}

.newsletter-input:focus {
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.06),
    0 0 0 2px rgba(0, 0, 0, 0.08);
}

.newsletter-btn {
  margin-top: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  background: #000;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-msg {
  margin: -1rem auto 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.newsletter-msg.success {
  color: #16a34a;
}

.newsletter-msg.error {
  color: #dc2626;
}

.newsletter-logos-wrap {
  overflow: hidden;
  padding: 1.25rem 0 1.5rem;
  margin: 2.25rem -2rem 0;
  background: #ffffff;
  border-radius: 0 0 24px 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 -1px 0 rgba(0, 0, 0, 0.05);
  user-select: none;
}

.newsletter-logos-wrap:hover .newsletter-logos-track {
  animation-play-state: paused;
}

.newsletter-logos-track {
  display: flex;
  width: max-content;
  animation: newsletter-marquee 45s linear infinite;
}

@keyframes newsletter-marquee {
  from {
    transform: translateX(0);
  }

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

.newsletter-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  flex-shrink: 0;
}

.newsletter-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-logos-track {
    animation: none;
  }
}

/* ===== Footer ===== */
.footer {
  background: #171717;
  color: white;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.footer-copy {
  color: #a3a3a3;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.footer-made {
  color: #737373;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: white;
}

.footer-email {
  margin-top: 2rem;
  color: #737373;
  font-size: 0.875rem;
}

/* ===== About Page ===== */
.about-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: #fafafa;
}

.about-hero {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.about-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-hero-inner {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }
}

.about-avatar-wrap {
  flex-shrink: 0;
}

.about-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-avatar {
    width: 280px;
    height: 280px;
  }
}

.about-name {
  font-size: 2rem;
  font-weight: 700;
  color: #171717;
  margin: 0 0 0.25rem;
}

@media (min-width: 768px) {
  .about-name {
    font-size: 2.5rem;
  }
}

.about-role {
  font-size: 1.25rem;
  font-weight: 600;
  color: #404040;
  margin: 0 0 0.5rem;
}

.about-tagline {
  color: #737373;
  font-size: 1rem;
  margin: 0 0 1.5rem;
  max-width: 32rem;
}

.about-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #171717;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
}

.about-cta:hover {
  background: #262626;
  transform: translateY(-2px);
}

.about-cta-large {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  margin-top: 1.5rem;
}

.about-stats {
  padding-bottom: 3rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto;
}

.about-stat-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.about-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.875rem;
  color: #737373;
}

.about-me {
  padding-bottom: 3rem;
}

.about-me .heading-section {
  margin-bottom: 1.5rem;
}

.about-me-content {
  max-width: 48rem;
}

.about-me-p {
  color: #525252;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.about-me-p:last-child {
  margin-bottom: 0;
}

.about-skills {
  padding-bottom: 3rem;
}

.about-skills .heading-section {
  margin-bottom: 2rem;
}

.about-skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.about-skill-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Why Choose Us style: icon box + title + description */
.about-skill-card-why-style {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fafafa;
  border: 1px solid #f5f5f5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-skill-card-why-style:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.about-skill-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.625rem;
  background: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-skill-icon-box .about-skill-icon-svg,
.about-skill-icon-svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.about-skill-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #171717;
  margin-bottom: 0.5rem;
}

.about-skill-desc {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.625;
  margin: 0;
}

/* Legacy (kept for any other use) */
.about-skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.about-skill-name {
  font-size: 1rem;
  font-weight: 600;
  color: #171717;
  margin: 0;
}

.about-skill-percent {
  font-size: 0.875rem;
  font-weight: 600;
  color: #404040;
}

.about-skill-bar-wrap {
  height: 8px;
  background: #e5e5e5;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.about-skill-bar {
  height: 100%;
  background: #171717;
  border-radius: 9999px;
  transition: width 0.6s ease-out;
}

.about-specializations {
  padding-bottom: 3rem;
}

.about-specializations .heading-section {
  margin-bottom: 2rem;
}

.about-spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-spec-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-spec-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.about-spec-title {
  font-size: 1rem;
  font-weight: 600;
  color: #171717;
  margin: 0 0 0.5rem;
}

.about-spec-desc {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.5;
  margin: 0;
}

.about-contact-strip {
  padding-bottom: 3rem;
  text-align: center;
}

.about-contact-strip .heading-section {
  margin-bottom: 1.5rem;
}

.about-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
  .about-contact-grid {
    flex-direction: row;
  }
}

.about-contact-item {
  padding: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

a.about-contact-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.about-contact-value {
  font-size: 0.9375rem;
  color: #171717;
  font-weight: 500;
}

/* Static HTML: hide mobile menu by default, show when body has .navbar-mobile-open */
@media (max-width: 767px) {

  .navbar-overlay,
  .navbar-drawer {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0.2s, opacity 0.2s;
  }

  body.navbar-mobile-open .navbar-overlay,
  body.navbar-mobile-open .navbar-drawer {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

/* ---- rs-text-slide (marquee) - hero diagonal banners inside .hero-mockup-zone ---- */
.container-fluid {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.rs-text-slide-area {
  width: 100%;
}

.rs-text-slide-two .rs-text-slider-wrapper {
  position: relative;
}

/* CSS-only marquee (no GSAP) */
.rs-text-slide-two .rs-text-marquee-wrap {
  display: inline-flex;
  white-space: nowrap;
  min-width: max-content;
  animation: rs-marquee 40s linear infinite;
}

.rs-text-slide-two .rs-text-marquee-wrap .rs-text-slide-title {
  padding-right: 0.5rem;
}

.rs-text-slide-two .rs-text-marquee-wrap.rs-text-marquee-left {
  animation-name: rs-marquee-left;
}

.rs-text-slide-two .rs-text-marquee-wrap.rs-text-marquee-right {
  animation-name: rs-marquee-right;
}

@keyframes rs-marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-20%);
  }
}

@keyframes rs-marquee-right {
  0% {
    transform: translateX(-20%);
  }

  100% {
    transform: translateX(0);
  }
}


/*=============================== Hero Diagonal Banners ===============================*/


.rs-text-slide-two {
  overflow-x: clip;
  padding: 250px 0 100px;

}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .rs-text-slide-two {
    padding: 200px 0 100px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .rs-text-slide-two {
    padding: 180px 0 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rs-text-slide-two {
    padding: 160px 0 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-text-slide-two {
    padding: 130px 0 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-text-slide-two {
    padding: 150px 0 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .rs-text-slide-two {
    padding: 150px 0 20px;
  }
}

@media (max-width: 575px) {
  .rs-text-slide-two {
    padding: 160px 0 0px;
  }
}

.rs-text-slide-two .rs-text-slider-wrapper {
  position: relative;
}

.rs-text-slide-two .rs-text-slider-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
}

.rs-text-slide-two .rs-text-slider-item:nth-child(1) {
  position: relative;
  z-index: 0;
  transform: rotate(7deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-text-slide-two .rs-text-slider-item:nth-child(1) {
    top: -30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .rs-text-slide-two .rs-text-slider-item:nth-child(1) {
    top: -50px;
  }
}

@media (max-width: 575px) {
  .rs-text-slide-two .rs-text-slider-item:nth-child(1) {
    top: -70px;
  }
}

.rs-text-slide-two .rs-text-slider-item:nth-child(2) {
  position: absolute;
  transform: rotate(-7deg);
  top: -230px;
  left: -100px;
}

.rs-text-slide-two .rs-text-slider-item .gsap-marquee {
  min-width: max-content;
}

.rs-text-slide-two .rs-text-slider-item .rs-text-slide-title {
  font-size: 100px;
  letter-spacing: 4px;
  font-weight: 700;
  position: relative;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  line-height: 0.8;
  transform: skewX(-3deg);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rs-text-slide-two .rs-text-slider-item .rs-text-slide-title {
    font-size: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rs-text-slide-two .rs-text-slider-item .rs-text-slide-title {
    font-size: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rs-text-slide-two .rs-text-slider-item .rs-text-slide-title {
    font-size: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .rs-text-slide-two .rs-text-slider-item .rs-text-slide-title {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .rs-text-slide-two .rs-text-slider-item .rs-text-slide-title {
    font-size: 50px;
  }
}

[rs-theme=rs-theme-dark] .rs-text-slide-three {
  background: #10171E;
}

[rs-theme=rs-theme-dark] .rs-text-slide-three .rs-text-slide-wrapper .rs-text-slide-item {
  -webkit-text-stroke-color: rgba(87, 119, 255, 0.25);
}

[rs-theme=rs-theme-dark] .rs-text-slide-two .rs-text-slider-item .rs-text-slider-inner {
  background: #10171E;
  border-color: #242E37;
}

.rs-text-slide-two .rs-text-slider-item .rs-text-slider-inner {
  padding: 20px 0px 20px 0px;
  border: 1px solid rgb(255, 255, 255);
  background: #000;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .rs-text-slide-two .rs-text-slider-item .rs-text-slider-inner {
    padding: 10px 0px 10px 0px;
  }
}