/* ============================================================
   MIGON TRADING — Global Stylesheet v5
   Apple-clean layout · Pink-Purple-Blue gradient palette
   #8502FE  Violet
   #0099FF  Blue
   #FF2164  Pink
   #FF14BD  Hot pink
   #FFFFFF  White (primary bg)
   #F5F5F7  Off-white (section bg — Apple grey)
   #1D1D1F  Near-black (Apple text)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --violet:      #8502FE;
  --blue:        #0099FF;
  --pink:        #FF2164;
  --hotpink:     #FF14BD;
  --white:       #FFFFFF;
  --offwhite:    #F5F5F7;
  --dark:        #1D1D1F;
  --mid:         #424245;
  --light:       #86868B;
  --border:      #D2D2D7;

  /* Gradient shortcuts */
  --grad-main:   linear-gradient(135deg, #8502FE 0%, #0099FF 100%);
  --grad-pink:   linear-gradient(135deg, #8502FE 0%, #FF2164 100%);
  --grad-full:   linear-gradient(135deg, #0099FF 0%, #8502FE 50%, #FF2164 100%);
  --grad-text:   linear-gradient(90deg, #8502FE, #0099FF, #FF14BD);

  --font-display: 'Nexa', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 999px;

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.1; font-weight: 800; }

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--violet); margin-bottom: 0.75rem;
}
.section-label::before {
  content: ''; width: 16px; height: 2px;
  background: var(--grad-main); border-radius: 2px;
}

/* Gradient text utility */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-grad {
  background: var(--grad-pink);
  color: var(--white);
}
.btn-grad:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(133,2,254,0.30); }
.btn-dark {
  background: var(--dark); color: var(--white);
  border-radius: var(--radius-full);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--violet); color: var(--violet); }
.btn-arrow::after { content: ' →'; transition: transform var(--transition); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── Navigation — Apple style ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.navbar:not(.scrolled) {
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px; padding: 0 2rem;
}
.nav-logo  { display: flex; align-items: center; }
.nav-logo-img {
  height: 88px; width: auto;
  object-fit: contain;
  display: block;
}
/* Hero logo */
.hero-logo {
  width: clamp(260px, 40vw, 480px);
  height: auto;
  object-fit: contain;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.18));
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  color: var(--mid); transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ── HERO — gradient image background ── */
.hero {
  min-height: 100vh;
  background: #1a0a3c;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding-top: 80px;
}
.hero-blob {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-blob::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.20) 100%);
  display: block;
}
.hero-blob-2 { display: none; }
@keyframes blobPulse {}
@keyframes blobDrift {}

/* Hero centred layout */
.hero {
  align-items: center;
}
.hero-left {
  position: relative; z-index: 2;
  padding: 5rem 4rem 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.hero-headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column; gap: 0.1em;
}
.hl-row { display: block; }
/* Plain solid white */
.hl-plain {
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.20);
}
/* Pill/capsule border — accent colour */
.hl-pill {
  display: inline-block;
  color: var(--white);
  border: 3px solid rgba(255,255,255,0.80);
  border-radius: 999px;
  padding: 0 0.35em;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
/* Outline / ghost text */
.hl-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.40);
  letter-spacing: -0.02em;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 480px; margin: 0 auto 2.5rem; font-weight: 300;
}
.hero-cta-group {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  align-items: center; justify-content: center;
}
/* Pill buttons — Apple style */
.btn-hero-fill {
  background: rgba(255,255,255,0.95); color: var(--dark);
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); border: none;
}
.btn-hero-fill:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-hero-fill.btn-arrow::after { content: ' →'; }
.btn-hero-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.50);
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.22); border-color: var(--white); }

/* ── Sticky section nav ── */
.section-nav {
  position: sticky; top: 96px; z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.section-nav-inner {
  display: flex; align-items: center; overflow-x: auto; scrollbar-width: none;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-link {
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--light);
  border-bottom: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.section-nav-link:hover { color: var(--dark); }
.section-nav-link.active { color: var(--dark); border-bottom-color: var(--violet); }

/* Service blocks — image left with heading overlay, text right */
.service-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 1.5rem; min-height: 460px; box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-feature:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(0,0,0,0.16); }
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }
.service-feature-visual {
  position: relative; overflow: hidden; min-height: 460px;
  display: flex; align-items: flex-end;
}
.svc-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.7s ease;
}
.service-feature:hover .svc-img { transform: scale(1.04); }
.service-feature-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}
.service-visual-content {
  position: relative; z-index: 2;
  padding: 2.5rem; width: 100%;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.service-visual-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px); border-radius: var(--radius-full);
  padding: 0.3rem 0.9rem;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.08em; text-transform: uppercase;
  width: fit-content;
}
.service-visual-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--white);
  line-height: 1.08; letter-spacing: -0.02em;
}
.service-feature-content {
  background: var(--white); padding: 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.service-feature-content h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem); color: var(--dark);
  margin-bottom: 0.85rem; margin-top: 0.25rem;
}
.service-feature-content p {
  font-family: var(--font-body);
  color: var(--mid); line-height: 1.75; font-size: 0.92rem; margin-bottom: 1.5rem;
}
.service-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.service-chip {
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 0.3rem 0.9rem;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  color: var(--mid); transition: var(--transition);
}
.service-chip:hover {
  background: linear-gradient(135deg, rgba(133,2,254,0.08), rgba(0,153,255,0.08));
  border-color: var(--violet); color: var(--violet);
}
@media (max-width: 1024px) {
  .service-feature { grid-template-columns: 1fr; min-height: auto; }
  .service-feature.reverse { direction: ltr; }
  .service-feature-visual { min-height: 320px; }
}

/* ── Services section ── */
.services-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}
.services-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 4rem;
}
.services-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--dark); margin-top: 0.5rem; margin-bottom: 0.75rem;
}
.services-header p {
  font-family: var(--font-body);
  color: var(--light); font-size: 1rem;
}

/* Service block — image left/right, text other side */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-block:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(0,0,0,0.16); }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

/* Image side */
.svc-image-side {
  position: relative; overflow: hidden; min-height: 460px;
  display: flex; align-items: flex-end;
}
.svc-image-side img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.7s ease;
}
.service-block:hover .svc-image-side img { transform: scale(1.04); }
.svc-image-side::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.30) 45%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}
.svc-image-overlay {
  position: relative; z-index: 2;
  padding: 2.5rem;
  width: 100%;
}
.svc-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.svc-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--white);
  line-height: 1.08; letter-spacing: -0.02em;
}

/* Text side */
.svc-text-side {
  background: var(--white);
  padding: 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-text-side .section-label { margin-bottom: 0.5rem; }
.svc-text-side h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--dark); margin-bottom: 1rem; margin-top: 0.25rem;
}
.svc-text-side p {
  font-family: var(--font-body);
  color: var(--mid); line-height: 1.75; font-size: 0.95rem;
  margin-bottom: 1.75rem;
}
.svc-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.svc-chip {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  color: var(--mid);
  transition: var(--transition);
}
.svc-chip:hover {
  background: linear-gradient(135deg, rgba(133,2,254,0.08), rgba(0,153,255,0.08));
  border-color: var(--violet); color: var(--violet);
}
/* Full-width pill CTA button */
.svc-cta {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--dark); color: var(--white);
  border-radius: var(--radius-full);
  padding: 1rem 1.75rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); border: none;
  width: 100%; text-align: left;
}
.svc-cta:hover { background: #333; transform: translateY(-1px); }
.svc-cta-arrow { font-size: 1.1rem; }

/* ── Why section ── */
.why-section {
  padding: 6rem 0; background: var(--offwhite);
  position: relative; overflow: hidden;
}
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.why-text .section-label { color: var(--violet); }
.why-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--dark); margin-bottom: 1rem; }
.why-text > p {
  font-family: var(--font-body);
  color: var(--mid); line-height: 1.75; font-size: 0.95rem;
}
.why-highlights { display: flex; flex-direction: column; gap: 1rem; }
.why-highlight {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-highlight:nth-child(1) { border-left-color: var(--violet); }
.why-highlight:nth-child(2) { border-left-color: var(--blue); }
.why-highlight:nth-child(3) { border-left-color: var(--hotpink); }
.why-highlight:nth-child(4) { border-left-color: var(--pink); }
.why-highlight:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.why-highlight-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-highlight-icon svg {
  width: 26px; height: 26px;
  stroke: var(--violet); stroke-width: 1.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.why-highlight h4 { font-size: 0.92rem; color: var(--dark); margin-bottom: 0.2rem; }
.why-highlight p {
  font-family: var(--font-body);
  font-size: 0.82rem; color: var(--light); line-height: 1.55;
}

/* ── Process ── */
.process-section { padding: 6rem 0; background: var(--white); }
.process-header { text-align: center; max-width: 520px; margin: 0 auto 3.5rem; }
.process-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); margin-bottom: 0.75rem; }
.process-header p { font-family: var(--font-body); color: var(--light); font-size: 0.92rem; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 2.5rem;
  left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 1px; background: var(--border);
}
.step-card { text-align: center; padding: 2rem 1.25rem; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-main);
  color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; z-index: 1; position: relative;
  transition: var(--transition);
}
.step-card:hover .step-num { transform: scale(1.1); box-shadow: 0 8px 24px rgba(133,2,254,0.35); }
.step-card h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 0.4rem; }
.step-card p { font-family: var(--font-body); font-size: 0.82rem; color: var(--light); line-height: 1.6; }

/* ── CTA ── */
.cta-section {
  padding: 7rem 0;
  background: var(--offwhite);
  text-align: center; position: relative; overflow: hidden;
}
.cta-blob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(133,2,254,0.10) 0%,
    rgba(0,153,255,0.08) 40%,
    rgba(255,33,100,0.06) 70%,
    transparent 85%
  );
  filter: blur(60px); pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-label { color: var(--violet); justify-content: center; }
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--dark); margin-bottom: 1rem;
}
.cta-section p {
  font-family: var(--font-body);
  color: var(--light); font-size: 1rem; max-width: 480px;
  margin: 0 auto 2.5rem;
}
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: var(--dark);
  background-image: url('images/footer-bg.png');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  pointer-events: none;
  z-index: 0;
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.85rem; color: rgba(255,255,255,0.40);
  line-height: 1.65; max-width: 260px; margin-top: 1rem;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-family: var(--font-body);
  font-size: 0.85rem; color: rgba(255,255,255,0.50);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.40); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--violet); color: var(--white); background: rgba(133,2,254,0.20); }

/* ── Anchor offset fix (accounts for sticky navbar) ── */
section[id], footer[id] {
  scroll-margin-top: 100px;
}

/* ── Scroll animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Mobile nav ── */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(255,255,255,0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--dark); transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--violet); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--dark); font-size: 2rem; cursor: pointer; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-block.reverse { direction: ltr; }
  .svc-image-side { min-height: 320px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .steps-grid { grid-template-columns: 1fr; }
}
