/* ===========================
   style-v2.css — Services2 page
   =========================== */

/* Dark footer variant */
.footer-dark {
  background-color: #0a0a0a !important;
  color: #ffffff !important;
}

.footer-dark h3,
.footer-dark a,
.footer-dark p,
.footer-dark li,
.footer-dark .nested-nav a {
  color: #ffffff !important;
}

.footer-dark a:hover {
  opacity: 0.6;
}

.footer-dark .footer-bottom,
.footer-dark .footer-copy,
.footer-dark .footer-sub {
  color: rgba(255,255,255,0.5) !important;
  border-color: rgba(255,255,255,0.1) !important;
}

/* Global typography overrides */
h1 { letter-spacing: -4px; }
h2 { letter-spacing: -2px; }
.sd-impact-title { letter-spacing: -3px; }

/* Hero */
.s2-hero {
  background-color: #0a0a0a;
  padding: 160px 0 120px;
  text-align: center;
}

.s2-hero-title {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 32px;
}

.s2-hero-sub {
  color: #999999;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Nav — transparent so it doesn't create a stripe over the nav overlay */
.s2-header {
  background-color: transparent;
}

/* When JS adds white-bkg on scroll, keep it readable */
.s2-header.white-bkg {
  background-color: rgba(255, 255, 255, 1);
}

/* Gallery Carousel */
.s2-gallery {
  background-color: #0a0a0a;
  overflow: hidden;
  padding: 60px 0 80px;
}

.s2-carousel-track {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: pointer;
}

.s2-card {
  flex-shrink: 0;
  width: 55vw;
  max-width: 860px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  opacity: 0.45;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
  cursor: pointer;
}

.s2-card.active {
  opacity: 1;
  transform: scale(1);
}

.s2-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.s2-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.75);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 20px;
}

@media (max-width: 768px) {
  .s2-card {
    width: 80vw;
  }

  .s2-card img {
    height: 280px;
  }
}

/* ===========================
   Shared section spacing
   =========================== */
.s2-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.s2-section .wrapper_1450 {
  max-width: 1400px;
  padding-left: 40px;
  padding-right: 40px;
}

/* ===========================
   UX Design Retainer Section
   =========================== */
.s2-service-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.s2-service-text {
  flex: 0 0 42%;
  max-width: 42%;
}

.s2-service-title {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 20px;
}

.s2-service-desc {
  color: #aaaaaa;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.s2-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.s2-service-list li {
  color: #cccccc;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  padding: 4px 0 4px 20px;
  position: relative;
}

.s2-service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffffff;
}

.s2-service-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 20px 0 24px;
}

.s2-service-btn {
  display: inline-block;
  background: #ffffff;
  background-size: 300% 100%;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 12px;
  transition: color 0.4s ease;
}

.s2-service-btn:hover {
  background: linear-gradient(90deg, #87AACA, #ABA4E2, #c4a8e8, #87AACA);
  background-size: 300% 100%;
  color: #ffffff;
  animation: gradientShift 2s ease infinite;
}

/* Reversed row — image left, text right */
.s2-service-row--reverse {
  flex-direction: row-reverse;
}

/* Card — right side */
.s2-service-card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.s2-service-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pills row at bottom of card */
.s2-pills-row {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.s2-pill {
  background: rgba(40, 40, 50, 0.85);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.s2-pill-dash {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

/* ===========================
   Product UX + Development Section
   =========================== */
.s2-team-card {
  background: linear-gradient(180deg, #B8B8E8 0%, #F2E2E4 100%);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
}

.s2-team-title {
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 20px;
}

.s2-team-desc {
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 48px;
}

.s2-team-groups {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 48px;
}

.s2-team-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.s2-avatars {
  display: flex;
}

.s2-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.s2-avatar:not(:first-child) {
  margin-left: -20px;
}

.s2-team-label {
  color: #111111;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.s2-team-btn {
  display: inline-block;
  background: linear-gradient(90deg, #87AACA, #ABA4E2, #c4a8e8, #87AACA);
  background-size: 300% 100%;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background-position 0.6s ease, color 0.4s ease;
}

.s2-team-btn:hover {
  animation: gradientShift 2s ease infinite, textColorShift 2s ease infinite;
}

.s2-team-note {
  color: #555555;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  margin: 0;
}

/* ===========================
   service-dev.html — Hero
   =========================== */
.sd-hero {
  background: linear-gradient(to bottom, #000000 0%, #0a0a0a 100%);
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.sd-hero .wrapper_1450 {
  width: 100%;
}

.sd-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sd-hero-text {
  flex: 0 0 55%;
  max-width: 55%;
}

.sd-hero-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 32px;
  gap: 4px;
}

.sd-title-line {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6.5vw, 80px);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
  text-decoration: none;
}

.sd-title-gradient {
  background: linear-gradient(90deg, #87AACA 0%, #ABA4E2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sd-hero-sub {
  color: #999999;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 560px;
}

.sd-hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #87AACA, #ABA4E2, #c4a8e8, #87AACA);
  background-size: 300% 100%;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-position 0.6s ease, color 0.4s ease;
}

.sd-hero-btn:hover {
  animation: gradientShift 2s ease infinite, textColorShift 2s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes textColorShift {
  0%   { color: #ffffff; }
  25%  { color: #f0eeff; }
  50%  { color: #d6cff7; }
  75%  { color: #f0eeff; }
  100% { color: #ffffff; }
}

.sd-hero-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-hero-media video {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .sd-hero {
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .sd-hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .sd-hero-text {
    flex: unset;
    max-width: 100%;
  }

  .sd-hero-media {
    width: 100%;
  }
}

/* ===========================
   Footer CTA
   =========================== */
/* ===========================
   service-dev.html — Testimonials
   =========================== */
.sd-testimonials {
  background-color: #0a0a0a;
  padding: 80px 0 100px;
}

.sd-testi-track {
  position: relative;
  max-width: 780px;
  margin: 0 auto 40px;
  /* height set by JS to match tallest card */
}

.sd-testi-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  border: 1px solid rgba(171, 164, 226, 1);
  border-radius: 20px;
  padding: 56px 60px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.sd-testi-card.active {
  opacity: 1;
  pointer-events: auto;
}

.sd-testi-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #ffffff;
  margin: 0 0 40px;
}

.sd-testi-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sd-testi-author img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.sd-testi-author div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sd-testi-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.sd-testi-company {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #a6a6a6;
}

.sd-testi-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sd-dot {
  position: relative;
  overflow: hidden;
  height: 6px;
  width: 32px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease;
}

.sd-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #87AACA, #ABA4E2);
  border-radius: 3px;
}

.sd-dot.active {
  width: 48px;
}

.sd-dot.active::before {
  animation: sdDotFill 5s linear forwards;
}

/* ===========================
   service-dev.html — Proof of Impact
   =========================== */
.sd-impact {
  background-color: #0a0a0a;
  padding: 100px 0;
}

.sd-impact-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.sd-impact-text {
  flex: 0 0 50%;
  max-width: 50%;
}

.sd-impact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ABA4E2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.sd-impact-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 36px;
}

.sd-impact-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}

.sd-impact-accent {
  color: #ABA4E2;
}

.sd-impact-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #a6a6a6;
  line-height: 1.8;
  margin: 0;
  max-width: 560px;
}

.sd-impact-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.sd-impact-media > img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 1040px) {
  .sd-impact-inner {
    flex-direction: column;
    gap: 48px;
  }

  .sd-impact-text {
    flex: unset;
    max-width: 100%;
  }

}

/* ===========================
   service-dev.html — The People
   =========================== */
.sd-people {
  background-color: #0a0a0a;
  padding: 100px 0 160px;
}

.sd-people-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sd-people-text {
  flex: 0 0 45%;
  max-width: 45%;
}

.sd-people-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ABA4E2;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.sd-people-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 32px;
}

.sd-people-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #a6a6a6;
  line-height: 2;
  margin: 0;
}

/* The card */
.sd-people-card {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}

.sd-people-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1040px) {
  .sd-people-inner {
    flex-direction: column;
    gap: 48px;
  }

  .sd-people-text {
    flex: unset;
    max-width: 100%;
  }
}

/* ===========================
   service-dev.html — What We Bring
   =========================== */
.sd-what {
  background-color: #0a0a0a;
  padding: 100px 0;
}

.sd-what-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #ABA4E2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.sd-what-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 80px;
}

.sd-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.sd-what-col {
  display: flex;
  flex-direction: column;
}

.sd-what-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 500;
  color: #C9C6EE;
  line-height: 1;
  margin-bottom: 20px;
}

.sd-what-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.3;
}

.sd-what-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #a6a6a6;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 1040px) {
  .sd-what-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@keyframes sdDotFill {
  from { width: 0; }
  to   { width: 100%; }
}

@media (max-width: 768px) {
  .sd-testi-card {
    padding: 36px 28px;
  }

  .sd-testi-quote {
    font-size: 16px;
  }
}

/* ===========================
   service-dev.html — Trusted By
   =========================== */
.sd-trusted {
  background-color: #0a0a0a;
  padding: 0 0 80px;
  text-align: center;
}

.sd-trusted-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ABA4E2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.sd-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sd-logos img {
  height: 26px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

/* Individual logo size tuning */
.sd-logos img:nth-child(1) { height: 30px; } /* Palo Alto */
.sd-logos img:nth-child(2) { height: 26px; } /* Mobileye */
.sd-logos img:nth-child(3) { height: 30px; } /* Guesty */
.sd-logos img:nth-child(4) { height: 24px; } /* Axiom */
.sd-logos img:nth-child(5) { height: 18px; } /* Mixtiles — text logo */

.sd-logos img:hover {
  opacity: 1;
}

.sd-divider {
  width: 100%;
  max-width: 800px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 48px;
}

.sd-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 120px;
}

.sd-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sd-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg, #87AACA 0%, #ABA4E2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sd-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #a6a6a6;
}

@media (max-width: 768px) {
  .sd-logos {
    gap: 32px;
  }

  .sd-stats {
    gap: 48px;
    flex-wrap: wrap;
  }
}

.services2-page #pink-footer {
  background: linear-gradient(135deg, #C2C2E8 0%, #E8D0D8 50%, #D0C0DC 100%);
  padding: 120px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services2-page #pink-footer .wrapper_1450 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services2-page #pink-footer h3 {
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 40px;
}

.services2-page #pink-footer h3 .anim-text-wrap {
  display: inline;
}

.services2-page #pink-footer a {
  display: inline-block;
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.services2-page #pink-footer a:hover {
  opacity: 0.8;
}

/* ===========================
   Footer
   =========================== */
.services2-page .footer,
.services2-page .footer-end {
  background-color: #f0e8ee;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1040px) {
  .s2-service-row,
  .s2-service-row--reverse {
    flex-direction: column;
    gap: 40px;
  }

  .s2-service-text {
    flex: unset;
    max-width: 100%;
  }

  .s2-service-card {
    width: 100%;
    min-height: 300px;
  }

  .s2-service-card img {
    height: auto;
  }

  .s2-team-groups {
    flex-direction: column;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .s2-hero-title {
    font-size: 36px;
  }

  .s2-hero {
    padding: 120px 24px 80px;
  }

  .s2-section {
    padding: 60px 24px;
  }

  .s2-service-title {
    font-size: 28px;
  }

  .s2-team-card {
    padding: 50px 24px;
  }

  .s2-team-title {
    font-size: 32px;
  }
}

/* ===========================
   Title font reductions at 1100px
   =========================== */
@media (max-width: 1100px) {
  .sd-impact-line {
    font-size: 44px;
  }

  .sd-impact-text {
    width: 100%;
    max-width: 100%;
  }

  .sd-what-title {
    font-size: 44px;
  }

  .sd-people-title {
    font-size: 40px;
  }

  .s2-hero-title {
    font-size: 52px;
  }

  .s2-service-title {
    font-size: 32px;
  }
}

/* Services List — service-dev */
.sd-services-list {
  background-color: #0a0a0a;
  padding: 100px 0;
}

.sd-services-list-title {
  font-size: 64px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 60px;
  letter-spacing: -3px;
}

.sd-services-list-title span {
  color: #ABA4E2;
}

.sd-services-items {
  display: flex;
  flex-direction: column;
}

.sd-services-item {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sd-services-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sd-services-num {
  font-size: 48px;
  font-weight: 500;
  color: #C9C6EE;
  opacity: 1;
  min-width: 80px;
  line-height: 1;
  letter-spacing: -2px;
}

.sd-services-content {
  padding-top: 4px;
}

.sd-services-item-title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: 0;
}

.sd-services-item-body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

/* CTA Section — service-dev */
.sd-cta-section {
  background-color: #0a0a0a;
  padding: 60px 40px 100px;
  position: relative;
}

.sd-cta-card {
  position: relative;
  background: linear-gradient(160deg, #c8c0e8 0%, #e8cfd8 100%);
  border-radius: 24px;
  text-align: center;
  padding: 80px 40px 120px;
  overflow: visible;
  max-width: 1450px;
  margin: 0 auto;
}

.sd-cta-logo {
  width: 100px;
  margin-bottom: 32px;
}

.sd-cta-title {
  font-size: 44px;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.15;
  margin: 0 0 20px;
}

.sd-cta-sub {
  font-size: 24px;
  color: #0a0a0a;
  opacity: 0.7;
  margin: 0 0 40px;
}

.sd-cta-btn {
  display: inline-block;
  position: relative;
  background: #0a0a0a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 48px;
  border-radius: 100px;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
}

.sd-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, #87AACA, #ABA4E2, #c4a8e8, #87AACA);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: ctaGradMove 3s linear infinite paused;
  z-index: -1;
}

.sd-cta-btn:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@keyframes ctaGradMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.sd-cta-coins {
  position: absolute;
  bottom: -80px;
  left: -30px;
  width: 340px;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 1100px) {
  .sd-cta-section {
    padding: 60px 24px 140px;
  }
  .sd-cta-title {
    font-size: 40px;
  }
  .sd-cta-coins {
    width: 240px;
    bottom: -60px;
  }
}

@media (max-width: 768px) {
  .sd-cta-section {
    padding: 40px 20px 140px;
  }
  .sd-cta-title {
    font-size: 32px;
  }
  .sd-cta-coins {
    width: 160px;
    bottom: -40px;
    left: -15px;
  }
}
