/* ===========================================
   ACSPL Home — Premium Modern Design
   Navy #1B1F5E · Red #E63329 · Silver #C5C7D0
   =========================================== */

/* ── Hero — Full Viewport ─────────────────── */
.hp-hero {
  position: relative;
  height: calc(100vh - var(--hero-offset, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: hp-heroZoom 20s ease-in-out infinite alternate;
}

@keyframes hp-heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(8,10,46,0.75) 0%,
      rgba(15,18,66,0.55) 40%,
      rgba(27,31,94,0.65) 70%,
      rgba(8,10,46,0.85) 100%
    );
}

.hp-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 0 4rem;
}

/* Badge */
.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34,197,94,0.6);
  animation: hp-dotPulse 2s ease-in-out infinite;
}

@keyframes hp-dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Hero Title */
.hp-hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.hp-hero-title span {
  display: inline;
  background: linear-gradient(135deg, #fff 20%, #FF6B63 60%, #E63329 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Hero Buttons */
.hp-hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hp-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  background: linear-gradient(135deg, #E63329, #FF4D42);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(230,51,41,0.35);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.02em;
}

.hp-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(230,51,41,0.45);
  background: linear-gradient(135deg, #C42B22, #E63329);
}

.hp-btn-main--white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.hp-btn-main--white:hover {
  background: #E63329;
  color: #fff;
  box-shadow: 0 8px 36px rgba(230,51,41,0.4);
}

.hp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.02em;
}

.hp-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

/* Scroll indicator */
.hp-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hp-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: hp-scrollBounce 2s ease-in-out infinite;
}

@keyframes hp-scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ── Stats Bar ────────────────────────────── */
.hp-stats {
  background: #fff;
  padding: 0;
  position: relative;
  z-index: 5;
}

.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(27,31,94,0.1);
  margin-top: -4rem;
  overflow: hidden;
  border: 1px solid rgba(27,31,94,0.06);
}

.hp-stat {
  padding: 2.25rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.hp-stat:hover {
  background: rgba(27,31,94,0.02);
}

.hp-stat + .hp-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(27,31,94,0.08);
}

.hp-stat-num {
  font-family: "Abril Fatface", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.hp-stat-plus {
  font-family: "Abril Fatface", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #E63329;
}

.hp-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Section Head — Shared ────────────────── */
.hp-section-head {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

.hp-section-head h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #E63329, #1B1F5E);
  border-radius: 3px;
  margin: 0.6rem auto 0;
}

.hp-section-head--light h2 {
  color: #fff;
}

.hp-section-head--light h2::after {
  background: linear-gradient(90deg, #FF4D42, rgba(255,255,255,0.3));
}

.hp-section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0.75rem auto 0;
  line-height: 1.65;
}

/* Label / Tag */
.hp-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #E63329;
  margin-bottom: 0.65rem;
  background: rgba(230,51,41,0.06);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(230,51,41,0.08);
}

.hp-label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: #E63329;
  border-radius: 2px;
}

.hp-label--light {
  color: #FF6B63;
  background: rgba(255,77,66,0.1);
  border-color: rgba(255,77,66,0.15);
}

.hp-label--light::before {
  background: #FF6B63;
}

/* ── About Section ────────────────────────── */
.hp-about {
  padding: 7rem 0 5rem;
  background: #fff;
}

.hp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hp-about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,31,94,0.12);
}

.hp-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.hp-about-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #E63329, #1B1F5E);
}

.hp-about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hp-about-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.3s;
}

.hp-text-link:hover {
  color: #E63329;
}

.hp-text-link span {
  transition: transform 0.3s;
}

.hp-text-link:hover span {
  transform: translateX(5px);
}

/* ── Services Section ─────────────────────── */
.hp-services {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hp-service-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(27,31,94,0.06);
  box-shadow: 0 4px 16px rgba(27,31,94,0.04);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  display: block;
  height: 320px;
}

.hp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(27,31,94,0.12);
  border-color: rgba(27,31,94,0.12);
}

.hp-service-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hp-service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(8,10,46,0.85) 100%);
  z-index: 1;
}

.hp-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.hp-service-card:hover .hp-service-img img {
  transform: scale(1.08);
}

.hp-service-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.hp-service-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hp-service-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ── Process / How It Works ───────────────── */
.hp-process {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  color: #fff;
}

.hp-process-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hp-process-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(8,10,46,0.94) 0%, rgba(15,18,66,0.92) 40%, rgba(27,31,94,0.9) 100%);
}

.hp-process > .container {
  position: relative;
  z-index: 2;
}

.hp-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.hp-timeline-step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.hp-timeline-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-6px);
}

.hp-step-num {
  font-family: "Abril Fatface", serif;
  font-size: 1.6rem;
  color: #E63329;
  margin-bottom: 1rem;
  line-height: 1;
  text-shadow: 0 0 30px rgba(230,51,41,0.3);
}

.hp-step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.hp-step-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── Industries ───────────────────────────── */
.hp-industries {
  padding: 5rem 0;
  background: #fff;
}

.hp-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.hp-industry-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(27,31,94,0.07);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 8px rgba(27,31,94,0.03);
}

.hp-industry-item:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27,31,94,0.15);
  border-color: transparent;
}

.hp-industry-item svg {
  flex-shrink: 0;
  color: #E63329;
  transition: color 0.3s;
}

.hp-industry-item:hover svg {
  color: #FF6B63;
}

.hp-industry-item span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: color 0.3s;
}

.hp-industry-item:hover span {
  color: #fff;
}

/* ── Products We Handle ──────────────────── */
.hp-products {
  padding: 5rem 0 4rem;
  background: var(--bg-alt);
  overflow: hidden;
}

.hp-products-ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  margin-top: 0.5rem;
}

.hp-products-ticker {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: hp-productsScroll 50s linear infinite;
}

.hp-products-ticker:hover {
  animation-play-state: paused;
}

@keyframes hp-productsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hp-product-card {
  flex-shrink: 0;
  width: 220px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(27,31,94,0.06);
  box-shadow: 0 4px 20px rgba(27,31,94,0.06);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  text-align: center;
}

.hp-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27,31,94,0.14);
  border-color: rgba(27,31,94,0.12);
}

.hp-product-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.hp-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.hp-product-card:hover .hp-product-img img {
  transform: scale(1.08);
}

.hp-product-name {
  display: block;
  padding: 0.85rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.3;
  border-top: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, #E63329, #1B1F5E) border-box;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, #E63329, #1B1F5E) 1;
}

@media (max-width: 768px) {
  .hp-product-card {
    width: 180px;
  }

  .hp-product-img {
    height: 140px;
  }

  .hp-product-name {
    padding: 0.7rem 0.5rem;
    font-size: 0.78rem;
  }

  .hp-products-ticker {
    animation-duration: 40s;
  }
}

/* ── Image Strip ──────────────────────────── */
.hp-img-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  line-height: 0;
}

.hp-img-strip-item {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.hp-img-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.hp-img-strip-item:hover img {
  transform: scale(1.08);
}

.hp-img-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,31,94,0.3) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Clients ──────────────────────────────── */
.hp-clients {
  padding: 5rem 0 3rem;
  background: #fff;
  overflow: hidden;
}

.hp-ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.hp-ticker {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: hp-tickerScroll 35s linear infinite;
}

.hp-ticker img {
  height: 220px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s;
  filter: grayscale(20%);
}

.hp-ticker img:hover {
  transform: scale(1.06);
  filter: grayscale(0%);
}

@keyframes hp-tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Reviews ──────────────────────────────── */
.hp-reviews {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.hp-testimonial {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.hp-testimonial blockquote {
  position: relative;
  background: #fff;
  border: 1px solid rgba(27,31,94,0.06);
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(27,31,94,0.06);
  text-align: center;
}

.hp-testimonial blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 2rem;
  font-family: "Abril Fatface", serif;
  font-size: 4rem;
  color: rgba(230,51,41,0.12);
  line-height: 1;
}

.hp-testimonial blockquote p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
}

.hp-testimonial blockquote footer {
  margin-top: 1.25rem;
}

.hp-testimonial blockquote footer strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.hp-testimonial blockquote footer a {
  font-size: 0.82rem;
  color: #E63329;
}

/* ── CTA ──────────────────────────────────── */
.hp-cta {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.hp-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hp-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(8,10,46,0.92) 0%, rgba(15,18,66,0.88) 40%, rgba(27,31,94,0.85) 100%);
}

.hp-cta-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hp-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.hp-cta-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hp-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

  .hp-stat + .hp-stat:nth-child(3)::before {
    display: none;
  }

  .hp-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hp-about-img img {
    min-height: 300px;
  }

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

  .hp-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hp-img-strip-item {
    height: 240px;
  }

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

@media (max-width: 768px) {
  .hp-hero-content {
    padding: 8rem 0 5rem;
  }

  .hp-hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hp-hero-scroll {
    display: none;
  }

  .hp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -3rem;
    border-radius: 16px;
  }

  .hp-stat {
    padding: 1.5rem 1rem;
  }

  .hp-about {
    padding: 5rem 0 3rem;
  }

  .hp-services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .hp-timeline-step {
    padding: 1.5rem 1rem;
  }

  .hp-industry-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .hp-img-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hp-img-strip-item {
    height: 180px;
  }

  .hp-testimonial blockquote {
    padding: 2rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hp-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hp-btn-main,
  .hp-btn-outline {
    width: 100%;
    max-width: 280px;
  }

  .hp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hp-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .hp-cta-btns .hp-btn-main,
  .hp-cta-btns .hp-btn-outline {
    width: 100%;
    max-width: 280px;
  }
}
