/* thedistance.design - Instagram Palette (Dark) */
:root {
  --ig-purple: #833AB4;
  --ig-pink: #E1306C;
  --ig-orange: #F77737;
  --ig-yellow: #FCAF45;
  --ig-gradient: linear-gradient(135deg, var(--ig-yellow), var(--ig-orange), var(--ig-pink), var(--ig-purple));
  --ig-gradient-hover: linear-gradient(135deg, #fdc058, #f88a4e, #e84478, #9445c4);

  --black: #f5f5f5;
  --gray: #0a0a0a;
  --white: #f5f5f5;
  --border: #262626;

  --text-primary: #ededed;
  --text-muted: #a0a0a0;
  --bg-light: var(--gray);
  --bg-white: var(--white);

  /* Keep semantic aliases for compat */
  --accent: var(--ig-pink);
  --accent-dark: #c42760;
  --navy: #0a0a0a;
  --bg-dark: #111111;
  --bg-darker: #0a0a0a;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--gray);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
}

/* Price Highlight */
.price-highlight {
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--ig-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.3);
}

.btn-primary:hover {
  background: var(--ig-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--border);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-primary {
  background: transparent;
  color: var(--ig-pink);
  border: 2px solid var(--ig-pink);
}

.btn-outline-primary:hover {
  background: var(--ig-gradient);
  color: #fff;
  border-color: transparent;
}

.btn-light {
  background: var(--ig-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.3);
}

.btn-light:hover {
  background: var(--ig-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
  color: #fff;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-cta {
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-cta:hover::after {
  left: 100%;
}

/* Navbar */
.navbar {
  background: rgba(10, 10, 10, 0.9);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand i {
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
}

.navbar .nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: 0.5rem 1.25rem !important;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.navbar .nav-link:hover {
  color: var(--ig-pink) !important;
}

.navbar-toggler {
  border: 1px solid var(--border);
  padding: 8px 12px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f5f5f5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  background: var(--gray);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 85% 10%, rgba(131, 58, 180, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 10% 80%, rgba(252, 175, 69, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 75% 85%, rgba(225, 48, 108, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 20% 15%, rgba(247, 119, 55, 0.1) 0%, transparent 20%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 48, 108, 0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--black);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-muted);
}

/* Badge */
.badge-limited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(131, 58, 180, 0.15);
  color: #a855f7;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(131, 58, 180, 0.25);
}

/* Counter Section */
.counter-section {
  background: rgba(22, 22, 22, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  margin-top: 32px;
  backdrop-filter: blur(10px);
}

.counter-wrapper {
  text-align: center;
}

.counter-number {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.counter-urgency {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.counter-urgency i {
  color: var(--ig-orange);
}

/* Sections */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--ig-gradient);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* Background Variations */
.bg-light-section {
  background: var(--white);
  color: #262626;
}

.bg-light-section h2,
.bg-light-section h3,
.bg-light-section h4 {
  color: #262626;
}

.bg-light-section p,
.bg-light-section .lead,
.bg-light-section .section-header p {
  color: #6b6b6b;
}

.bg-light-section .feature-card,
.bg-light-section .usecase-card,
.bg-light-section .why-item,
.bg-light-section .accordion-item {
  background: #fff;
  border-color: #e0e0e0;
}

.bg-light-section .accordion-button {
  background: #fff;
  color: #262626;
}

.bg-light-section .accordion-button:not(.collapsed) {
  background: #fff;
  color: #262626;
}

.bg-light-section .feature-card p,
.bg-light-section .usecase-card p,
.bg-light-section .why-text p,
.bg-light-section .accordion-body {
  color: #6b6b6b;
}

.bg-light-section .feature-card .icon-wrapper {
  background: rgba(225, 48, 108, 0.08);
}

.bg-light-section .usecase-card .icon-wrapper {
  background: rgba(131, 58, 180, 0.08);
}

.bg-light-section .need-item span,
.bg-light-section .step-card h4 {
  color: #262626;
}

.bg-light-section .step-card p,
.bg-light-section .counter-label,
.bg-light-section .counter-urgency {
  color: #6b6b6b;
}

.bg-dark-section {
  background: var(--gray);
  color: var(--text-primary);
}

.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: var(--black);
}

.bg-dark-section p {
  color: var(--text-muted);
}

.bg-dark-section .section-header p {
  color: var(--text-muted);
}

.bg-white {
  background: var(--gray);
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ig-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(225, 48, 108, 0.15);
  border-color: transparent;
}

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

.feature-card .icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(225, 48, 108, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
  background: var(--ig-gradient);
}

.feature-card .icon-wrapper i {
  font-size: 1.75rem;
  color: var(--ig-pink);
  transition: color 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
  color: #fff;
}

.feature-card h4 {
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Steps */
.steps-container {
  position: relative;
}

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

.step-card {
  text-align: center;
  padding: 20px 10px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: var(--ig-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 32px rgba(225, 48, 108, 0.35);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(225, 48, 108, 0.25);
}

.step-card h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.step-card p {
  margin-bottom: 0;
  line-height: 1.7;
  color: var(--text-muted);
}

/* What We Need */
.what-we-need {
  margin-top: 64px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 48px;
}

.what-we-need h3 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #262626;
}

.what-we-need h3 i {
  color: var(--ig-orange);
}

.need-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.need-item:hover {
  background: rgba(225, 48, 108, 0.06);
  border-color: rgba(225, 48, 108, 0.15);
}

.need-item i {
  font-size: 1.5rem;
  color: var(--ig-pink);
}

.need-item span {
  font-weight: 600;
  font-size: 1.05rem;
  color: #262626;
}

/* Use Case Cards */
.usecase-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.usecase-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--ig-gradient);
  transition: width 0.3s ease;
  border-radius: 0 0 16px 16px;
}

.usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(131, 58, 180, 0.15);
}

.usecase-card:hover::after {
  width: 100%;
}

.usecase-card .icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(131, 58, 180, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.usecase-card .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--ig-purple);
}

.usecase-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.usecase-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Why Section */
.why-content {
  max-width: 800px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
}

.why-item:hover {
  border-color: rgba(225, 48, 108, 0.25);
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.12);
  transform: translateX(8px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--ig-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon {
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.4);
}

.why-icon i {
  font-size: 1.25rem;
  color: #fff;
  transition: color 0.3s ease;
}

.why-item:hover .why-icon i {
  color: #fff;
}

.why-text h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.why-text p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.bg-dark-section .why-text h4 {
  color: #1a1a1a;
}

.bg-dark-section .why-text p {
  color: #444;
}

/* Project Cards */
.project-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 240px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}

.project-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: translateY(-4%);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.85), rgba(225, 48, 108, 0.85), rgba(247, 119, 55, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.project-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.project-overlay span:hover {
  background: #fff;
  color: var(--ig-pink);
}

@media (max-width: 768px) {
  .project-card {
    height: 220px;
    margin-bottom: 16px;
  }
}

/* CTA Section */
.cta-section {
  background: var(--gray);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ig-gradient);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: 300px;
  height: 300px;
  background:
    radial-gradient(circle, rgba(225, 48, 108, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(131, 58, 180, 0.06) 0%, transparent 50%);
  transform: translateY(-50%);
  pointer-events: none;
}

.cta-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cta-number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}

.cta-text {
  font-size: 1.35rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cta-section h2 {
  color: var(--black);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-section .lead {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 24px;
}

/* Contact Section */
.contact-section {
  background: var(--white);
  color: #262626;
}

.contact-section h2,
.contact-section h3,
.contact-section h4 {
  color: #262626;
}

.contact-section p,
.contact-section .lead,
.contact-section .section-header p {
  color: #6b6b6b;
}

.contact-section .form-control {
  background: #fff;
  border-color: #e0e0e0;
  color: #262626;
}

.contact-section .contact-note {
  color: #6b6b6b;
}

.form-control {
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-primary);
}

.form-control:focus {
  border-color: var(--ig-pink);
  box-shadow: 0 0 0 4px rgba(225, 48, 108, 0.15);
  outline: none;
}

.form-control::placeholder {
  color: #666;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-section .btn-primary {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  animation: none;
}

.contact-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-note i {
  color: var(--ig-pink);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: 10px;
  background: #1e1e1e;
  color: var(--black);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.toast-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification i {
  color: var(--ig-pink);
  font-size: 1.1rem;
}

.toast-notification.toast-error i {
  color: #dc3545;
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 16px !important;
  overflow: hidden;
  background: #161616;
  border: 1px solid #262626;
}

.accordion-button {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: #f5f5f5;
  background: #161616;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: #161616;
  color: #f5f5f5;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E1306C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Footer */
footer {
  background: var(--gray);
  color: var(--text-primary);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

footer h5 {
  color: var(--black);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer h5 i {
  background: var(--ig-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer p {
  color: var(--text-muted);
  line-height: 1.7;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 12px;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

footer a:hover {
  color: var(--ig-pink);
}

footer hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0 24px;
}

footer .copyright {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }

  .counter-section {
    padding: 36px;
  }

  .counter-number {
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
    min-height: auto;
  }

  section {
    padding: 60px 0;
  }

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

  .counter-section {
    padding: 28px 20px;
  }

  .counter-number {
    font-size: 4rem;
  }

  .counter-label {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .feature-card,
  .usecase-card {
    margin-bottom: 16px;
  }

  .why-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    align-items: center;
  }

  .what-we-need {
    padding: 32px 20px;
  }

  .what-we-need .row > div {
    margin-bottom: 12px;
  }

  .cta-counter {
    flex-direction: column;
    gap: 4px;
  }

  .cta-number {
    font-size: 4rem;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  footer {
    padding: 48px 0 24px;
  }

  footer .col-md-3 {
    margin-top: 32px;
  }
}

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

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(225, 48, 108, 0.3);
  }
  50% {
    box-shadow: 0 6px 24px rgba(225, 48, 108, 0.45);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.btn-cta.btn-primary {
  animation: ctaPulse 4s ease-in-out infinite;
}

/* Selection */
::selection {
  background: var(--ig-pink);
  color: #fff;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--ig-pink);
}
