:root {
  --yellow: #f5b942;
  --dark: #0f0f0f;
  --dark-soft: #000000;
  --light: #ffffff;
  --muted: #bdbdbd;
}

html {
  scroll-behavior: smooth;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* GLOBAL */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  nav .btn-primary {
    display: none;
  }
}

@media (max-width: 900px) {
  nav .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
  }

  .logo {
    width: 120px;
  }
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--yellow);
}

/* NAV ACTIVE STATE – STAGE 5 */
.nav-links a.active {
  color: var(--yellow);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
}

/* MOBILE NAV */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span:first-child {
  top: 14px;
}

.nav-toggle span:last-child {
  bottom: 14px;
}

/* MOBILE STATE */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 99;
  }

  .nav-links a {
    font-size: 22px;
    color: var(--light);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  /* animate hamburger to X */
  .nav-toggle.active span:first-child {
    transform: rotate(45deg) translateY(6px);
  }

  .nav-toggle.active span:last-child {
    transform: rotate(-45deg) translateY(-6px);
  }

  nav .btn-primary {
    display: none;
  }
}

/* ============================= */
/* MOBILE STICKY CTA */
/* ============================= */

.mobile-cta {
  display: none;
}

@media (max-width: 640px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    height: 52px;

    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;

    z-index: 999;
    box-shadow: 0 12px 32px rgba(245,185,66,0.35);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .mobile-cta:active {
    transform: scale(0.97);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 88px;
  }
}

/* BUTTON */
.btn-primary {
  padding: 12px 22px;
  background: var(--yellow);
  color: #000;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 185, 66, 0.4);
  color: #000 ;
}

.btn-primary:active {
  transform: scale(0.97);
}

/* HERO */
.hero {
  position: relative;
  padding: 40px 0 10px;
  text-align: center;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 400px at center,
      rgba(245, 185, 66, 0.28),
      rgba(15, 15, 15, 0.95) 70%
    );
  z-index: 0;
}

.hero-inner {
  width: 100%;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 88px 0 72px;
    align-items: flex-start;
  }

  .hero-inner {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 28px;
  }
}

/* HOW WE WORK */
.how-we-work {
  position: relative;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  padding-top: 50px;
}

.how-left span {
  font-size:  15px;
  color: #f5b942;
}

.how-left h2 {
  font-size:  40px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: #f5b942;
  padding: 32px;
  border-radius: 16px;
}

/* PORTFOLIO */

.portfolio {
  background: var(--light);
}

.portfolio h2{
  font-size: 40px;
  text-align: center;
  width: 100%;
}



.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.portfolio-grid img {
  width: 100%;
  border-radius: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-grid img:hover {
  transform: scale(1.04);
}

/* SERVICES */
.services {
  background: var(--dark-soft);
  text-align: center;
  padding: 50px 0 50px;
}

.services-wrap {
  max-width: 1100px;
}

.services-title {
  font-size: 40px;
  margin: 16px 0 48px;
}

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.service-tags li {
  background: #1f1f1f;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
}

/* GRID */
.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* CHIP */
.capability {
  padding: 14px 22px;
  background: var(--yellow);
  color: #000;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: default;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.capability:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 25px rgba(245, 185, 66, 0.35),
    inset 0 0 0 1px rgba(0,0,0,0.08);
    background: #ffd36a;
}

.capability:active {
  transform: scale(0.96);
}

@media (max-width: 640px) {
  .services-title {
    font-size: 32px;
  }

  .capability {
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* FOOTER */
.footer {
  position: relative;
  padding: 60px 0 48px;
  background: radial-gradient(
    ellipse at center,
    rgba(245,185,66,0.12) 0%,
    rgba(0,0,0,1) 70%
  );
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Curve line */
.footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: clip;
  height: 160px;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-radius: 100% 100% 0 0;
  pointer-events: none;
}

.footer h2 {
  margin-bottom: 24px;
}

.footer p {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

/* FOOTER DIVIDER */
.footer-divider {
  position: relative;
  padding: 180px 0 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 640px) {
  .footer-divider {
    padding: 120px 0 100px;
  }
}

.interactive-text {
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  opacity: 0.6;

  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);

  background: radial-gradient(
  520px circle at var(--x, 50%) var(--y, 50%),
  rgba(255,255,255,1) 0%,
  rgba(255,255,255,0.85) 30%,
  transparent 65%
  );

  background-clip: text;
  -webkit-background-clip: text;

  transition: background-position 0.18s ease-out;
  pointer-events: none;
}

.divider-text {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  line-height: 1.1;

  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  text-stroke: 1px rgba(255,255,255,0.18);

  opacity: 0.9;
  pointer-events: none;
}

/* TRUSTED BRANDS STRIP */
.trusted {
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

.trusted-label {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}

.brand-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 22px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 200%;
  animation: marquee 28s linear infinite;
}

.brand-set {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 50%;
  justify-content: space-around;
}

.brand-strip:hover .brand-track {
  animation-play-state: paused;
}

.brand-strip img {
  height: 52px;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-strip img:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.05);
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 120px;
  }

  .brand-strip {
    gap: 24px;
    padding: 18px 20px;
    overflow-x: auto;
  }

  .brand-strip img {
    height: 36px;
  }
    .brand-track {
    gap: 28px;
    animation-duration: 28s;
  }
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(
    to bottom,
    rgba(15,15,15,0),
    rgba(15,15,15,1)
  );
  z-index: 0;
  pointer-events: none;
}

/* ============================= */
/* MICRO ANIMATIONS – STAGE 1    */
/* ============================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1,
.hero p,
.hero .btn-primary,
.trusted {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.hero h1 {
  animation-delay: 0.15s;
}

.hero p {
  animation-delay: 0.35s;
}

.hero .btn-primary {
  animation-delay: 0.55s;
}

.trusted {
  animation-delay: 0.75s;
}

/* Subtle floating effect for hero glow */
@keyframes slowFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero::before {
  animation: slowFloat 12s ease-in-out infinite;
}

@media (max-width: 640px) {
  .hero::before {
    animation: none;
  }
}

/* Brand hover polish */
.brand-strip img {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-strip img:hover {
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 640px) {
  .brand-strip {
    overflow: hidden;
    padding: 18px 20px;
  }

  .brand-track {
    display: flex;
    width: max-content;    
    animation: marquee 22s linear infinite;
    gap: 20px;
  }

  .brand-set {
    display: flex;
    gap: 20px;
    width: auto; 
    flex-shrink: 0;
  }

  .brand-strip img {
  height: 28px;
  min-width: 42px;     
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}
}

/* ============================= */
/* SCROLL REVEAL – STAGE 2A     */
/* ============================= */

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* MOBILE POLISH – STAGE 2B     */
/* ============================= */

@media (max-width: 600px) {
  .navbar {
    padding: 0 16px;
  }

  .nav {
    height: 64px;
  }

  nav {
    gap: 16px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .btn-primary {
    padding: 14px 26px;
  }

  .trusted {
    margin-top: 40px;
  }

  .brand-strip img {
    height: 24px;
  }

  .grid-3 {
    gap: 20px;
  }

  .card {
    padding: 24px;
  }

  section {
    padding: 64px 0;
  }
}

/* HOW WE WORK (GRID + STEPS) */


.how-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.how-desc {
  color: var(--muted);
  margin: 20px 0 28px;
  max-width: 520px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
 
  text-align: center;
  
  justify-content: center;
  width: 100%;
}

.step-icon {
  font-size: 32px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
}

/* PORTFOLIO */
.section-subtitle {
  color: var(--muted);
  margin-top: 12px;
  max-width: 100%;
}
p.section-subtitle {
    text-align: center;
}

.portfolio-wrapper {
  margin-top: 32px;
}

/* CAPABILITIES (CHIPS) */


.capability-tags {
  display: block;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.capability-tags span {
  background: #f5b942;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  color: #000;
}
.capability-tags span:hover {
  background: var(--light);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  color: #000;
}

/* BENEFITS */
.benefits {
  background: var(--dark-soft);
  padding: 50px 0;
}

.benefits-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

.benefits-header h2 {
  font-size: 48px;
  line-height: 1.15;
}

.benefits-desc {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.benefits-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
}

.benefit-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.benefit-item h4 {
  font-size: 16px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.benefit-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.benefit-item:hover {
  transform: translateY(-2px);
}

/* glow layer */
.benefit-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item i {
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 8px;
  transition: none;
}

.benefit-item:hover h4 {
  color: var(--yellow);
}


@media (max-width: 1024px) {
  .benefits-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .benefit-item:hover {
    transform: none;
  }

  .benefit-item:hover i {
    transform: none;
    filter: none;
  }
  body::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .benefits {
    padding: 80px 0;
  }

  .benefits-items {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-header h2 {
    font-size: 32px;
  }
}

/* ABOUT */

/* ABOUT SECTION */
.about {
  background: #ffffff;
  padding: 60px 0;
  color: #111;
}

.about-wrap {
  max-width: 1200px;
}

.about-header {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
  margin-bottom: 72px;
}

.about-header .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.about-header h2 {
  font-size: 44px;
  margin-bottom: 16px;
}

.about-header .highlight {
  color: var(--yellow);
}

.about-intro {
  font-size: 16px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  color: #555;
}

/* Grid layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
}

/* Main text */
.about-main p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
  color: #222;
}

.about-main strong {
  font-weight: 600;
}

/* Side cards */
.about-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-card {
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.015)
  );
  transition: transform 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-card i {
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 12px;
  display: inline-block;
}

.about-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 100px 0;
  }

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

/* FOOTER INNER */


/* .footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 400px at center,
      rgba(245, 185, 66, 0.28),
      rgba(15, 15, 15, 0.95) 70%
    );
  z-index: 0;
} */

.hero-inner {
  width: 100%;
}

.footer h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.footer h1 span {
  color: var(--yellow);
}

.footer p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 16px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  width: 100%;
}

/* LEFT */
.footer-left {
  max-width: 420px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  min-width: 260px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
}

.footer-social {
  display: flex;
  gap: 20px;
  font-size: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.75);
  font-size: 20px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

.footer-divider-line {
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-links a {
  margin-right: 24px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

/* RESPONSIVE FIXES */
@media (max-width: 900px) {
  .how-grid,
  .benefits-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }
}
/* ENSURE SECTIONS NEVER HIDE UNDER HERO */
section {
  position: relative;
  z-index: 1;
}

/* GLOBAL CURSOR GLOW */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    600px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(245, 185, 66, 0.14),
    transparent 45%
  );

  opacity: 0;
  transition: opacity 0.3s ease;
}

/* activate glow on desktop hover */
body.glow-active::before {
  opacity: 1;
}
@media (max-width: 1024px) {
  .nav {
    height: 88px;
  }

  .hero {
    min-height: 80vh;
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .how-grid,
  .about-grid,
  .benefits-header,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .interactive-text {
    font-size: clamp(42px, 6vw, 72px);
  }
}

@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }

  .nav {
    height: 64px;
  }

  nav {
    gap: 14px;
  }

  .hero {
    padding: 96px 0 64px;
    text-align: center;
  }

  .hero p {
    font-size: 14px;
  }

  .btn-primary {
    padding: 14px 28px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .benefits-items {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .interactive-text {
    font-size: 42px;
    -webkit-text-stroke: 1px rgba(255,255,255,0.25);
  }

  .footer-top {
    text-align: left;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /* Disable cursor glow on mobile */
  body::before {
    display: none;
  }
}