/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --white: #ffffff;
  --white80: rgba(255, 255, 255, 0.8);
  --white40: rgba(255, 255, 255, 0.4);
  --white15: rgba(255, 255, 255, 0.15);
  --white08: rgba(255, 255, 255, 0.08);
  --white05: rgba(255, 255, 255, 0.05);
  --accent: #ffffff;
  --accent2: #c8ff00;
  --border: rgba(255, 255, 255, 0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-circle {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, background 0.3s;
  backdrop-filter: blur(0px);
}

.cursor-circle.hover {
  width: 70px;
  height: 70px;
  border-color: var(--accent2);
  background: rgba(200, 255, 0, 0.08);
}

.cursor-circle.click {
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.2);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--white15);
  border-radius: 2px;
}

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

.section-pad {
  padding: 8rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white40);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.section-sub {
  color: var(--white40);
  max-width: 540px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #0a0a0a;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: none;
  cursor: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 255, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::after {
  opacity: 1;
}

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white80);
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  cursor: none;
  transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
  border-color: var(--white40);
  color: white;
  background: var(--white08);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: none;
}

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

.nav-links a {
  font-size: 0.9rem;
  color: var(--white40);
  cursor: none;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s var(--ease);
}
.classs{
  display: none;
}
.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: white;
  color: #0a0a0a;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.open a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-cta {
  color: var(--accent2) !important;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 4rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--white40);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s var(--ease) both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-title .line:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-title .line:nth-child(2) {
  animation-delay: 0.2s;
}

.accent-line {
  color: var(--white40);
}

.hero-sub {
  color: var(--white40);
  max-width: 560px;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeLeft 25s linear infinite;
  font-size: 0.85rem;
  color: var(--white40);
  letter-spacing: 0.05em;
}

.marquee-track span {
  flex-shrink: 0;
}

.dot {
  color: var(--accent2) !important;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }

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

/* Hero Visual */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hero-img-wrap:hover img {
  transform: scale(1.04);
}

.hero-badge-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
}

.hero-badge-float span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.hero-badge-float p {
  font-size: 0.75rem;
  color: var(--white40);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s;
  flex: 1;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--white40);
}

.stat-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.stat-card p {
  font-size: 0.8rem;
  color: var(--white40);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ===== REVEAL ON SCROLL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg2);
}

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

.about-left p {
  color: var(--white40);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.about-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--white40);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.about-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about-card p {
  font-size: 0.85rem;
  color: var(--white40);
}

/* ===== RESULTS ===== */
.results-slider {
  overflow: hidden;
  padding: 2rem 0 3rem;
  position: relative;
}

.results-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2.5rem;
  transition: transform 0.5s var(--ease);
}

.result-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.result-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent2);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.result-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.result-card:hover img {
  transform: scale(1.05);
}

.result-info {
  padding: 1.5rem;
}

.result-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.result-info p {
  font-size: 0.85rem;
  color: var(--white40);
  margin-bottom: 1rem;
}

.result-stats {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.result-stats span {
  font-size: 0.8rem;
  color: var(--accent2);
  border: 1px solid rgba(200, 255, 0, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  width: fit-content;
}

.slider-nav {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: none;
  transition: all 0.3s;
}

.slider-btn:hover {
  background: white;
  color: #0a0a0a;
  transform: scale(1.1);
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg2);
}

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

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

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

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white08);
  line-height: 1;
  margin-bottom: 2rem;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--white40);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.step-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step-content li {
  font-size: 0.85rem;
  color: var(--white40);
  padding-left: 1rem;
  position: relative;
}

.step-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent2);
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--white15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.feature-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent2);
  border: 1px solid rgba(200, 255, 0, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--white40);
}
.features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.feature-card-new:hover {
  transform: translateY(-8px);
  border-color: var(--white15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.feature-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.75);
}

.feature-card-new:hover .feature-card-img img {
  transform: scale(1.07);
  filter: brightness(0.6);
}

.feature-card-img .feature-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
}

.feature-card-body {
  padding: 1.5rem;
  position: relative;
}

.feature-svg-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 255, 0, 0.08);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #c8ff00;
  transition: background 0.3s, transform 0.3s;
}

.feature-card-new:hover .feature-svg-icon {
  background: rgba(200, 255, 0, 0.15);
  transform: scale(1.05);
}

.feature-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: white;
}

.feature-card-body p {
  font-size: 0.85rem;
  color: var(--white40);
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--bg2);
}

.benefits-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.benefits-tags span {
  font-size: 0.8rem;
  color: var(--white40);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: all 0.3s;
  cursor: default;
}

.benefits-tags span:hover {
  color: white;
  border-color: var(--white40);
  background: var(--white08);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
}

.bento-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--white15);
}

.bento-large {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 220px;
}

.bento-large h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.bento-large p {
  color: var(--white40);
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.bento-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.bento-bg-img {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  opacity: 0.8;
}

.bento-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent2);
  border: 1px solid rgba(200, 255, 0, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.bento-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bento-card p {
  font-size: 0.85rem;
  color: var(--white40);
}

.bento-img {
  width: 100%;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  height: 120px;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.bento-card:hover .bento-img {
  opacity: 1;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay span {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.portfolio-tags span {
  font-size: 0.7rem;
  color: var(--white40);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.portfolio-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.portfolio-year {
  font-size: 0.8rem;
  color: var(--white40);
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

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

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card.featured {
  border-color: var(--white15);
  background: linear-gradient(135deg, var(--bg3), rgba(200, 255, 0, 0.03));
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--white40);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

.service-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--white40);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.per {
  font-size: 0.85rem;
  color: var(--white40);
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-meta span {
  font-size: 0.82rem;
  color: var(--white40);
  padding-left: 1rem;
  position: relative;
}

.service-meta span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-size: 0.7rem;
}

/* ===== GALLERY ===== */
.gallery {
  overflow: hidden;
  padding: 4rem 0;
}

.gallery .container {
  margin-bottom: 3rem;
}

.gallery-row {
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.gallery-track img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.gallery-track img:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.gallery-left {
  animation: galleryLeft 30s linear infinite;
}

.gallery-right {
  animation: galleryRight 30s linear infinite;
}

@keyframes galleryLeft {
  0% {
    transform: translateX(0);
  }

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

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

  100% {
    transform: translateX(0);
  }
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 3rem auto 0;
}

.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.pricing-card.premium {
  border-color: var(--white40);
  background: linear-gradient(135deg, var(--bg3), rgba(255, 255, 255, 0.03));
  position: relative;
}

.pricing-card.premium::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent2);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.pricing-label {
  font-size: 0.75rem;
  color: var(--white40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.big-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
}

.period {
  font-size: 0.85rem;
  color: var(--white40);
}

.pricing-orig {
  font-size: 0.85rem;
  color: var(--white40);
  text-decoration: line-through;
  margin-bottom: 1rem;
}

.pricing-card>p {
  color: var(--white40);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--white80);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg2);
}

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

.testi-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.3s var(--ease), border-color 0.3s;
  position: relative;
  height: 280px;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--white15);
}

.stars {
  color: var(--accent2);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testi-card>p {
  color: var(--white80);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: absolute;
  bottom: 25px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  background: var(--white15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--white40);
}

/* ===== FAQ ===== */
.faq .container {
  max-width: 720px;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--white15);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1.3rem 1.5rem;
  text-align: left;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-q span {
  font-size: 1.3rem;
  color: var(--accent2);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a p {
  padding: 0 1.5rem 1.3rem;
  color: var(--white40);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 200px;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-title {
  margin-bottom: 1.5rem;
}

.cta-inner p {
  color: var(--white40);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--white40);
  font-size: 0.85rem;
  margin: 1.2rem 0;
  line-height: 1.7;
}

.footer-sales {
  font-size: 0.8rem;
  color: var(--white40);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  width: fit-content;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white40);
  margin-bottom: 1.2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--white40);
  cursor: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--white40);
}


.footer-bottom div {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a {
  color: var(--white40);
  cursor: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: white;
}

/* ===== PAGE LOAD OVERLAY ===== */
.page-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.page-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  overflow: hidden;
}

.loader-text span {
  display: inline-block;
  animation: loaderUp 0.6s var(--ease) 0.2s both;
}

@keyframes loaderUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.form-input.error {
  border: 2px solid #ff4444 !important;
  outline: none;
}

.form-input.error::placeholder {
  color: #ff4444;
}



/* ===== RESPONSIVE ===== */

/* Prevent ALL horizontal scroll globally */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

/* ===== 1024px ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 3rem auto 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ===== 768px ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
    width: 100%;
  }

  /* --- Navbar --- */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .navbar {
    padding: 1rem;
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  /* --- General --- */
  .section-pad {
    padding: 4rem 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    word-break: break-word;
  }

  /* --- Hero --- */
  .hero {
    padding: 6rem 1rem 3rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 0.72rem;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
    word-break: break-word;
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    width: 100%;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-img-wrap {
    height: 240px;
    width: 100%;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: 100%;
  }

  .stat-card {
    padding: 1rem;
    flex: 1;
    min-width: 0;
  }

  .stat-card h3 {
    font-size: 1.4rem;
  }

  /* --- Marquee --- */
  .marquee-wrap {
    width: 100%;
  }

  /* --- About --- */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .about-card {
    padding: 1.2rem;
  }

  /* --- Results slider (intentionally scrollable) --- */
  .results-slider {
    overflow: hidden;
  }

  .results-track {
    padding: 0 1rem;
  }

  .result-card {
    width: 260px;
    flex-shrink: 0;
  }

  /* --- Process --- */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step {
    padding: 0;
  }

  /* --- Features / Services cards --- */
  .features-grid,
  .features-grid-new {
    grid-template-columns: 1fr;
    width: 100%;
  }

  /* --- Benefits Bento --- */
  .bento-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .bento-large {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .bento-large h3 {
    font-size: 1.3rem;
  }

  .bento-bg-img {
    width: 100%;
    height: 180px;
  }

  .bento-btns {
    flex-direction: column;
    width: 100%;
  }

  .bento-btns .btn-primary,
  .bento-btns .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
  }

  /* --- Portfolio --- */
  .portfolio-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .portfolio-img-wrap {
    height: 220px;
  }

  /* --- Services packages --- */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
  }

  .service-card {
    padding: 1.5rem;
    width: 100%;
  }

  /* --- Pricing --- */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
  }

  .pricing-card {
    padding: 2rem;
    width: 100%;
  }

  .pricing-card.premium::before {
    font-size: 0.65rem;
  }

  /* --- Testimonials --- */
  .testi-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .testi-card {
    height: auto;
    min-height: unset;
    padding-bottom: 1.5rem;
  }

  .testi-author {
    position: static;
    margin-top: 1rem;
  }

  /* --- FAQ --- */
  .faq .container {
    max-width: 100%;
  }

  .faq-q {
    font-size: 0.88rem;
    padding: 1.1rem 1rem;
  }

  /* --- Contact (overrides inline style too) --- */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .form-input {
    width: 100%;
    max-width: 100%;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  /* --- Cursor off --- */
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-circle {
    display: none;
  }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 0.9rem;
    width: 100%;
  }

  .navbar {
    padding: 0.9rem;
  }

  .hero {
    padding: 5.5rem 0.9rem 2.5rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.7rem;
  }

  .stat-card {
    width: 100%;
  }

  .hero-img-wrap {
    height: 200px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 3rem 0;
  }

  .section-title {
    font-size: clamp(1.4rem, 7.5vw, 1.9rem);
  }

  .mobile-menu a {
    font-size: 1.8rem;
  }

  .result-card {
    width: 240px;
  }

  .gallery-track img {
    width: 190px;
    height: 130px;
  }

  .bento-large h3 {
    font-size: 1.15rem;
  }

  .testi-card {
    padding: 1.3rem;
  }

  .footer-bottom {
    font-size: 0.74rem;
  }

  .pricing-card {
    padding: 1.6rem;
  }

  .service-card {
    padding: 1.3rem;
  }

  .about-card {
    padding: 1.1rem;
  }

  .feature-card-body {
    padding: 1.2rem;
  }

  .btn-primary,
  .btn-ghost {
    padding: 0.75rem 1.3rem;
    font-size: 0.84rem;
  }
}
