/* =============================================================
   styles.css — I Make Your Business
   ============================================================= */

/* -------------------------------------------------------------
   1. CSS VARIABLES & RESET
   ------------------------------------------------------------- */

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

:root {
  --black: #0a0a0a;
  --white: #f5f2ec;
  --accent: #c8ff00;
  --accent2: #ff5c2b;
  --gray: #1c1c1c;
  --gray2: #2e2e2e;
  --muted: #888888;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* -------------------------------------------------------------
      2. CUSTOM CURSOR
      ------------------------------------------------------------- */

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [role="button"],
body.has-custom-cursor .service-card,
body.has-custom-cursor .stat-card,
body.has-custom-cursor .niche-card,
body.has-custom-cursor .pricing-card {
  cursor: none;
}

body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor [contenteditable="true"] {
  cursor: none !important;
}

body.has-custom-cursor select {
  cursor: none !important;
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: -50px;
  left: -50px;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, opacity 0.18s ease;
  opacity: 0;
  box-shadow: 0 0 0 2px rgba(200, 255, 0, 0.1),
    0 8px 22px rgba(200, 255, 0, 0.1);
}

.cursor-halo {
  position: fixed;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 9998;
  top: -50px;
  left: -50px;
  transform: translate(-50%, -50%);
  opacity: 0;
  border: 1px solid rgba(200, 255, 0, 0.22);
  background: transparent;
  transition: width 0.16s ease, height 0.16s ease, opacity 0.18s ease,
    border-color 0.16s ease;
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.05);
}

.cursor.active {
  opacity: 1;
}
.cursor-halo.active {
  opacity: 0;
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(1.25);
}
.cursor-halo.hover {
  width: 44px;
  height: 44px;
  opacity: 1;
  border-color: rgba(200, 255, 0, 0.38);
}

.cursor.invert {
  background: #0b1f3a;
  box-shadow: 0 0 0 2px rgba(11, 31, 58, 0.1), 0 8px 22px rgba(11, 31, 58, 0.14);
}
.cursor-halo.invert {
  border-color: rgba(11, 31, 58, 0.42);
  box-shadow: 0 0 0 1px rgba(11, 31, 58, 0.1);
}

.cursor.idle,
.cursor-halo.idle {
  opacity: 0;
}

.cursor.text {
  width: 2px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.08);
  transform: translate(-50%, -50%);
}
.cursor-halo.text {
  width: 26px;
  height: 36px;
  border-radius: 10px;
  opacity: 1;
  border-color: rgba(200, 255, 0, 0.18);
}

.cursor.select {
  width: 0;
  height: 0;
  background: transparent;
  border-radius: 0;
  transform: translate(-50%, -35%);
  box-shadow: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--accent);
}
.cursor.select::after {
  content: none;
}
.cursor-halo.select {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-halo {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor,
  .cursor-halo {
    transition: none;
  }
}

/* -------------------------------------------------------------
      3. NAVIGATION
      ------------------------------------------------------------- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  /* Ensure tap targets are tall enough */
  padding: 0.5rem 0;
  display: inline-block;
}
.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--accent);
  color: var(--black);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #d4ff1a;
  transform: translateY(-1px);
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--gray2);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* -------------------------------------------------------------
      MOBILE DRAWER
      ------------------------------------------------------------- */

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  z-index: 300;
  background: #0f0f0f;
  border-left: 1px solid var(--gray2);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 3rem;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--gray2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-shrink: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray2);
  transition: color 0.2s;
}
.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-cta {
  margin-top: 2.5rem;
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Backdrop */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Lock body scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* -------------------------------------------------------------
      4. HERO SECTION
      ------------------------------------------------------------- */

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6.25rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
      ellipse 60% 50% at 70% 40%,
      rgba(200, 255, 0, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(255, 92, 43, 0.06) 0%,
      transparent 50%
    );
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-top: 1rem;
}

.hero-title .line2 {
  display: block;
  padding-left: clamp(2rem, 8vw, 7rem);
}
.hero-title .line3 {
  display: block;
  padding-left: clamp(4rem, 16vw, 14rem);
  color: var(--accent);
}

.hero-sub {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-top: 2rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.65);
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  /* Good touch target */
  min-height: 48px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 255, 0, 0.3);
}

.btn-ghost {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
}
.btn-ghost:hover {
  color: var(--white);
}
.btn-ghost::after {
  content: "→";
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-txt {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

@media (max-width: 768px) {
  .hero {
    padding: 5.5rem 1.25rem 3.5rem;
    /* Push content down from fixed nav */
    justify-content: center;
    /* min-height: 100svh; */
  }

  .hero-title {
    /* Reduce stagger on mobile so lines don't overflow */
    font-size: clamp(2.3rem, 11vw, 5rem);
    line-height: 1;
  }

  .hero-title .line2 {
    padding-left: 0;
  }
  .hero-title .line3 {
    padding-left: 0;
    margin-top: 0.6rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-actions {
    gap: 1rem;
  }

  .hero-scroll {
    display: none;
  }
}

/* -------------------------------------------------------------
      5. TICKER STRIP
      ------------------------------------------------------------- */

.ticker {
  background: var(--accent);
  color: var(--black);
  padding: 0.7rem 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticker-inner {
  display: flex;
  animation: tickerMove 20s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}

/* -------------------------------------------------------------
      6. SHARED SECTION STYLES
      ------------------------------------------------------------- */

section {
  padding: 7rem 3rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 640px;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.25rem;
  }
}

/* -------------------------------------------------------------
      7. ABOUT SECTION
      ------------------------------------------------------------- */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: rgba(245, 242, 236, 0.65);
  font-size: 1.05rem;
  font-weight: 300;
  margin-top: 1.5rem;
  line-height: 1.8;
}

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

.stat-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  padding: 1.8rem;
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
  /* Min touch target */
  min-height: 44px;
}
.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-text p {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: clamp(1.5rem, 7vw, 3rem);
  }
  .stat-card {
    padding: 1.2rem;
  }
  .stat-num {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }
}

/* -------------------------------------------------------------
      8. SERVICES SECTION
      ------------------------------------------------------------- */

.services-header {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gray2);
  border: 1px solid var(--gray2);
}

.service-card {
  background: var(--black);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  background: var(--gray);
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--gray2);
  border-radius: 2px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 1.75rem 1.25rem;
  }
}

/* -------------------------------------------------------------
      9. PROCESS SECTION
      ------------------------------------------------------------- */

.process {
  background: var(--gray);
  border-radius: 4px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
}

.process-step {
  padding: 2rem 2rem 2rem 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 2rem;
  right: -0.5rem;
  color: var(--accent);
  font-size: 1.2rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200, 255, 0, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-step::after {
    display: none;
  }
  .process-step {
    padding: 0;
  }
  .step-num {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* -------------------------------------------------------------
      10. PRICING SECTION
      ------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray2);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pricing-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 4px 4px;
}
.pricing-card[data-plan="lite"] {
  border: 1.5px dashed #3a3a3a;
  background: #1b1b1b;
  overflow: hidden;
}

.pricing-card[data-plan="lite"]:hover {
  border-color: rgba(200, 255, 0, 0.3);
  border-style: dashed;
}

.pricing-ribbon {
  position: absolute;
  top: 22px;
  right: -32px;
  background: #3a3a3a;
  color: #aaaaaa;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  width: 130px;
  text-align: center;
  transform: rotate(45deg);
  transition: background 0.2s, color 0.2s;
}

.pricing-card[data-plan="lite"]:hover .pricing-ribbon {
  background: rgba(200, 255, 0, 0.15);
  color: var(--accent);
}

.pricing-plan {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 1rem 0 0.3rem;
  white-space: nowrap;
}
.pricing-price sup {
  font-size: 1.4rem;
  vertical-align: baseline;
  margin-right: 0.1rem;
}
.pricing-cycle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--gray2);
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.75);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li.muted {
  color: var(--muted);
}
.pricing-features li.muted::before {
  content: "–";
  color: var(--muted);
}

.pricing-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
  padding: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  /* Touch target */
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-btn-outline {
  border: 1px solid var(--gray2);
  color: var(--white);
}
.pricing-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-btn-solid {
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent);
}
.pricing-btn-solid:hover {
  background: #d4ff1a;
}

@media (max-width: 1100px) {
  .pricing-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 600px) {
  .pricing-grid[style*="repeat(4"] {
    grid-template-columns: 1fr !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* -------------------------------------------------------------
   CURRENCY SWITCHER
   ------------------------------------------------------------- */

.currency-switcher {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.currency-pill {
  background: transparent;
  border: 1px solid var(--gray2);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.currency-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.currency-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

@media (max-width: 768px) {
  .currency-switcher {
    justify-content: flex-start;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
  }

  .currency-pill {
    font-size: 0.65rem;
    padding: 0.35rem 0.6rem;
  }
}

/* -------------------------------------------------------------
      11. NICHES SECTION
      ------------------------------------------------------------- */

.niches-section {
  background: var(--gray);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--gray2);
  border: 1px solid var(--gray2);
}

.niche-card {
  background: var(--gray);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}
.niche-card:hover {
  background: #252525;
}
.niche-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.niche-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.niche-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
}

.niche-card--more {
  display: none;
}

@media (max-width: 768px) {
  .niches-grid {
    grid-template-columns: 1fr 1fr;
  }
  .niche-card {
    padding: 1.25rem;
  }
  .niche-icon {
    font-size: 1.5rem;
  }
  .niche-name {
    font-size: 1rem;
  }
  .niche-card--more {
    display: flex;
  }
}

@media (max-width: 400px) {
  .niches-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   12. TESTIMONIALS — Receipt style
   ------------------------------------------------------------- */

.testimonials-section {
  padding: 7rem 3rem;
  background: var(--black);
}

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

.receipt-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray2);
  padding: 2rem 1.75rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  background: var(--dark, #111);
  transition: border-color 0.3s;
}

.receipt-card:hover {
  border-color: var(--accent);
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.receipt-divider {
  color: var(--gray2);
  overflow: hidden;
  white-space: nowrap;
  margin: 0.75rem 0;
  letter-spacing: 0.02em;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  margin: 0.4rem 0;
}

.receipt-row span:first-child {
  color: var(--muted);
  flex-shrink: 0;
}

.receipt-row span:last-child {
  color: var(--white);
  text-align: right;
}

.receipt-quote {
  color: rgba(245, 242, 236, 0.75);
  font-style: italic;
  line-height: 1.7;
  font-size: 0.8rem;
  margin: 0.5rem 0;
}

.receipt-footer {
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .testimonials-inner .receipt-card {
    transform: none !important;
  }
  .testimonials-section {
    padding: 4rem 0 4rem 1.25rem; /* left padding only, no right */
  }
  .testimonials-inner {
    align-items: stretch;
    grid-template-columns: repeat(3, 78vw);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: 1rem;
    max-width: 100%;
    padding-right: 1.25rem;
    /* Hide scrollbar but keep functionality */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .testimonials-inner::-webkit-scrollbar {
    display: none;
  }

  .receipt-card {
    scroll-snap-align: start;
    height: fit-content;
  }

  .receipt-card:first-child {
    opacity: 1;
  }

  .receipt-card:not(:first-child) {
    opacity: 0.5;
  }

  .testimonials-inner:has(.receipt-card:hover) .receipt-card {
    opacity: 1;
  }
}

/* -------------------------------------------------------------
      13. CTA SECTION
      ------------------------------------------------------------- */

.cta-section {
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(200, 255, 0, 0.05) 0%,
    transparent 70%
  );
}

.cta-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.cta-title .highlight {
  color: var(--accent);
  display: block;
}
.cta-sub {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.cta-btn {
  position: relative;
  z-index: 1;
  background: var(--accent);
  color: var(--black);
  padding: 1.2rem 3rem;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 255, 0, 0.35);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 1.25rem;
  }
  .cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* -------------------------------------------------------------
      14. CONTACT SECTION
      ------------------------------------------------------------- */

.contact-section {
  background: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-detail a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
  /* Touch target */
  min-height: 44px;
}
.contact-detail a:hover {
  color: var(--accent);
}

/* WhatsApp link — stands out slightly */
.whatsapp-link {
  color: #25d366 !important;
  font-weight: 500;
}
.whatsapp-link:hover {
  color: #128c7e !important;
}
.whatsapp-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--gray2);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  /* iOS zoom prevention — font-size >= 16px prevents auto-zoom */
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 255, 0, 0.3);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  /* Full-width submit on mobile */
  .form-submit {
    align-self: stretch;
    width: 100%;
  }
}

/* -------------------------------------------------------------
      15. FOOTER
      ------------------------------------------------------------- */

footer {
  padding: 3rem;
  border-top: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span {
  color: var(--accent);
}
footer p {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.25rem;
    align-items: center;
  }
  .footer-links {
    gap: 1.5rem;
  }
}

/* -------------------------------------------------------------
      16. ANIMATIONS & KEYFRAMES
      ------------------------------------------------------------- */

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* -------------------------------------------------------------
      17. SCROLL REVEAL
      ------------------------------------------------------------- */

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
      18. GLOBAL TOUCH / FOCUS IMPROVEMENTS
      ------------------------------------------------------------- */

/* Visible focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove tap highlight on mobile */
a,
button {
  -webkit-tap-highlight-color: transparent;
}
