/* :root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --surface: #16161f;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #e8ff47;
  --accent2: #7c6cfc;
  --text: #f0f0f5;
  --muted: #9d9db5;
  --card: #13131a;
  --lime: #e8ff47;
  --black: #0a0a0f;
  --dark: #111118;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
} */

/* CUSTOM CURSOR  */
/* .cursor {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232, 255, 71, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.08s ease;
} */

/* SCROLLBAR STYLING */
/* ::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--accent2);
  border-radius: 10px;
}
 */
/* NAVIGATION */
/* nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 255, 71, 0.25);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  z-index: 99;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
} */

/* HERO SECTION */
/* .hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

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

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
}

.blob1 {
  background: var(--accent2);
  top: -100px;
  right: -100px;
  will-change: transform;

}

.blob2 {
  background: var(--accent);
  bottom: -150px;
  left: -100px;
  opacity: 0.07;
  will-change: transform;

}
 */
/* Hero text animations — staggered fade up on load */
/* .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--accent);
} */

/* H1  */
/* .hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 6.5vw, 70px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  max-width: 950px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-headline .highlight {
  color: var(--accent);
}

.hero-headline .dim {
  color: var(--muted);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
} */

/* PRIMARY BUTTON — yellow/accent color */
/* .btn-primary {
  padding: 16px 32px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 255, 71, 0.3);
} */

/* GHOST BUTTON — outlined, transparent */
/* .btn-ghost {
  padding: 16px 32px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
} */

/* STATS ROW — numbers at the bottom of hero */
/* .hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 950px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 300;
} */

/* SECTION BASE STYLES */
/* section {
  padding: 100px 48px;
}

.section-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 650px;
}

.section-title .muted {
  color: var(--muted);
}
 */

/* SOCIAL PROOF TICKER */
/* .ticker-wrap {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  gap: 60px;
  animation: ticker 22s linear infinite;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

 */
/* SECTIONS */
/* section {
  padding: 100px 40px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.section-sub {
  font-size: 17px;
  color: #888;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 560px;
  font-weight: 300;
}
 */
/* ABOUT SECTION */
/* .about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 24px;
}

.about-text p strong {
  color: var(--text);
  font-weight: 500;
}

.about-text .big-quote {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-top: 36px;
  letter-spacing: -0.3px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skill-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.skill-pill:hover {
  border-color: rgba(232, 255, 71, 0.2);
  transform: translateX(6px);
}

.skill-pill-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.skill-pill-tag {
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 100px;
} */

/* SERVICES SECTION */
/* .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin-top: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(124, 108, 252, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(124, 108, 252, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 255, 71, 0.08);
  border: 1px solid rgba(232, 255, 71, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

.service-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-feature::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
} */

/* PORTFOLIO SECTION */
/* .portfolio {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 52px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
}

.project-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
} */

/* REPLACE these gradients with actual screenshot images later:
     background-image: url('your-screenshot.png');
     background-size: cover; background-position: center; */
/* .project-thumb-1 {
  background-size: cover;
  background-position: center;
}

.project-thumb-2 {
  background-size: cover;
  background-position: center;
}

.project-thumb-3 {
  background-size: cover;
  background-position: center;
}

.project-thumb-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 255, 71, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(232, 255, 71, 0.2);
}

.project-info {
  padding: 28px;
}

.project-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.project-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  font-size: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  color: var(--muted);
  border: 1px solid var(--border);
}

.project-link {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.project-link:hover {
  gap: 10px;
} */

/* WHY ME SECTION — 4 numbered cards */
/* .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  transition: all 0.25s;
}

.why-card:hover {
  border-color: rgba(232, 255, 71, 0.15);
  background: rgba(232, 255, 71, 0.02);
}

.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(232, 255, 71, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.why-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.why-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
} */

/* PROCESS SECTION */
/* .process {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: flex;
  gap: 0;
  margin-top: 52px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  min-width: 0;

}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
} */

/* CONTACT SECTION */
/* .contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-title {
  margin: 0 auto 16px;
}

.contact-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 44px;
}

.contact-sub strong {
  color: var(--text);
  font-weight: 500;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-btn:hover {
  border-color: rgba(232, 255, 71, 0.25);
  transform: translateY(-2px);
  background: rgba(232, 255, 71, 0.03);
}

.contact-btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.15);
}

.li {
  background: rgba(10, 102, 194, 0.1);
  border: 1px solid rgba(10, 102, 194, 0.15);
}

.em {
  background: rgba(124, 108, 252, 0.1);
  border: 1px solid rgba(124, 108, 252, 0.15);
}

.contact-btn-text {
  flex: 1;
  text-align: left;
}

.contact-btn-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-btn-value {
  font-weight: 500;
}

.contact-btn-arrow {
  color: var(--muted);
  transition: transform 0.2s;
}

.contact-btn:hover .contact-btn-arrow {
  transform: translateX(4px);
} */


/* FAQ */
/* .faq {
  background: var(--bg2);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--card);
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
  cursor: pointer;
}

.faq-item.open {
  border-color: var(--lime);
}

.faq-q {
  padding: 24px 28px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 28px 24px;
}

.faq-cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  position: sticky;
  top: 100px;
}

.faq-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-cta-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 28px;
}

.faq-cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.faq-cta-li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #aaa;
}

.faq-cta-li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
}
 */

/* FOOTER */
/* footer {
  padding: 36px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--muted);
}

.footer-logo span {
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
} */

/* SCROLL REVEAL ANIMATION */
/* @keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

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

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

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-cta-box {
    position: static;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-steps::before {
    display: none;
  }
} */

/* RESPONSIVE — MOBILE BREAKPOINT */
/* @media (max-width: 768px) {

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  nav {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }
.nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
  section {
    padding: 70px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-cta-box {
    position: static;
    padding: 28px 24px;
  }
} */



:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --surface: #16161f;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #e8ff47;
  --accent2: #7c6cfc;
  --text: #f0f0f5;
  --muted: #9d9db5;
  --card: #13131a;
  --lime: #e8ff47;
  --black: #0a0a0f;
  --dark: #111118;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR  */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232, 255, 71, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.08s ease;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 4px;
}

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

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

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 255, 71, 0.25);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  z-index: 99;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

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

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
}

.blob1 {
  background: var(--accent2);
  top: -100px;
  right: -100px;
  will-change: transform;

}

.blob2 {
  background: var(--accent);
  bottom: -150px;
  left: -100px;
  opacity: 0.07;
  will-change: transform;

}

/* Hero text animations — staggered fade up on load */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}

/* H1  */
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 6.5vw, 70px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  max-width: 950px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-headline .highlight {
  color: var(--accent);
}

.hero-headline .dim {
  color: var(--muted);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

/* PRIMARY BUTTON — yellow/accent color */
.btn-primary {
  padding: 16px 32px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 255, 71, 0.3);
}

/* GHOST BUTTON — outlined, transparent */
.btn-ghost {
  padding: 16px 32px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* STATS ROW — numbers at the bottom of hero */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 950px;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 300;
}

/* SECTION BASE STYLES */
section {
  padding: 100px 48px;
}

.section-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 650px;
}

.section-title .muted {
  color: var(--muted);
}


/* SOCIAL PROOF TICKER */
.ticker-wrap {
  background: #9d9db5;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  gap: 60px;
  animation: ticker 22s linear infinite;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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


/* .container utility */
.container {
  max-width: 1160px;
  margin: 0 auto;
}

/* ABOUT SECTION */
/* .about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 24px;
}

.about-text p strong {
  color: var(--text);
  font-weight: 500;
}

.about-text .big-quote {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-top: 36px;
  letter-spacing: -0.3px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skill-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.skill-pill:hover {
  border-color: rgba(232, 255, 71, 0.2);
  transform: translateX(6px);
}

.skill-pill-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.skill-pill-tag {
  font-size: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 100px;
} */

.wwa {
  padding: 120px 48px 130px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* dot-matrix background */
.wwa-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.wwa-glow-tl {
  position: absolute;
  top: -60px;
  left: -60px;
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  background: radial-gradient(circle, rgba(200, 241, 53, .055) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.wwa-glow-br {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  background: radial-gradient(circle, rgba(200, 241, 53, .035) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ══════════════════════════════
   LEFT COLUMN
══════════════════════════════ */
.left {
  max-width: 100%;
  min-width: 0;
}

/* eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 24px;
}

.eyebrow-line {
  width: 24px;
  height: 1px;
  background: var(--lime);
}

/* headline */
.headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hl-plain {
  color: var(--white);
}

.hl-outline {
  -webkit-text-stroke: 1.5px #aaa;
  color: transparent;
}

.hl-lime {
  color: #9d9db5;
}

/* trust badge strip */
.trust-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--b0);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .5px;
  color: var(--mid);
  background: var(--card);
  white-space: nowrap;
}

.tbadge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-lime {
  background: var(--lime);
}

.dot-red {
  background: var(--red);
}

.dot-blue {
  background: #4a9eff;
}

/* body copy */
.body-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.copy-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--b0);
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 300;
}

.copy-block:first-child {
  padding-top: 0;
}

.copy-block strong {
  color: var(--white);
  font-weight: 600;
}

.copy-block .kw {
  color: #9d9db5;
  font-weight: 500;
  font-style: normal;
}

/* pull-quote */
.pull-quote {
  position: relative;
  padding: 22px 24px;
  background: var(--l05);
  border: 1px solid var(--l10);
  border-left: 3px solid var(--lime);
  border-radius: 0 10px 10px 0;
  margin-bottom: 36px;
}

.pq-text {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.pq-text em {
  font-style: normal;
  color: var(--lime);
}

.pq-attr {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* CTA cluster */
.cta-cluster {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: all .25s;
}

.cta-primary:hover {
  background: var(--lime-d);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 241, 53, .22);
}

.cta-primary svg {
  transition: transform .25s;
}

.cta-primary:hover svg {
  transform: translateX(4px);
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.cta-note svg {
  color: var(--lime);
  flex-shrink: 0;
}


/* ══════════════════════════════
   RIGHT COLUMN
══════════════════════════════ */
.right {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  min-width: 0;
}

/* ── HERO SERVICE CARD (Web Dev) ── */
.service-hero {
  background: var(--lime);
  border-radius: 16px 16px 0 0;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 3px;
}

.service-hero::before {
  content: 'WEB DEV';
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 12vw, 100px);
  letter-spacing: -2px;
  color: rgba(0, 0, 0, .08);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.hero-badge {
  background: rgba(0, 0, 0, .15);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .7);
  font-weight: 700;
}

.hero-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-service-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  color: var(--bg);
  line-height: 1.1;
  margin-bottom: 10px;
  word-break: break-wordd;
}

.hero-service-desc {
  font-size: 13px;
  color: rgba(0, 0, 0, .6);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
}

.hero-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-tag {
  background: rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, .65);
  letter-spacing: .5px;
}

.hero-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.hsr-item {}

.hsr-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--bg);
  line-height: 1;
}

.hsr-label {
  font-size: 11px;
  color: rgba(0, 0, 0, .55);
  margin-top: 2px;
}

/* ── SERVICE LIST ── */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-row {
  background: var(--card);
  border: 1px solid var(--b0);
  border-radius: 0;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: default;
  transition: background .25s, border-color .25s, transform .3s;
  position: relative;
  overflow: hidden;
}

.svc-row:last-child {
  border-radius: 0 0 16px 16px;
}

.svc-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
}

.svc-row:hover {
  background: var(--card-h);
  border-color: var(--b1);
  transform: translateX(4px);
}

.svc-row:hover::before {
  transform: scaleY(1);
}

.svc-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--b1);
  transition: background .25s;
  flex-shrink: 0;
}

.svc-row:hover .svc-dot {
  background: var(--lime);
}

.svc-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.svc-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-tech {
  font-size: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--b0);
  border-radius: 6px;
  padding: 3px 10px;
  letter-spacing: .5px;
  white-space: nowrap;
}

.svc-arrow {
  width: 26px;
  height: 26px;
  border: 1px solid var(--b0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s, transform .25s, border-color .25s, color .25s;
}

.svc-row:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(200, 241, 53, .3);
  color: var(--lime);
}

/* ── GUARANTEE FOOTER ── */
.guarantee {
  margin-top: 3px;
  background: rgba(200, 241, 53, .05);
  border: 1px solid rgba(200, 241, 53, .12);
  border-radius: 0 0 16px 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.g-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.g-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--mid);
}

.g-item svg {
  color: var(--lime);
  flex-shrink: 0;
}

.g-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: opacity .2s;
}

.g-cta:hover {
  opacity: .7;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

/* .reveal.from-left {
  transform: translateX(-28px);
}

.reveal.from-right {
  transform: translateX(28px);
} */

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin-top: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(124, 108, 252, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: rgba(124, 108, 252, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 255, 71, 0.08);
  border: 1px solid rgba(232, 255, 71, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

.service-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-feature::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

.wwa {
  overflow-x: clip;
}

.wwa,
.inner,
.left,
.right {
  max-width: 100%;
}

/* PORTFOLIO SECTION */
.portfolio {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 52px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
}

.project-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

/* REPLACE these gradients with actual screenshot images later:
     background-image: url('your-screenshot.png');
     background-size: cover; background-position: center; */
.project-thumb-1 {
  background-size: cover;
  background-position: center;
}

.project-thumb-2 {
  background-size: cover;
  background-position: center;
}

.project-thumb-3 {
  background-size: cover;
  background-position: center;
}

.project-thumb-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 255, 71, 0.1);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(232, 255, 71, 0.2);
}

.project-info {
  padding: 28px;
}

.project-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.project-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  font-size: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  color: var(--muted);
  border: 1px solid var(--border);
}

.project-link {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.project-link:hover {
  gap: 10px;
}

/* WHY ME SECTION — 4 numbered cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
  margin-top: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.why-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  transition: all 0.25s;
}

.why-card:hover {
  border-color: rgba(232, 255, 71, 0.15);
  background: rgba(232, 255, 71, 0.02);
}

.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(232, 255, 71, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.why-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.why-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* PROCESS SECTION */
.process {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: flex;
  gap: 0;
  margin-top: 52px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  min-width: 0;

}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* CONTACT SECTION */
/* .contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-title {
  margin: 0 auto 16px;
}

.contact-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 44px;
}

.contact-sub strong {
  color: var(--text);
  font-weight: 500;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-btn:hover {
  border-color: rgba(232, 255, 71, 0.25);
  transform: translateY(-2px);
  background: rgba(232, 255, 71, 0.03);
}

.contact-btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.15);
}

.li {
  background: rgba(10, 102, 194, 0.1);
  border: 1px solid rgba(10, 102, 194, 0.15);
}

.em {
  background: rgba(124, 108, 252, 0.1);
  border: 1px solid rgba(124, 108, 252, 0.15);
}

.contact-btn-text {
  flex: 1;
  text-align: left;
}

.contact-btn-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-btn-value {
  font-weight: 500;
}

.contact-btn-arrow {
  color: var(--muted);
  transition: transform 0.2s;
}

.contact-btn:hover .contact-btn-arrow {
  transform: translateX(4px);
} */


/* FAQ */
.faq {
  background: var(--bg2);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--card);
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
  cursor: pointer;
}

.faq-item.open {
  border-color: var(--lime);
}

.faq-q {
  padding: 24px 28px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--lime);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 28px 24px;
}

.faq-cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  position: sticky;
  top: 100px;
}

.faq-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-cta-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 28px;
}

.faq-cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.faq-cta-li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #aaa;
}

.faq-cta-li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
}

/* ─── SECTION WRAPPER ─── */
.contact-section {
  padding: 110px 40px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(200, 241, 53, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(200, 241, 53, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ─── HEADER ─── */
.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--lime);
}

.section-sub {
  font-size: 17px;
  color: #888;
  line-height: 1.6;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 60px;
}

/* ─── LAYOUT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* ─── LEFT INFO ─── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.info-card:hover {
  border-color: var(--lime);
  transform: translateX(6px);
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-icon.mail {
  background: rgba(200, 241, 53, 0.1);
  border: 1px solid rgba(200, 241, 53, 0.2);
}

.info-icon.wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.info-icon.li {
  background: rgba(10, 102, 194, 0.15);
  border: 1px solid rgba(10, 102, 194, 0.2);
}

.info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.info-note {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--green);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}

.response-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

/* ─── RIGHT FORM ─── */
.form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-dim));
}

.form-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 241, 53, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field-group label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666;
  font-weight: 600;
}

.field-group input,
.field-group select,
.field-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
  -webkit-appearance: none;
}

.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.field-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.field-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--lime);
  background: rgba(200, 241, 53, 0.03);
  box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.08);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #444;
}

/* Budget chips */
.budget-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: #777;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
}

.chip:hover {
  border-color: rgba(200, 241, 53, 0.5);
  color: #bbb;
}

.chip.selected {
  background: rgba(200, 241, 53, 0.12);
  border-color: var(--lime);
  color: var(--lime);
}

/* Submit */
.btn-submit {
  width: 100%;
  background: var(--lime);
  color: var(--black);
  border: none;
  padding: 17px 36px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: var(--lime-dim);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200, 241, 53, 0.25);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit .arrow {
  transition: transform 0.25s;
}

.btn-submit:hover .arrow {
  transform: translateX(5px);
}

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: #444;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note svg {
  color: var(--lime);
  flex-shrink: 0;
}

/* ─── SUCCESS STATE ─── */
.success-state {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(200, 241, 53, 0.1);
  border: 1px solid rgba(200, 241, 53, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.success-title {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.success-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-reset {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}

.btn-reset:hover {
  border-color: var(--lime);
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-tooltip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  color: #aaa;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  max-width: 220px;
  text-align: right;
}

.wa-tooltip strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
  font-size: 14px;
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.45);
}

.wa-btn:hover~.wa-tooltip,
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--lime);
  border-radius: 50%;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: var(--black);
}



/* FOOTER */
footer {
  padding: 36px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--muted);
}

.footer-logo span {
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;

}

/* SCROLL REVEAL ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

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

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

@media (max-width: 860px) {
  .contact-section {
    padding: 70px 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-wrap {
    padding: 36px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* .wa-float        { bottom: 20px; right: 20px; } */
}

@media(max-width:960px) {
  .wwa {
    padding: 80px 28px 100px;
  }

  .inner {
    grid-template-columns: 1fr !important;
    gap: 60px;
  }
}

@media(min-width: 961px) {
  .reveal.from-left {
    transform: translateX(-28px);
  }

  .reveal.from-right {
    transform: translateX(28px);
  }
}

@media(max-width:540px) {
  .headline {
    font-size: 40px;
  }

  .hero-stat-row {
    gap: 16px;
  }

  .g-items {
    gap: 12px;
  }
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-cta-box {
    position: static;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-steps::before {
    display: none;
  }
}

/* RESPONSIVE — MOBILE BREAKPOINT */
@media (max-width: 768px) {

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  nav {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  section {
    padding: 70px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-cta-box {
    position: static;
    padding: 28px 24px;
  }

  /* services / why single column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* section padding tighter */
  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 90px 20px 50px;
  }

  /* contact full width */
  .contact-options {
    max-width: 100%;
  }

  .contact-btn {
    padding: 16px 18px;
  }

  /* footer */
  footer {
    padding: 28px 20px;
  }
}

/* SMALL PHONES 480px */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(26px, 8vw, 36px);
    letter-spacing: -1px;
  }

  .service-hero {
    padding: 22px 18px 20px;
  }

  .hero-service-name {
    font-size: 20px;
  }

  .section-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .service-card {
    padding: 22px 18px;
  }

  .project-info {
    padding: 20px;
  }

  .why-card {
    padding: 22px 18px;
  }

  .faq-cta-box {
    padding: 22px 18px;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 14px;
    padding: 12px 20px;
  }
}