/* ============================================
   HIGH TICKET LANDING - WASO GROWTH
   Ultra Modern | Monochrome | Premium
   ============================================ */

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

:root {
  --black: #0A0A0A;
  --gray-900: #171717;
  --gray-800: #262626;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* ============ CURSOR CUSTOM ============ */
.cursor,
.cursor-follower {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s var(--ease-out-expo);
}

.cursor {
  background: var(--white);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
  background: transparent;
  transition: transform 0.3s var(--ease-out-expo),
              width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo);
}

@media (max-width: 1024px) {
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ============ CONTAINERS ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-small {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container,
  .container-small {
    padding: 0 1.5rem;
  }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s var(--ease-smooth),
              border-color 0.3s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  transition: opacity 0.3s var(--ease-smooth);
}

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

.nav-logo:hover {
  opacity: 0.7;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  transition: opacity 0.3s var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.4s var(--ease-out-expo);
}

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

.nav-cta {
  padding: 0.625rem 1.5rem;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s var(--ease-out-expo);
}

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

.nav-cta-arrow {
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-cta:hover .nav-cta-arrow {
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--gray-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.4s var(--ease-out-expo);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

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

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--gray-400);
  max-width: 720px;
  margin: 0 auto 4rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 1s both;
}

.hero-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  max-height: 800px;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
}

.visual-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  transform: rotate(45deg);
}

.grid-item {
  background: linear-gradient(135deg, var(--white) 0%, transparent 100%);
  animation: gridPulse 4s ease-in-out infinite;
}

.grid-item:nth-child(1) { animation-delay: 0s; }
.grid-item:nth-child(2) { animation-delay: 1s; }
.grid-item:nth-child(3) { animation-delay: 2s; }
.grid-item:nth-child(4) { animation-delay: 3s; }

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.5rem 4rem;
  }

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

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.btn:hover .btn-bg {
  transform: translateX(0);
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.0625rem;
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

/* ============ SECTIONS ============ */
section {
  padding: 8rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 5rem;
}

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

  .section-header-center {
    margin-bottom: 3rem;
  }
}

/* ============ VALUE SECTION ============ */
.value-section {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.value-header {
  max-width: 720px;
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.value-card {
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

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

.value-icon {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.value-text {
  color: var(--gray-400);
  line-height: 1.7;
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
}

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

/* ============ SERVICES SECTION ============ */
.services-list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s var(--ease-smooth);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  padding-left: 2rem;
}

.service-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gray-800);
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-description {
  color: var(--gray-400);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s var(--ease-smooth);
}

.tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }

  .service-number {
    font-size: 3rem;
  }
}

/* ============ PROCESS TIMELINE ============ */
.process-section {
  background: var(--black);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 10%,
    rgba(255, 255, 255, 0.15) 90%,
    transparent 100%
  );
}

.timeline-item {
  position: relative;
  padding: 2.5rem 0 2.5rem 2.5rem;
  border-left: none;
}

.timeline-marker {
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 50%;
  position: absolute;
  left: -3.9rem;
  top: 3rem;
  box-shadow: 0 0 0 6px var(--black);
  transition: all 0.3s var(--ease-out-expo);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px var(--black), 0 0 20px rgba(255, 255, 255, 0.3);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s var(--ease-out-expo);
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.timeline-phase {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.timeline-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.timeline-text {
  color: var(--gray-400);
  font-size: 1.0625rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 2.5rem;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    padding-left: 2rem;
  }

  .timeline-marker {
    left: -3.4rem;
  }

  .timeline-content {
    padding: 2rem 1.5rem;
  }

  .timeline-title {
    font-size: 1.5rem;
  }
}

/* ============ CASES SECTION ============ */
.cases-section {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.case-card {
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

.case-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

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

.case-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.case-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.case-description {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.case-metric {
  text-align: center;
}

.metric-value {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

  .case-card {
    padding: 2.5rem 2rem;
  }

  .case-metrics {
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .metric-value {
    font-size: 1.75rem;
  }

  .metric-label {
    font-size: 0.75rem;
  }
}

/* ============ PRICING SECTION ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-card {
  padding: 3rem 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  border-radius: 24px;
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: var(--white);
  color: var(--black);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-300);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pricing-features li::before {
  content: '✓';
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.pricing-card-featured .pricing-cta {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.pricing-card-featured .pricing-cta:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}

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

/* ============ FAQ SECTION ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.3s var(--ease-smooth);
}

.faq-question:hover {
  opacity: 0.8;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 2rem;
}

.faq-answer p {
  color: var(--gray-400);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 10rem 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--gray-900) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 6rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* ============ FOOTER ============ */
.footer {
  padding: 6rem 0 2.5rem;
  background: var(--gray-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 420px;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  color: var(--gray-500);
}

.footer-column a {
  display: block;
  color: var(--gray-300);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  padding-left: 0;
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  transition: color 0.3s var(--ease-smooth);
}

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

@media (max-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: all 0.3s var(--ease-out-expo);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ SCROLL REVEAL ============ */
[data-scroll] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-out-expo);
}

[data-scroll].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ UTILITIES ============ */
::selection {
  background: var(--white);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}
