:root {
  --primary: #1e3a8a;
  --primary-light: #2563eb;
  --secondary: #facc15;
  --background: #f8fafc;
  --text: #111827;
  --muted: #6b7280;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  --radius: 16px;
  --gradient: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Open Sans', sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  margin-top: 0;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
}

.section.light {
  background: #fff;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 1rem 0 0.5rem;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(17, 24, 39, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.site-nav.scrolled .logo,
.site-nav.scrolled .nav-links a {
  color: #f8fafc;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

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

.nav-cta {
  margin-left: 1.5rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-light);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(30, 58, 138, 0.1);
  border-radius: 50%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  border: 1px solid rgba(17, 24, 39, 0.2);
  background: transparent;
  color: var(--text);
}

.btn-secondary {
  background: rgba(250, 204, 21, 0.2);
  color: var(--primary);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.8), rgba(30, 58, 138, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  color: #fff;
  margin-bottom: 1rem;
}

.hero-text p {
  color: rgba(248, 250, 252, 0.9);
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 280px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.25));
  pointer-events: none;
}

.hero-home,
.hero-about,
.hero-services,
.hero-solutions,
.hero-cases,
.map-hero {
  background-size: cover;
  background-position: center;
}

.hero-home {
  background-image: url('https://images.unsplash.com/photo-1569025690938-a00729c9e1d9?auto=format&fit=crop&w=1600&q=80');
}

.hero-sub {
  background-image: linear-gradient(140deg, rgba(15, 23, 42, 0.85), rgba(30, 58, 138, 0.65));
}

.hero-about {
  background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80');
}

.hero-services {
  background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&w=1600&q=80');
}

.hero-solutions {
  background-image: url('https://images.unsplash.com/photo-1545239351-1141bd82e8a6?auto=format&fit=crop&w=1600&q=80');
}

.hero-cases {
  background-image: url('https://images.unsplash.com/photo-1508385082359-f38ae991e8f2?auto=format&fit=crop&w=1600&q=80');
}

.hero-typing {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  color: #facc15;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-motion span {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  animation: float 14s linear infinite;
  filter: blur(0.5px);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.metric-value {
  font-family: 'Roboto Mono', monospace;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, border 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.2);
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.15);
  color: #b45309;
  font-size: 0.8rem;
  font-weight: 600;
}

.solutions-highlight .solution-card {
  position: relative;
  padding-top: 4rem;
}

.solution-card svg {
  width: 36px;
  height: 36px;
  color: var(--primary-light);
}

.solution-card .index {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.05);
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-item {
  min-width: 100%;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  cursor: pointer;
}

.testimonials {
  background: var(--card);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.testimonial-item {
  display: none;
}

.testimonial-item.active {
  display: block;
}

.testimonial-item p {
  font-size: 1.2rem;
  color: var(--text);
}

.testimonial-meta {
  margin-top: 1rem;
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(30, 58, 138, 0.2);
}

.timeline-step {
  padding-left: 60px;
  position: relative;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0f172a;
  color: #fff;
  padding: 2rem;
  min-height: 240px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card h3 {
  color: #fff;
}

.team-card p {
  color: rgba(248, 250, 252, 0.8);
}

.team-card .role {
  color: var(--secondary);
  font-weight: 600;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.achievement {
  background: #fff;
  padding: 1.8rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.achievement span {
  display: block;
  font-size: 2.4rem;
  font-family: 'Roboto Mono', monospace;
  color: var(--primary-light);
}

.tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tab-button {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.tab-button.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workflow {
  margin-top: 3rem;
  padding: 3rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.workflow-diagram {
  width: 100%;
  min-height: 220px;
}

.workflow-diagram path {
  stroke: var(--primary-light);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation: draw 6s ease infinite;
}

.workflow-diagram circle {
  fill: var(--secondary);
  animation: pulse 2.5s ease infinite;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    r: 8;
  }
  50% {
    r: 11;
  }
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.case-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  min-height: 280px;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.case-card .case-info {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  transition: transform 0.3s ease;
}

.case-card:hover .case-info {
  transform: translateY(-8px);
}

.case-card a {
  color: var(--secondary);
  font-weight: 600;
}

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

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

.map-embed iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.newsletter {
  background: #0f172a;
  border-radius: var(--radius);
  padding: 3rem;
  color: #fff;
  text-align: center;
}

.newsletter form {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.newsletter input {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: none;
  min-width: 240px;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.newsletter-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.newsletter-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1500;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.footer {
  background: #0f172a;
  color: rgba(248, 250, 252, 0.8);
  padding: 3rem 0 2rem;
}

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

.footer h4 {
  color: #fff;
}

.footer a {
  color: rgba(248, 250, 252, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.case-cta,
.generic-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: var(--gradient);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.case-cta p,
.generic-cta p {
  color: rgba(255, 255, 255, 0.85);
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
}

.map-hero {
  background-image: linear-gradient(120deg, rgba(17, 24, 39, 0.8), rgba(37, 99, 235, 0.5)), url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.case-carousel .carousel-item {
  min-height: 260px;
  background: #0f172a;
  color: #fff;
}

.case-carousel .carousel-item h3 {
  color: #fff;
}

.case-carousel .metrics {
  margin-top: 1rem;
}

.testimonial-slider .controls {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.testimonial-slider .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

.testimonial-slider .dot.active {
  background: var(--primary-light);
}

.backdrop-gradient {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.25), transparent);
}

.list {
  padding-left: 1.2rem;
}

.list li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.solutions-highlight .cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stat-band {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.stat-band div {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-band span {
  display: block;
  font-size: 2rem;
  font-family: 'Roboto Mono', monospace;
  color: var(--primary);
}

.hero.subtle::after {
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.7), rgba(30, 58, 138, 0.4));
}

@media (min-width: 1400px) {
  .section {
    padding: 6rem 0;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: 5%;
    left: 5%;
    flex-direction: column;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    gap: 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.75rem;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-toggle {
    justify-self: end;
  }

  .nav-menu {
    grid-column: 1 / -1;
  }

  .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero-content {
    padding: 0 0.25rem;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-step {
    padding-left: 50px;
  }

  .timeline-step::before {
    left: 0;
  }

  .newsletter {
    padding: 2.5rem 1.5rem;
  }

  .newsletter form {
    flex-direction: column;
  }

  .case-cta,
  .generic-cta {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .workflow {
    padding: 2rem 1.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 540px) {
  .nav-links {
    top: 70px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero {
    padding: 4.5rem 0 3.2rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .carousel-item {
    padding: 1.5rem;
  }

  .newsletter-card,
  .contact-form,
  .card {
    padding: 1.8rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
}
