:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #161616;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --off-white: #e8e4de;
  --muted: #666;
  --muted2: #999;
  --accent: #FBB03C;
  --accent2: #4a319a;
  --secondary-color: #820080;
  --playfair: 'Playfair Display', Georgia, serif;
  --archivo: 'Archivo', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--archivo);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

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

/* Custom cursor */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(251 176 60 / 40%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* Nav */
nav#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--border) !important;
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--playfair);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo img {
  width: 105px;
  height: auto;
}

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

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

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 10px 22px;
  font-weight: 600 !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent2) !important;
  color: #fff !important;
}

/* Mobile Nav Toggle */
#mainNav .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

#mainNav .nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

#mainNav .nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0px, 4px);
}

#mainNav .nav-toggle.active span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -5px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px 48px 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(130, 0, 128, 0.55) 0%, rgba(130, 0, 128, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: orb-pulse 6s ease-in-out infinite;
  z-index: -1;
}

.hero-shape-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgb(51, 70, 165, 0.35)0%, rgba(130, 0, 128, 0) 70%);
  top: 200px;
  left: 0;
  pointer-events: none;
  animation: orb-pulse 6s ease-in-out infinite;
  z-index: -1;
}


.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s 0.2s forwards;
}

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

.hero-headline {
  font-family: var(--playfair);
  font-size: clamp(44px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  max-width: 900px;
  opacity: 0;
  animation: fade-up 0.8s 0.4s forwards;
}

.hero-headline em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

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

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  opacity: 0;
  animation: fade-up 0.8s 0.6s forwards;
}

.hero-bottom-content .btn-hero {
  margin-top: 25px;
}

.hero-bottom {
  padding-bottom: 90px;
}

/* .hero-actions .btn-hero {
  opacity: 0;
  visibility: hidden;
} */

.hero-sub {
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
  max-width: 400px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--archivo);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, gap 0.2s, color 0.2s;
  white-space: nowrap;
  border: none;
  cursor: none;
}

.btn-hero:hover {
  background: var(--accent2);
  gap: 18px;
  color: #fff;
}

.btn-hero-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}

.btn-hero:hover .btn-hero-arrow {
  transform: translateX(4px);
}

.hero-scroll-hint {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 85%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scroll-anim 2s ease-in-out infinite;
}

nav#mainNav .nav-links .nav-icons {
  border-left: 1px solid #373737;
  padding: 5px 0px 5px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}

nav#mainNav .nav-links .nav-icons img {
  transition: 0.3s;
}

nav#mainNav .nav-links .nav-icons a:hover img {
  opacity: 0.6;
}

a.btn-whatsapp {
  display: flex;
  align-items: center;
  clip-path: unset;
  background: linear-gradient(90.88deg, #820080 -50.93%, rgba(130, 0, 128, 0) 107.15%);
  padding: 8px 8px 8px 30px;
  border-radius: 100px;
  line-height: 1.5;
  backdrop-filter: blur(4px);
}

a.btn-whatsapp .btn-text {
  color: #fff;
  text-transform: none;
  font-weight: 500;
  font-size: 22px;
  margin-right: 35px;
}

a.btn-whatsapp .btn-text span {
  display: block;
  font-style: italic;
  font-size: 14px;
}

a.btn-whatsapp .btn-whatsapp-icon {
  display: flex;
  align-items: center;
  padding: 8px;
  background: #8200804D;
  border-radius: 60px;
}

a.btn-whatsapp:hover {
  background: linear-gradient(90.88deg, #820080 -50.93%, rgba(130, 0, 128, 0) 107.15%);
  gap: 12px;
  color: #fff;
}



/* Stats ticker */
.stats-ticker {
  background: var(--secondary-color);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: var(--archivo);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.4;
}


/* Sections */
section {
  padding: 100px 48px;
  position: relative;
}

.bg-ovarlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  z-index: 1;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* Numbers strip */
.numbers-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border);
}

.number-block {
  background: var(--surface);
  padding: 40px 48px;
  position: relative;
}

.number-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 48px;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.number-block:hover::after {
  transform: scaleX(1);
}

.number-val {
  font-family: var(--playfair);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.number-val span {
  color: var(--white);
}

.number-label {
  font-size: 13px;
  color: rgb(255 255 255 / 75%);
  font-weight: 300;
}

/* Services */
.services-section {
  background: var(--bg);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.services-title {
  font-family: var(--playfair);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* .services-title em {
  font-style: italic;
  color: var(--accent);
} */

.services-desc {
  font-size: 15px;
  color: var(--white);
  line-height: 1.8;
}

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

.service-card {
  background: var(--surface);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--surface2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: var(--playfair);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.service-name {
  font-family: var(--playfair);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border2);
  color: var(--muted2);
}

/* Process */
.process-section {
  background: var(--surface);
  background: linear-gradient(145deg, #111111 70%, rgb(71 52 156 / 60%) 130%);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: 0.3s !important;
}

.process-item:first-child {
  border-top: 1px solid var(--border);
}

.process-item:hover {
  padding-left: 16px;
}

.process-item-num {
  font-family: var(--playfair);
  font-size: 48px;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.3s;
}

.process-item:hover .process-item-num {
  color: var(--accent);
}

.process-item-body h3 {
  font-family: var(--playfair);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.process-item-body p {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.6;
}

.process-item-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border2);
  padding: 6px 14px;
  white-space: nowrap;
}

/* Results */
.results-section {
  background: var(--bg);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.result-card {
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: rgba(200, 245, 66, 0.04);
  transition: height 0.4s;
}

.result-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.result-card:hover::after {
  height: 100%;
}

.result-brand {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.result-number {
  font-family: var(--playfair);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.result-desc {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
}

.result-color-1 {
  background-color: #8200804D;
}

.result-color-2 {
  background-color: #0172BD1A;
}

.result-color-3 {
  background-color: #FBB03C1A;
}


/* Testimonial */
.testimonial-section {
  background-image: url(https://ui.360elevate.store/wp-content/uploads/2026/04/12e674741d54a5d551dc4504e5b062b95ac5accb.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.testimonial-section .bg-ovarlay {
  background: linear-gradient(90deg, #49329B 0%, #0B69B8 100%);
  opacity: 1;
  mix-blend-mode: multiply;
}

.testimonial-section > div:not(.bg-ovarlay) {
  position: relative;
  z-index: 9;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-mark {
  font-family: var(--playfair);
  font-size: 120px;
  line-height: 0.6;
  color: rgb(255 255 255 / 75%);
  margin-bottom: 24px;
  display: block;
}

.testimonial-text {
  font-family: var(--playfair);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: rgb(255 255 255 / 60%);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 12px;
  color: rgb(255 255 255 / 40%);
  margin-top: 4px;
}

/* Pricing */
.pricing-section {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

.plan {
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
  transition: border-color 0.3s;
  background-color: #0E65B514;
}

.plan:hover {
  border-color: var(--border2);
}

.plan.featured {
  border-color: var(--accent);
  background: transparent;
  box-shadow: 0px 4px 14px 0px rgb(251 176 60 / 20%);
}

.plan-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-featured-badge {
  background: var(--secondary-color);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  letter-spacing: 0.1em;
}

.plan-price {
  font-family: var(--playfair);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.plan-price sup {
  font-size: 24px;
  margin-top: 14px;
  font-family: var(--archivo);
  font-weight: 300;
}

.plan-period {
  font-size: 13px;
  color: var(--white);
  margin-top: 15px;
  margin-bottom: 36px;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.plan-features li {
  font-size: 14px;
  color: var(--muted2);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.plan-features li::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.strong {
  color: var(--white);
  font-weight: 400;
}

.btn-plan {
  width: 100%;
  padding: 16px;
  font-family: var(--archivo);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.2s;
  border: none;
}

.btn-plan.outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--white);
}

.btn-plan.outline:hover {
  border-color: var(--white);
}

.btn-plan.fill {
  background: var(--accent);
  color: var(--bg);
}

.btn-plan.fill:hover {
  background: var(--accent2);
  color: #fff;
}

#pricing .btn-plan {
  display: block;
  text-align: center;
}


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

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  cursor: none;
}

.faq-question {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.5;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 14px;
  color: var(--muted2);
  transition: all 0.3s;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.faq-answer {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 16px;
}

/* CTA */
.cta-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  /* content: 'CONVERT'; */
  content: 'CONTACT US';
  position: absolute;
  font-family: var(--playfair);
  font-size: 150px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.cta-title {
  font-family: var(--playfair);
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-headline .accent-word,
.services-title em,
.cta-title em {
  font-style: italic;
  color: var(--accent);
  background: linear-gradient(90deg, #49329B 0%, #0B69B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0px 7px;
}

.cta-sub {
  font-size: 16px;
  color: var(--muted2);
  margin-bottom: 48px;
}

#cta .cta-title {
  max-width: 1000px;
  margin: 0 auto;
}


/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--playfair);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

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

.footer-links {
  display: flex;
  gap: 28px;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  border-bottom: 1px solid transparent;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 12px;
  color: rgb(255 255 255 / 75%);
}

.footer-brand img {
  width: 122px;
  height: auto;
}


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

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


.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 99;
}



/* Responsive */
@media (max-width: 1366px) {

  section.hero {
    padding-top: 180px;
  }

  h1.hero-headline {
    font-size: clamp(44px, 8vw, 88px);
  }

}


@media (max-width: 1024px) {

  .plan-price,
  .number-val {
    font-size: 40px;
  }

}


@media (max-width: 768px) {

  #mainNav .nav-toggle {
    display: flex;
  }

  #mainNav .nav-links {
    position: fixed;
    top: 0;
    /* keep full height slide */
    right: 0;
    height: 100vh;
    width: 280px;

    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-left: 1px solid var(--border);

    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 30px 40px;
    gap: 24px;

    transform: translateX(100%);
    transition: transform 0.4s ease, background 0.3s;
    z-index: 100;
  }

  #mainNav .nav-links.active {
    transform: translateX(0);
  }

  /* When nav is scrolled → keep visual consistency */
  nav.scrolled .nav-links {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
  }

  /* Optional overlay */
  body .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
  }

  body .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  nav#mainNav .nav-links .nav-icons {
    padding-left: 0;
    border-left: 0;
  }

  .nav-logo img {
    width: 76px;
    height: auto;
  }

  nav#mainNav {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero,
  section,
  .cta-section {
    padding: 60px 20px;
  }

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

  .numbers-strip {
    padding: 20px;
  }

  footer {
    flex-direction: column;
  }
}


@media (max-width: 640px) {
  
  section.hero {
    padding-top: 72px;
    min-height: 95vh;
  }

  .floating-buttons {
    right: 10px;
    bottom: 10px;
  }
  
  a.btn-whatsapp {
    padding: 0;
  }

  a.btn-whatsapp .btn-text {
    font-size: 16px;
    display: none;
  }

  a.btn-whatsapp .btn-whatsapp-icon img {
    width: 32px;
  }

  a.btn-whatsapp .btn-whatsapp-icon {
    padding: 10px;
  }

  .hero-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hero-bottom {
    padding-bottom: 60px;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .floating-buttons {
    position: fixed;
    right: 5px;
    bottom: 10px;
    z-index: 99;
  }

  a.btn-whatsapp .btn-text span {
    font-size: 12px;
  }

  .number-block {
    padding: 25px;
  }

  .plan-price, .number-val {
    font-size: 34px;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

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

  .service-card:last-child > div {
    grid-template-columns: 1fr !important;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-item:hover {
    padding-left: 0;
  }

  .process-item .process-item-tag {
    max-width: 140px;
    text-align: center;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .footer-links {
    gap: 20px;
    padding: 12px 12px;
  }

}


/* Keyframes */
@keyframes orb-pulse {

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

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@keyframes scroll-anim {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

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

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

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

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