/* ═══════════════════════════════════════
   JM SITES — PREMIUM CLEAN STYLES
   Mobile-first • Responsive • Accessible
   ═══════════════════════════════════════ */

:root {
  /* Brand */
  --clr-primary: #3e015f;
  --clr-primary-dark: #250038;
  --clr-primary-light: #c66bf7;
  --clr-accent: #00d4ff;
  --clr-accent-soft: rgba(0, 212, 255, 0.12);

  /* Neutrals */
  --clr-bg: #ffffff;
  --clr-bg-soft: #f8f9ff;
  --clr-text: #1f2937;
  --clr-text-soft: #5b6472;
  --clr-border: rgba(62, 1, 95, 0.08);

  /* Radius */
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

  /* Layout */
  --container: 1200px;
  --container-narrow: 1100px;
  --container-cards: 980px;

  --transition: 0.3s ease;
}

/* ═══════════════════════════════════════
   RESET / BASE
   ═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Inter", system-ui, sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--clr-accent);
  color: var(--clr-primary-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-primary-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-primary);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  padding: 1rem 1.5rem;
  background: var(--clr-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0 0 10px 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY / UTILITIES
   ═══════════════════════════════════════ */
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

p {
  margin: 0 0 1rem;
}

.section,
.pricing,
.deliver,
.how-it-works-container,
.section-cta-final {
  padding: 4rem 1.25rem;
}

.section {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.section__title {
  position: relative;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--clr-primary);
}

.section__title::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-primary-light));
}

.text-gradient {
  display: inline;
  background: linear-gradient(135deg, var(--clr-primary) 0%, #a855f7 55%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #c66bf7, #2a0042);
  box-shadow: 0 8px 25px rgba(42, 0, 66, 0.18);
  backdrop-filter: blur(10px);
}

.header--scrolled {
  box-shadow: 0 10px 35px rgba(42, 0, 66, 0.3);
  background: linear-gradient(180deg, rgba(198, 107, 247, 0.96), rgba(42, 0, 66, 0.96));
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  max-width: var(--container);
  min-height: 84px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo__img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition);
}

.logo__img:hover {
  transform: scale(1.05);
}

.title__main {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  font-style: oblique;
  transform: skewX(-10deg);
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.3);
}

.title__sub {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  font-weight: 700;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 12px #00ff88;
  animation: pulse-green 2s infinite ease-in-out;
}

@keyframes pulse-green {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.nav {
  position: relative;
}

#nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
}

.nav__link {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-accent);
}

.cta-nav {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2.5rem 1.25rem 4.25rem;
  overflow: hidden;
  text-align: center;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(198, 107, 247, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: #f3f0f8;
  border: 1px solid rgba(62, 1, 95, 0.08);
  color: var(--clr-primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse-cyan 2s infinite;
}

@keyframes pulse-cyan {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.45);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 212, 255, 0);
  }
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: var(--clr-primary);
}

.hero__sub {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: var(--clr-text-soft);
}

.hero__sub strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--clr-primary);
  font-weight: 800;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.cta-btn.big {
  min-width: 220px;
  padding: 1.15rem 2rem;
  background: var(--clr-primary);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(62, 1, 95, 0.22);
}

.cta-btn.big:hover {
  transform: translateY(-3px);
  background: var(--clr-primary-dark);
  box-shadow: 0 18px 35px rgba(62, 1, 95, 0.3);
}

.hero__footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  color: #7b8190;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
  padding: 1.25rem 1.25rem;
  background: var(--clr-bg-soft);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.tech-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--clr-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.tech-icon {
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════
   GRID / SHARED CARD SYSTEM
   ═══════════════════════════════════════ */
.projects-grid,
.process-grid,
.deliver-grid {
  display: grid;
  gap: 2rem;
}

.projects-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
}

.deliver-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
  gap: 1.5rem;
}

.project,
.step-card,
.pricing-card,
.deliver-card {
  background: #fff;
  border: 1px solid #edf0f6;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.project:hover,
.step-card:hover,
.pricing-card:hover,
.deliver-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════ */
.project {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.browser-bar {
  display: flex;
  gap: 6px;
  padding: 0.7rem 0.9rem;
  background: #f8f9fc;
  border-bottom: 1px solid #eef1f6;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.red {
  background: #ff5f56;
}

.yellow {
  background: #ffbd2e;
}

.green {
  background: #27c93f;
}

.project__image-wrapper {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f5f8;
  border-bottom: 1px solid #eef1f6;
}

.project__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.5s ease;
}

.project:hover img {
  transform: scale(1.02);
}

.project__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.35rem;
}

.project__info h3 {
  margin-bottom: 1rem;
  color: #1d2430;
}

.project__stats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-label {
  display: inline-flex;
  align-self: flex-start;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  background: #f1f5ff;
  border-radius: 8px;
  color: var(--clr-primary);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-value {
  color: var(--clr-text-soft);
  font-size: 0.95rem;
}

.project__btn {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding: 0.95rem 1rem;
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-pill);
  color: var(--clr-primary);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition);
}

.project__btn:hover {
  background: var(--clr-primary);
  color: #fff;
}

.project__btn .arrow {
  margin-left: 5px;
  transition: transform var(--transition);
}

.project__btn:hover .arrow {
  transform: translateX(4px);
}

.project__btn.disabled {
  opacity: 0.8;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works-container {
  background: var(--clr-bg-soft);
}

.step-card {
  padding: 1.75rem 1.2rem;
  text-align: center;
}

.step__num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6fbaff, var(--clr-accent));
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
}

.step-card strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--clr-primary);
  font-size: 1.1rem;
}

.step-card p {
  margin: 0;
  color: var(--clr-text-soft);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
  padding-bottom: 2.5rem;
}

.pricing-container {
  max-width: var(--container);
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: 18px;
}

.pricing-card.featured {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.18), 0 15px 35px rgba(0, 212, 255, 0.09);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.38rem 1rem;
  background: var(--clr-accent);
  border-radius: var(--radius-pill);
  color: #06131a;
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin-bottom: 0.25rem;
  color: #151a22;
  font-size: 1.25rem;
}

.subtitle {
  margin-bottom: 1rem;
  color: #6d7684;
  font-size: 0.9rem;
}

.price-wrapper {
  margin-bottom: 1rem;
}

.price-label {
  margin-bottom: 0.35rem;
  color: #7b8392;
  font-size: 0.85rem;
}

.price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.2rem;
  color: var(--clr-primary);
}

.currency {
  margin-top: 0.25rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.amount {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 900;
}

.pricing-features {
  flex-grow: 1;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f1f3f7;
  color: #4c5564;
  font-size: 0.95rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  color: var(--clr-accent);
  font-size: 1.1rem;
  font-weight: 900;
}

.pricing-cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 0.9rem 1rem;
  border: 2px solid var(--clr-primary);
  border-radius: 14px;
  color: var(--clr-primary);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition);
}

.pricing-cta:hover {
  background: var(--clr-primary);
  color: #fff;
}

.pricing-card.featured .pricing-cta {
  background: var(--clr-accent);
  color: #07141a;
  border-color: var(--clr-accent);
}

.pricing-card.featured .pricing-cta:hover {
  background: transparent;
  color: var(--clr-accent);
}

.pricing-note {
  max-width: 800px;
  margin: 1.5rem auto 0;
  color: #6d7684;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
#about {
  width: 100%;
  max-width: 100%;
  background: var(--clr-bg-soft);
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 700px);
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1050px;
  margin: 0 auto;
}

.about__photo {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}

.about__text {
  max-width: 700px;
}

.about__text p {
  color: #4d5563;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

/* ═══════════════════════════════════════
   MINI TRUST STRIP
   ═══════════════════════════════════════ */
.mini-trust {
  padding: 1.2rem 1.25rem;
  background: linear-gradient(180deg, #fcfbff 0%, #ffffff 100%);
}

.mini-trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mini-trust__inner span {
  padding: 0.65rem 1rem;
  background: rgba(198, 107, 247, 0.08);
  border: 1px solid rgba(62, 1, 95, 0.08);
  border-radius: var(--radius-pill);
  color: var(--clr-primary);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

/* ═══════════════════════════════════════
   DELIVER
   ═══════════════════════════════════════ */
.deliver-card {
  padding: 1.35rem 1.1rem;
  border-radius: 18px;
  text-align: center;
}

.deliver-icon {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 1.8rem;
}

.deliver-card h3 {
  margin-bottom: 0.55rem;
  color: var(--clr-primary-dark);
  font-size: 1.05rem;
}

.deliver-card p {
  margin: 0;
  color: var(--clr-text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.section-cta-final {
  text-align: center;
  background: var(--clr-bg-soft);
}

.section-cta-final h2 {
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.btn-pulse {
  animation: soft-pulse 3s infinite ease-in-out;
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(62, 1, 95, 0.4);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(62, 1, 95, 0);
    transform: translateY(-2px);
  }
}

.pitch {
  padding: 1rem 0 0.5rem;
  color: #3b4250;
  font-size: 1.05rem;
  font-weight: 700;
}

.cta-response {
  margin-top: 0.4rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.email-cta {
  color: var(--clr-primary);
  text-decoration: none;
  font-weight: 700;
}

.email-cta:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 2.5rem 1.25rem;
  background: var(--clr-primary);
  color: #fff;
  text-align: center;
}

.footer__content {
  max-width: 900px;
  margin: 0 auto;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  color: var(--clr-accent);
}

.social-links svg {
  width: 22px;
  height: 22px;
}

.footer__tagline {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--clr-accent);
}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   TABLET
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .availability-badge {
    display: none;
  }

  .projects-grid,
  .process-grid,
  .deliver-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 2rem;
  }

  .about__text {
    max-width: 760px;
  }
}

/* ═══════════════════════════════════════
   MOBILE NAV
   ═══════════════════════════════════════ */
@media (max-width: 840px) {
  .header__inner {
    min-height: 78px;
    gap: 0.75rem;
  }

  .nav {
    position: static;
  }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    cursor: pointer;
  }

  .nav-toggle-label span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(42, 0, 66, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  #nav-toggle:checked ~ .nav-menu {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.9rem 1rem;
    text-align: center;
  }

  #nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  #nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ═══════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 84px;
  }

  .section,
  .pricing,
  .deliver,
  .how-it-works-container,
  .section-cta-final {
    padding: 3rem 1rem;
  }

  .section__title {
    margin-bottom: 1.5rem;
  }

  .header {
    padding: 0;
  }

  .header__inner {
    min-height: 68px;
    padding: 0.7rem 0.85rem;
  }

  .logo__img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .title__main {
    font-size: 1.25rem;
    transform: none;
    text-shadow: none;
  }

  .title__sub {
    font-size: 0.75rem;
  }

  .hero {
    padding: 4rem 1rem 3rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero__sub {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }

  .cta-btn.big {
    width: 100%;
    max-width: 320px;
    padding: 1rem;
    margin-inline: auto;
  }

  .hero__footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    text-align: center;
  }

  .feature-item {
    padding: 0.75rem;
    background: #f7f3fb;
    border: 1px solid rgba(62, 1, 95, 0.1);
    border-radius: 12px;
    color: var(--clr-primary);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .trust-bar {
    padding: 1rem 0.9rem;
  }

  .tech-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.5rem;
  }

  .tech-item {
    justify-content: center;
    padding: 0.5rem;
  }

  .projects-grid,
  .process-grid,
  .pricing-grid,
  .deliver-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1.5rem;
  }

  .project {
    border-radius: 18px;
  }

  .project__image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .project__info {
    padding: 1rem;
  }

  .project__info h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
  }

  .project__stats {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .stat-label {
    padding: 0.3rem 0.5rem;
    font-size: 0.68rem;
  }

  .stat-value {
    font-size: 0.9rem;
  }

  .step-card {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .step__num {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    font-size: 1.15rem;
  }

  .step-card strong {
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  .pricing-card h3 {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
  }

  .amount {
    font-size: 2.4rem;
  }

  .pricing-features li {
    justify-content: flex-start;
    padding: 0.6rem 0;
    text-align: left;
    font-size: 0.95rem;
  }

  .pricing-cta {
    padding: 0.85rem 1rem;
  }

  .about-grid {
    gap: 1.5rem;
  }

  .about__photo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-width: 3px;
  }

  .about__text {
    text-align: center;
  }

  .about__text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .mini-trust {
    padding: 1rem;
  }

  .mini-trust__inner {
    gap: 0.6rem;
  }

  .mini-trust__inner span {
    padding: 0.6rem;
    font-size: 0.88rem;
  }

  .deliver-card {
    padding: 0.5rem;
    border-radius: 16px;
  }

  .deliver-icon {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
  }

  .deliver-card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
  }

  .deliver-card p {
    font-size: 0.9rem;
  }

  .section-cta-final h2 {
    margin-bottom: 1.8rem;
    font-size: 1.5rem;
  }

  .section-cta-final .cta-btn.big {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }

  .cta-response {
    font-size: 0.9rem;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer__nav {
    gap: 0.6rem 1rem;
    margin-bottom: 1rem;
  }

  .footer__tagline {
    font-size: 0.9rem;
  }

  .social-links {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .footer p {
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}