/* ============================================================
   Lemurra Digital Solutions — Design System
   ============================================================ */

:root {
  /* Brand (extends Lemurra Traders palette) */
  --ds-white: #ffffff;
  --ds-teal: #208397;
  --ds-teal-dark: #165f6e;
  --ds-teal-deep: #0d3d47;
  --ds-cyan: #76e4fb;
  --ds-cyan-soft: rgba(118, 228, 251, 0.15);
  --ds-accent: #ff6f3c;
  --ds-accent-hover: #e85a28;

  /* Neutrals */
  --ds-gray-50: #f8fafc;
  --ds-gray-100: #f1f5f9;
  --ds-gray-200: #e2e8f0;
  --ds-gray-400: #94a3b8;
  --ds-gray-600: #475569;
  --ds-gray-800: #1e293b;
  --ds-gray-900: #0f172a;

  /* Semantic */
  --ds-success: #22c55e;
  --ds-whatsapp: #25d366;

  /* Layout */
  --ds-max-width: 1200px;
  --ds-section-py: clamp(4rem, 8vw, 6rem);
  --ds-radius-sm: 8px;
  --ds-radius-md: 16px;
  --ds-radius-lg: 24px;
  --ds-radius-xl: 32px;

  /* Shadows */
  --ds-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --ds-shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --ds-shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --ds-shadow-glow: 0 0 40px rgba(118, 228, 251, 0.25);

  /* Typography */
  --ds-font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ds-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ds-duration: 0.35s;
}

/* ---- Page wrapper ---- */
.ds-page {
  font-family: var(--ds-font);
  color: var(--ds-gray-800);
  background: var(--ds-white);
  overflow-x: hidden;
}

.ds-page *,
.ds-page *::before,
.ds-page *::after {
  box-sizing: border-box;
}

/* ---- Section utilities ---- */
.ds-section {
  padding: var(--ds-section-py) clamp(1rem, 4vw, 2rem);
}

.ds-container {
  max-width: var(--ds-max-width);
  margin: 0 auto;
}

.ds-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.ds-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ds-teal);
  background: var(--ds-cyan-soft);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.ds-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--ds-gray-900);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.ds-section-desc {
  font-size: 1.0625rem;
  color: var(--ds-gray-600);
  line-height: 1.7;
}

/* ---- Hero ---- */
.ds-hero {
  position: relative;
  min-height: clamp(520px, 85vh, 720px);
  display: flex;
  align-items: center;
  padding: clamp(6rem, 12vw, 8rem) clamp(1rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem);
  background: linear-gradient(135deg, var(--ds-teal-deep) 0%, var(--ds-teal) 45%, #1a6b7c 100%);
  overflow: hidden;
}

.ds-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(118, 228, 251, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(255, 111, 60, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.ds-hero-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: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.ds-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--ds-max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.ds-hero-content {
  color: var(--ds-white);
}

.ds-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ds-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--ds-cyan);
  border-radius: 50%;
  animation: ds-pulse 2s ease-in-out infinite;
}

@keyframes ds-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.ds-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.ds-hero h1 span {
  background: linear-gradient(90deg, var(--ds-cyan), #a8f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-hero-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  opacity: 0.9;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.ds-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ds-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ds-hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ds-radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--ds-shadow-lg);
}

.ds-hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ds-hero-stat {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--ds-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ds-hero-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ds-cyan);
  display: block;
}

.ds-hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

/* ---- Buttons ---- */
.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--ds-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--ds-duration) var(--ds-ease),
              box-shadow var(--ds-duration) var(--ds-ease),
              background var(--ds-duration) var(--ds-ease);
  font-family: inherit;
  line-height: 1.2;
}

.ds-btn:focus-visible {
  outline: 3px solid var(--ds-cyan);
  outline-offset: 2px;
}

.ds-btn-primary {
  background: var(--ds-accent);
  color: var(--ds-white);
  box-shadow: 0 4px 20px rgba(255, 111, 60, 0.35);
}

.ds-btn-primary:hover {
  background: var(--ds-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 111, 60, 0.4);
}

.ds-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ds-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.ds-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.ds-btn-outline {
  background: transparent;
  color: var(--ds-teal);
  border: 2px solid var(--ds-teal);
}

.ds-btn-outline:hover {
  background: var(--ds-teal);
  color: var(--ds-white);
  transform: translateY(-2px);
}

.ds-btn-whatsapp {
  background: var(--ds-whatsapp);
  color: var(--ds-white);
}

.ds-btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.ds-btn-call {
  background: var(--ds-teal);
  color: var(--ds-white);
}

.ds-btn-call:hover {
  background: var(--ds-teal-dark);
  transform: translateY(-2px);
}

/* ---- Services ---- */
.ds-services {
  background: var(--ds-gray-50);
}

.ds-service-category {
  margin-bottom: 3.5rem;
}

.ds-service-category:last-child {
  margin-bottom: 0;
}

.ds-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.ds-category-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ds-teal), var(--ds-teal-dark));
  border-radius: var(--ds-radius-md);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ds-category-title {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 800;
  color: var(--ds-gray-900);
}

.ds-category-subtitle {
  font-size: 0.9375rem;
  color: var(--ds-gray-600);
  margin-top: 0.15rem;
}

.ds-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.ds-card {
  background: var(--ds-white);
  border-radius: var(--ds-radius-md);
  padding: 1.75rem;
  border: 1px solid var(--ds-gray-200);
  box-shadow: var(--ds-shadow-sm);
  transition: transform var(--ds-duration) var(--ds-ease),
              box-shadow var(--ds-duration) var(--ds-ease),
              border-color var(--ds-duration) var(--ds-ease);
  position: relative;
  overflow: hidden;
}

.ds-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ds-teal), var(--ds-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ds-duration) var(--ds-ease);
}

.ds-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ds-shadow-md);
  border-color: var(--ds-cyan);
}

.ds-card:hover::before {
  transform: scaleX(1);
}

.ds-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-cyan-soft);
  border-radius: var(--ds-radius-sm);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.ds-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ds-gray-900);
  margin-bottom: 0.5rem;
}

.ds-card-desc {
  font-size: 0.9375rem;
  color: var(--ds-gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ds-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ds-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ds-gray-600);
  line-height: 1.5;
}

.ds-feature-list li::before {
  content: '✓';
  color: var(--ds-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Timeline ---- */
.ds-process {
  background: var(--ds-white);
}

.ds-timeline-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--ds-teal) var(--ds-gray-100);
  padding-bottom: 1rem;
}

.ds-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: max-content;
  padding: 2rem 1rem 1rem;
  position: relative;
}

.ds-timeline::before {
  content: '';
  position: absolute;
  top: calc(2rem + 24px);
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--ds-teal), var(--ds-cyan), var(--ds-accent));
  border-radius: 2px;
  z-index: 0;
}

.ds-timeline-step {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ds-ease), transform 0.6s var(--ds-ease);
}

.ds-timeline-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ds-timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ds-white);
  border: 3px solid var(--ds-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--ds-teal);
  margin-bottom: 1rem;
  box-shadow: var(--ds-shadow-sm);
  transition: background var(--ds-duration), color var(--ds-duration), transform var(--ds-duration);
}

.ds-timeline-step:hover .ds-timeline-dot {
  background: var(--ds-teal);
  color: var(--ds-white);
  transform: scale(1.1);
}

.ds-timeline-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ds-gray-900);
  line-height: 1.35;
  max-width: 130px;
}

.ds-timeline-arrow {
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ds-teal);
  font-size: 1.25rem;
  padding-top: 12px;
  opacity: 0.5;
}

/* Vertical timeline for mobile */
.ds-timeline-vertical {
  display: none;
  flex-direction: column;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
  padding: 1rem 0;
}

.ds-timeline-v-step {
  display: flex;
  gap: 1.25rem;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s var(--ds-ease), transform 0.5s var(--ds-ease);
}

.ds-timeline-v-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.ds-timeline-v-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.ds-timeline-v-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ds-teal);
  color: var(--ds-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.ds-timeline-v-connector {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(180deg, var(--ds-teal), var(--ds-cyan));
  margin: 4px 0;
}

.ds-timeline-v-content {
  padding-bottom: 1.75rem;
}

.ds-timeline-v-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ds-gray-900);
  margin-bottom: 0.25rem;
}

.ds-timeline-v-content p {
  font-size: 0.875rem;
  color: var(--ds-gray-600);
}

/* ---- Tech badges ---- */
.ds-tech {
  background: linear-gradient(180deg, var(--ds-gray-50) 0%, var(--ds-white) 100%);
}

.ds-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--ds-white);
  border: 1px solid var(--ds-gray-200);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ds-gray-800);
  box-shadow: var(--ds-shadow-sm);
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transition: opacity 0.5s var(--ds-ease), transform 0.5s var(--ds-ease),
              box-shadow var(--ds-duration), border-color var(--ds-duration);
  animation: ds-badge-float 4s ease-in-out infinite;
}

.ds-badge.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ds-badge:hover {
  border-color: var(--ds-teal);
  box-shadow: var(--ds-shadow-glow);
  transform: translateY(-4px) scale(1.02);
}

.ds-badge-icon {
  font-size: 1.125rem;
}

@keyframes ds-badge-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

.ds-badge:nth-child(2n) { animation-delay: 0.5s; }
.ds-badge:nth-child(3n) { animation-delay: 1s; }
.ds-badge:nth-child(4n) { animation-delay: 1.5s; }

/* ---- FAQ ---- */
.ds-faq {
  background: var(--ds-white);
}

.ds-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ds-faq-item {
  border: 1px solid var(--ds-gray-200);
  border-radius: var(--ds-radius-md);
  overflow: hidden;
  background: var(--ds-white);
  transition: border-color var(--ds-duration), box-shadow var(--ds-duration);
}

.ds-faq-item.is-open {
  border-color: var(--ds-teal);
  box-shadow: var(--ds-shadow-sm);
}

.ds-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ds-gray-900);
  transition: color var(--ds-duration);
}

.ds-faq-question:hover {
  color: var(--ds-teal);
}

.ds-faq-question:focus-visible {
  outline: 2px solid var(--ds-teal);
  outline-offset: -2px;
}

.ds-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ds-cyan-soft);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--ds-teal);
  transition: transform var(--ds-duration) var(--ds-ease), background var(--ds-duration);
}

.ds-faq-item.is-open .ds-faq-icon {
  transform: rotate(45deg);
  background: var(--ds-teal);
  color: var(--ds-white);
}

.ds-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ds-ease);
}

.ds-faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--ds-gray-600);
  line-height: 1.7;
}

/* ---- Contact ---- */
.ds-contact {
  background: linear-gradient(135deg, var(--ds-teal-deep) 0%, var(--ds-teal) 100%);
  color: var(--ds-white);
  position: relative;
  overflow: hidden;
}

.ds-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 0%, rgba(118, 228, 251, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.ds-contact .ds-section-title,
.ds-contact .ds-section-desc {
  color: var(--ds-white);
}

.ds-contact .ds-section-desc {
  opacity: 0.85;
}

.ds-contact .ds-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ds-cyan);
}

.ds-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.ds-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ds-contact-actions .ds-btn {
  width: 100%;
  justify-content: center;
}

.ds-contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ds-contact-info p {
  font-size: 0.9375rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.ds-contact-info a {
  color: var(--ds-cyan);
  text-decoration: none;
}

.ds-contact-info a:hover {
  text-decoration: underline;
}

/* ---- Form ---- */
.ds-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--ds-radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.ds-form-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.ds-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.ds-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ds-form-group.full-width {
  grid-column: 1 / -1;
}

.ds-form label {
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.9;
}

.ds-form input,
.ds-form select,
.ds-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ds-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ds-white);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color var(--ds-duration), background var(--ds-duration);
}

.ds-form input::placeholder,
.ds-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ds-form select {
  color: var(--ds-gray-800);
  background: var(--ds-white);
}

.ds-form select option {
  color: var(--ds-gray-800);
  background: var(--ds-white);
}

.ds-form input:focus,
.ds-form select:focus,
.ds-form textarea:focus {
  outline: none;
  border-color: var(--ds-cyan);
  background: rgba(255, 255, 255, 0.12);
}

.ds-form textarea {
  min-height: 100px;
  resize: vertical;
}

.ds-form-error {
  font-size: 0.75rem;
  color: #fca5a5;
  min-height: 1rem;
}

.ds-form-submit {
  margin-top: 0.5rem;
  width: 100%;
}

.ds-form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--ds-radius-sm);
  font-size: 0.875rem;
  display: none;
}

.ds-form-status.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.ds-form-status.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* ---- Reveal animations ---- */
.ds-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ds-ease), transform 0.7s var(--ds-ease);
}

.ds-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Active nav link ---- */
nav ul li a.ds-nav-active {
  color: var(--ds-cyan) !important;
  background-color: rgba(118, 228, 251, 0.15);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .ds-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ds-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .ds-hero-actions {
    justify-content: center;
  }

  .ds-hero-visual {
    order: -1;
  }

  .ds-hero-card {
    max-width: 360px;
  }

  .ds-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ds-timeline-wrapper {
    display: none;
  }

  .ds-timeline-vertical {
    display: flex;
  }

  .ds-form-grid {
    grid-template-columns: 1fr;
  }

  .ds-form-group.full-width-mobile {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .ds-hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .ds-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .ds-hero-actions .ds-btn {
    width: 100%;
  }

  .ds-badges {
    gap: 0.625rem;
  }

  .ds-badge {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ds-badge,
  .ds-hero-badge-dot {
    animation: none;
  }

  .ds-reveal,
  .ds-timeline-step,
  .ds-timeline-v-step,
  .ds-badge {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
