:root {
  --color-primary-start: #22406d;
  --color-primary-end: #0b1e33;
  --color-accent-start: #eba14a;
  --color-accent-end: #de6e94;
  --color-text-light: #f8f9ff;
  --color-text-muted: rgba(248, 249, 255, 0.72);
  --color-background: #f4f6fb;
  --max-width: 1200px;
  --transition-duration: 0.3s;
  font-size: 16px;
}

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

body {
  font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--color-background);
  color: #1a1a1a;
  line-height: 1.6;
}

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

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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(195deg, var(--color-primary-start) 10%, var(--color-primary-end) 90%);
  color: var(--color-text-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  width: min(92%, 1400px);
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 3rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.brand-block {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.5rem;
  align-self: stretch;
}

.brand-block img {
  width: min(200px, 60%);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.35));
  align-self: start;
  justify-self: start;
}

.brand-tagline {
  font-size: 20pt;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 20ch;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.hero-carousel {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(6, 12, 28, 0.55);
  border: 3px solid #de6e94;
  width: min(100%, 960px);
  justify-self: end;
}

.carousel-track {
  position: relative;
  width: 100%;
  display: grid;
}

.carousel-slide {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  width: 100%;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-duration) ease-in-out;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
  z-index: 2;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform var(--transition-duration), background-color var(--transition-duration);
}

.carousel-indicators button[aria-current='true'] {
  background-color: var(--color-text-light);
  transform: scale(1.1);
}

.hero-cta {
  width: min(92%, 1400px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-cta h2 {
  font-size: clamp(1.4rem, 1.5vw + 1rem, 1.9rem);
  font-weight: 600;
}

.hero-cta p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cta-content p {
  font-size: 23pt;
  line-height: 1.3;
  font-family: 'DIN Pro', 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-content p:first-child {
  color: #eba14a;
}

.cta-content p:last-child {
  color: #fff;
}

.cta-button {
  background: linear-gradient(135deg, #25d366, #0cbe52);
  color: #041c0d;
  font-weight: 600;
  padding: 0.95rem 2.25rem;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform var(--transition-duration), box-shadow var(--transition-duration);
  box-shadow: 0 18px 25px rgba(5, 119, 64, 0.35);
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  line-height: 1.2;
  font-family: 'DIN Pro', 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-button img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 35px rgba(5, 119, 64, 0.45);
}

.highlight-section {
  background: linear-gradient(90deg, var(--color-accent-start) 5%, var(--color-accent-end) 95%);
  color: var(--color-text-light);
  padding: 5rem 0;
}

.highlight-section .container {
  width: min(92%, 1400px);
  margin: 0 auto;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 2.5rem;
}

.highlight-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  font-weight: 700;
}

.highlight-item .accent-text {
  color: #22406d;
}

.highlight-item:last-child {
  text-align: right;
}

@media (max-width: 960px) {
  .hero {
    padding: 2.5rem 0 1.5rem;
  }

  .hero-content {
    width: min(94%, var(--max-width));
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-carousel {
    width: 100%;
    justify-self: center;
  }

  .brand-block {
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .brand-tagline {
    max-width: 32ch;
    align-self: center;
  }

  .hero-cta {
    width: min(94%, var(--max-width));
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cta-button {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 1.2rem;
  }

  .hero-content {
    margin-bottom: 2.5rem;
    gap: 1.8rem;
  }

  .brand-block img {
    width: clamp(110px, 28vw, 150px);
  }

  .brand-tagline {
    font-size: clamp(0.95rem, 3vw + 0.75rem, 1.2rem);
    max-width: 26ch;
  }

  .hero-cta h2 {
    font-size: 1.3rem;
  }

  .cta-content p {
    font-size: clamp(1rem, 2.5vw + 0.8rem, 1.35rem);
  }

  .cta-button {
    padding: 0.85rem 1.6rem;
    gap: 0.65rem;
  }

  .cta-button img {
    width: 24px;
    height: 24px;
  }

  .highlight-section {
    padding: 3.25rem 0;
  }

  .highlight-grid {
    gap: 1.9rem;
  }

  .highlight-item h3 {
    font-size: 1.1rem;
  }

  .highlight-item p {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

@media (max-width: 420px) {
  body {
    font-size: 14px;
  }

  .hero {
    padding: 1.75rem 0 1rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-cta h2 {
    font-size: clamp(1rem, 3vw + 0.85rem, 1.2rem);
  }

  .cta-content p {
    font-size: clamp(0.95rem, 3vw + 0.75rem, 1.2rem);
    line-height: 1.25;
  }

  .cta-button {
    padding: 0.8rem 1.4rem;
    gap: 0.55rem;
  }

  .cta-button img {
    width: 22px;
    height: 22px;
  }

  .highlight-section {
    padding: 3rem 0;
  }

  .highlight-item h3 {
    font-size: 1rem;
  }

  .highlight-item p {
    font-size: 1rem;
    line-height: 1.35;
  }
}
