/* ============================================
   DDestra Plataforma — Landing Page Styles
   ============================================ */

/* --- CSS Variables (DDestra Branding) --- */
:root {
  --ddestra-blue-dark:   #053087;
  --ddestra-blue-mid:    #012877;
  --ddestra-blue-light:  #E8EDF8;
  --bg-white:    #FFFFFF;
  --bg-section:  #F5F7FB;
  --bg-dark:     #053087;
  --text-heading: #0A1F4E;
  --text-body:    #3D4A60;
  --text-muted:   #6B7A99;
  --text-white:   #FFFFFF;
  --accent-yellow: #FDD216;
  --accent-orange: #E8500A;
  --success:  #16A34A;
  --warning:  #D97706;
  --danger:   #DC2626;
  --info:     #2563EB;
  --border:        #DDE3F0;
  --shadow-card:   0 2px 16px rgba(5, 48, 135, 0.08);
  --shadow-hover:  0 6px 28px rgba(5, 48, 135, 0.16);
  --radius:        10px;
  --radius-lg:     16px;
  --radius-pill:   100px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--ddestra-blue-dark);
  color: var(--text-white);
  border-color: var(--ddestra-blue-dark);
}

.btn-primary:hover {
  background: var(--ddestra-blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--ddestra-blue-dark);
  border-color: var(--ddestra-blue-dark);
}

.btn-ghost:hover {
  background: var(--ddestra-blue-light);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--bg-white);
  color: var(--ddestra-blue-dark);
  border-color: var(--bg-white);
}

.btn-white:hover {
  background: var(--ddestra-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ddestra-blue-dark);
  padding: 0 24px;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.navbar-links {
  display: flex;
  gap: 32px;
}

.navbar-links a {
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.3s;
}

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

.navbar-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

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

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

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--ddestra-blue-dark);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: white;
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* --- Hero --- */
.hero {
  padding: 140px 0 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ddestra-blue-light);
  color: var(--ddestra-blue-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-mockup {
  position: relative;
}

.hero-mockup-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(5, 48, 135, 0.15);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* Social proof bar */
.social-proof {
  background: var(--bg-section);
  padding: 32px 0;
  text-align: center;
}

.social-proof p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.social-proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* --- Numbers Section --- */
.numbers {
  background: var(--ddestra-blue-dark);
  padding: 80px 0;
  text-align: center;
}

.numbers h2 {
  color: var(--text-white);
  font-size: 2.25rem;
  margin-bottom: 56px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.number-item {
  position: relative;
}

.number-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.number-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}

.number-label {
  color: var(--accent-yellow);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
}

/* --- Solutions Section --- */
.solutions {
  padding: 100px 0;
  background: var(--bg-white);
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 56px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ddestra-blue-dark);
}

.solution-icon {
  width: 56px;
  height: 56px;
  background: var(--ddestra-blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-icon svg {
  width: 28px;
  height: 28px;
  color: var(--ddestra-blue-dark);
}

.solution-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.solution-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ddestra-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.solution-link:hover {
  gap: 8px;
}

/* --- Why DDestra Section --- */
.why-ddestra {
  padding: 100px 0;
  background: var(--bg-section);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--ddestra-blue-dark), var(--ddestra-blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-image-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ddestra-blue-dark) 0%, var(--ddestra-blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.why-content h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.why-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--ddestra-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-check svg {
  width: 16px;
  height: 16px;
  color: var(--ddestra-blue-dark);
}

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- How it works --- */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 56px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  border-top: 3px dashed var(--ddestra-blue-light);
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--ddestra-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-card);
}

.timeline-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
  background: var(--bg-section);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--ddestra-blue-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--ddestra-blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Plans --- */
.plans {
  padding: 100px 0;
  background: var(--bg-white);
}

.plans-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.plans-toggle span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
}

.plans-toggle span.active {
  color: var(--text-heading);
  font-weight: 600;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--ddestra-blue-dark);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: none;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch.annual::after {
  transform: translateX(24px);
}

.annual-badge {
  background: var(--accent-yellow);
  color: var(--ddestra-blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.plan-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.plan-card.featured {
  border: 2px solid var(--ddestra-blue-dark);
  transform: scale(1.02);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.plan-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-yellow);
  color: var(--ddestra-blue-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--ddestra-blue-dark);
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

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

.plan-card .btn {
  width: 100%;
  justify-content: center;
}

.plans-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plans-note a {
  color: var(--ddestra-blue-dark);
  font-weight: 600;
}

.plans-note a:hover {
  text-decoration: underline;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-heading);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--ddestra-blue-dark);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--ddestra-blue-dark);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  background: var(--ddestra-blue-dark);
  text-align: center;
}

.cta-logo {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 32px;
}

.cta-section h2 {
  color: var(--text-white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-credibility {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-credibility span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
  background: #0A1F4E;
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: var(--ddestra-blue-dark);
}

.footer h4 {
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-contact li {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-certs {
  display: flex;
  gap: 16px;
}

.footer-cert {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
}

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .plan-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .navbar-links,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .number-item:not(:last-child)::after {
    display: none;
  }

  .number-value {
    font-size: 2.75rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .timeline::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .plan-card.featured {
    transform: none;
  }

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

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

  .social-proof-logos {
    gap: 24px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .cta-credibility {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   Hero Slider / Carousel
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.hero-slide .container {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

/* Slider dots */
.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 32px 0 48px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--ddestra-blue-dark);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--ddestra-blue-dark);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: var(--ddestra-blue-mid);
  border-color: var(--ddestra-blue-mid);
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
  .hero {
    padding: 90px 0 0;
    overflow: hidden;
    max-width: 100vw;
  }

  .hero-slider {
    overflow: hidden;
    max-width: 100vw;
  }

  .hero-slides {
    max-width: 100vw;
  }

  .hero-slide {
    min-width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-slide .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-text {
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  .hero h1,
  .hero-slide .hero h1,
  .hero-slide h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    line-height: 1.2;
    word-wrap: break-word;
  }

  .hero-subtitle,
  .hero-slide .hero-subtitle,
  .hero-slide .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 100%;
    line-height: 1.6;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-ctas .btn {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
  }

  .hero-ctas .btn-lg {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero-mockup {
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-mockup-img {
    max-width: 220px;
    width: 100%;
    height: auto;
  }

  .hero-slider-dots {
    padding: 20px 0 32px;
  }

  .hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--ddestra-blue-dark);
    background: transparent;
    padding: 0;
    position: relative;
  }

  .hero-dot::before {
    content: '';
    position: absolute;
    inset: -15px;
  }

  .hero-dot.active {
    background: var(--ddestra-blue-dark);
  }

  .hero-wave {
    position: relative;
    bottom: auto;
    margin-top: -1px;
  }

  .hero-wave svg {
    display: block;
    width: 100%;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 0 0;
  }

  .hero-slide .container {
    padding: 0 16px;
    gap: 16px;
  }

  .hero h1,
  .hero-slide .hero h1,
  .hero-slide h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle,
  .hero-slide .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .hero-mockup-img {
    max-width: 200px;
  }

  .hero-slider-dots {
    padding: 16px 0 24px;
  }
}

@media (max-width: 375px) {
  .hero h1,
  .hero-slide .hero h1,
  .hero-slide h1 {
    font-size: 1.35rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .hero-mockup-img {
    max-width: 170px;
  }
}
