@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap");
:root {
  --primary-purple: #3d007d;
  --secondary-purple: #6c00d9;
  --dark-purple: #2e0052;
  --accent-orange: #e87722;
  --bg-light: #f0f2f8;
  --bg-stats: #ccd0e8;
  --text-dark: #1a0b2e;
  --text-muted: #888888;
  --font-outfit: "Outfit", sans-serif;
  --font-poppins: "Poppins", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: var(--font-outfit);
  line-height: 1.5;
  color: var(--text-dark);
  background-color: rgb(255, 255, 255);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0px 1.5rem;
  }
}

header {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 2rem;
  z-index: 1000;
  background: transparent;
}

header img {
  width: 130px;
  height: auto;
}

.slider {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: radial-gradient(
    at 0% 0%,
    rgb(236, 238, 255) 0%,
    rgb(245, 245, 252) 40%,
    rgb(255, 255, 255) 100%
  );
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(108, 0, 217, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  right: 10%;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(61, 0, 125, 0.18) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: 5%;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(150, 80, 255, 0.15) 0%,
    transparent 70%
  );
  top: 30%;
  left: 40%;
}

.slider-background-img {
  position: absolute;
  top: 0px;
  right: -2%;
  width: 42%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.rocket-decor {
  width: 100%;
  max-width: 310px;
  height: auto;
  transform: rotate(5deg) translateY(-20px);
  opacity: 0.95;
  filter: drop-shadow(rgba(150, 80, 255, 0.45) 0px 40px 80px);
  animation: 5s ease-in-out 0s infinite normal none running rocketFloat;
}

@keyframes rocketFloat {
  0%,
  100% {
    transform: rotate(10deg) translateY(-20px);
  }

  50% {
    transform: rotate(10deg) translateY(-36px);
  }
}

.floating-g {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 200px;
  height: auto;
  z-index: 6;
  opacity: 0.8;
  filter: drop-shadow(rgba(108, 0, 217, 0.2) 0px 20px 60px);
  animation: 4s ease-in-out 0s infinite normal none running gFloat;
}

@keyframes gFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(-4deg);
  }

  50% {
    transform: translateY(-12px) rotate(-4deg);
  }
}

.slider-content {
  position: relative;
  width: 100%;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.6fr 1.15fr;
  gap: 3.5rem;
  padding: 4rem 0px;
  align-self: center;
}

.slider-content-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-container {
  display: inline-flex;
  margin-bottom: 2rem;
}

.slider-content-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--secondary-purple),
    var(--primary-purple)
  );
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-family: var(--font-outfit);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  box-shadow: rgba(108, 0, 217, 0.5) 0px 6px 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.slider-content-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(108, 0, 217, 0.7) 0px 10px 32px;
}

.slider-subtext {
  font-size: 1.7rem;
  font-weight: 600;
  color: rgb(46, 0, 82);
  line-height: 1.35;
  width: 100%;
  max-width: 580px;
  margin-bottom: 0.5rem;
}

.slider-title {
  font-family: var(--font-outfit);
  font-size: 76px;
  font-weight: 800;
  color: rgb(46, 0, 82);
  line-height: 0.88;
  letter-spacing: -0.055em;
  margin-top: 0.3rem;
  text-transform: none;
}

.slider-title span {
}

.partner-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 0.8rem 1.4rem;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 15px;
  transition: transform 0.2s;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px;
}

.partner-card img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.partner-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.partner-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.partner-type {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}

.slider-content-right {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}

.form-card {
  background: rgb(255, 255, 255);
  border-radius: 24px;
  padding: 2rem 2rem 1.6rem;
  width: 100%;
  max-width: 420px;
  box-shadow:
    rgba(0, 0, 0, 0.22) 0px 40px 100px,
    rgba(0, 0, 0, 0.08) 0px 4px 20px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-card h3 {
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(102, 102, 102);
  line-height: 1.2;
}

.form-card h3 span {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--dark-purple);
  margin-top: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.form-group label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgb(232, 236, 244);
  border-radius: 10px;
  font-family: var(--font-outfit);
  font-size: 0.85rem;
  color: var(--text-dark);
  background: rgb(247, 248, 252);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-group input::placeholder {
  color: rgb(192, 198, 216);
}

.form-group input:focus {
  border-color: var(--secondary-purple);
  background: rgb(255, 255, 255);
  box-shadow: rgba(108, 0, 217, 0.08) 0px 0px 0px 3px;
}

.form-submit-btn {
  width: 100%;
  padding: 0.9rem;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  border-radius: 12px;
  background: rgb(255, 138, 0);
  color: rgb(255, 255, 255);
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: rgba(125, 60, 0, 0.4) 0px 8px 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 0.15rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(61, 0, 125, 0.55) 0px 12px 32px;
}

.form-submit-btn:active {
  transform: translateY(0px);
}

.form-footer-text {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .slider-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10rem 0px 4rem;
    gap: 3rem;
  }

  .slider-content-left {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .slider-content-right {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 10px;
  }

  .slider-subtext {
    max-width: 100%;
    margin: 0px auto;
  }

  .slider-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .slider-background-img {
    right: -15%;
    width: 45%;
    opacity: 0.2;
  }

  .floating-g,
  .mobile-hidden-br {
    display: none;
  }

  .partner-logos {
    justify-content: center;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .slider-content {
    padding: 7rem 0px 3rem;
    gap: 2rem;
  }

  .slider-background-img {
    display: none;
  }

  .slider-title {
    font-size: 2.6rem;
    line-height: 1.1;
  }

  .slider-title span {
    display: inline;
  }

  .slider-subtext {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .form-card {
    padding: 1.4rem 1.2rem;
  }

  .form-card h3 {
    font-size: 1.3rem;
  }

  .partner-card {
    padding: 0.6rem 0.8rem;
    gap: 0.5rem;
  }

  .partner-name {
    font-size: 0.8rem;
  }

  .partner-type {
    font-size: 0.6rem;
  }

  .partner-card img {
    height: 16px;
  }

  .form-group label {
    font-size: 0.55rem;
  }

  .form-group input {
    font-size: 0.85rem;
    padding: 0.7rem;
  }
}

.partner-card {
  min-width: 0px;
}

.stats-section {
  background: linear-gradient(
    160deg,
    rgb(200, 204, 223) 0%,
    rgb(212, 216, 236) 40%,
    rgb(191, 196, 218) 100%
  );
  padding: 7rem 0px 6rem;
}

.stats-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0px;
}

.stats-heading {
  text-align: center;
}

.stats-number {
  font-family: var(--font-outfit);
  font-weight: 800;
  color: var(--dark-purple);
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: clamp(3rem, 7vw, 5rem);
}

.stats-subtitle {
  font-family: var(--font-outfit);
  font-weight: 400;
  color: var(--dark-purple);
  margin-top: 0.3rem;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.ads-dashboard-card {
  width: 100%;
  max-width: 860px;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow:
    rgba(0, 0, 0, 0.08) 0px 8px 40px,
    rgba(0, 0, 0, 0.04) 0px 2px 8px;
  overflow: hidden;
  border: 1px solid rgb(232, 234, 240);
  box-shadow: 0px 4px 26.9px 0px #00000069;
}

.ads-dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid rgb(240, 240, 245);
  background: rgb(250, 251, 254);
}

.ads-tab {
  font-size: 0.78rem;
  color: rgb(85, 85, 85);
  cursor: pointer;
  padding: 0.3rem 0px;
}

.active-tab {
  color: rgb(26, 115, 232);
  font-weight: 600;
  border-bottom: 2px solid rgb(26, 115, 232);
}

.ads-tab-add {
  font-size: 0.75rem;
  color: rgb(26, 115, 232);
  cursor: pointer;
}

.ads-tab-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgb(170, 170, 170);
  font-size: 0.6rem;
  color: rgb(102, 102, 102);
  cursor: pointer;
}

.ads-topbar-actions {
  margin-left: auto;
  display: flex;
  gap: 0.4rem;
}

.ads-action-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  color: rgb(85, 85, 85);
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  cursor: pointer;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.ads-action-btn:hover {
  background: rgb(240, 240, 248);
}

.ads-metrics-row {
  display: flex;
  align-items: stretch;
  gap: 0px;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid rgb(240, 240, 245);
  flex-wrap: nowrap;
}

.ads-metric-chip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  margin-right: 0.45rem;
  min-width: 90px;
}

.chip-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.chip-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-top: 0.1rem;
}

.chip-blue {
  background: rgb(26, 115, 232);
}

.chip-red {
  background: rgb(234, 67, 53);
}

.chip-orange {
  background: rgb(249, 171, 0);
}

.chip-green {
  background: rgb(52, 168, 83);
}

.ads-metric-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.ads-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: none;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  cursor: pointer;
  font-size: 0.58rem;
  color: rgb(85, 85, 85);
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.ads-icon-btn:hover {
  background: rgb(240, 240, 248);
}

.ads-more-btn {
  font-size: 1.1rem;
  color: rgb(85, 85, 85);
  padding: 0.35rem;
}

.ads-chart-area {
  padding: 0.8rem 1.2rem 0.3rem;
  position: relative;
}

.ads-chart-area canvas {
  width: 100% !important;
  height: 160px !important;
}

.ads-chart-dates {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: rgb(153, 153, 153);
  padding: 0.3rem 0px 0.6rem;
}

.stat-cards-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 860px;
}

.stat-card {
  flex: 1 1 0%;
  min-width: 240px;
  max-width: 300px;
  background: rgb(42, 16, 96);
  border-radius: 20px;
  padding: 2rem 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: rgba(26, 11, 46, 0.2) 0px 15px 45px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(46, 0, 82, 0.3) 0px 16px 40px;
}

.stat-card-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgb(255, 255, 255);
  font-family: var(--font-outfit);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.stat-card-label {
  font-family: var(--font-outfit);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .ads-metrics-row {
    flex-wrap: wrap;
  }

  .ads-metric-chip {
    min-width: auto;
    flex: 1 1 45%;
  }

  .ads-metric-actions {
    width: 100%;
    justify-content: flex-end;
    margin-top: 0.5rem;
  }

  .stat-card {
    min-width: 100%;
    max-width: 100%;
  }

  .ads-topbar-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .ads-metric-chip {
    flex: 1 1 100%;
    margin-right: 0px;
    margin-bottom: 0.5rem;
  }

  .ads-metrics-row {
    padding: 1rem;
  }
}

.services-section {
  background: rgb(240, 242, 248);
  padding: 8rem 0px 6rem;
}

.services-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.services-heading {
  text-align: center;
  max-width: 700px;
}

.services-title {
  font-family: var(--font-outfit);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-purple);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.services-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(85, 85, 85);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 960px;
}

.service-card {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 18px;
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition:
    box-shadow 0.22s,
    transform 0.22s;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 2px 10px;
}

.service-card:hover {
  box-shadow: rgba(108, 0, 217, 0.1) 0px 12px 40px;
  transform: translateY(-4px);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgb(240, 236, 250);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.seo-icon span {
  font-family: var(--font-outfit);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgb(108, 0, 217);
  letter-spacing: 0.05em;
}

.service-card-title {
  font-family: var(--font-outfit);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-purple);
  margin-top: 0.15rem;
}

.service-card-desc {
  font-size: 0.85rem;
  color: rgb(102, 102, 102);
  line-height: 1.6;
  flex: 1 1 0%;
}

.service-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--secondary-purple);
  text-decoration: none;
  transition: color 0.18s;
}

.service-card:hover .service-card-link {
  color: var(--primary-purple);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.services-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f08330, var(--accent-orange));
  color: rgb(255, 255, 255);
  font-family: var(--font-outfit);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 2.8rem;
  border-radius: 12px;
  box-shadow: rgba(232, 119, 34, 0.35) 0px 8px 24px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.services-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(232, 119, 34, 0.5) 0px 14px 32px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.refs-section {
  background: rgb(236, 238, 247);
  padding: 6rem 0px 5rem;
}

.refs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}

.refs-heading {
  text-align: center;
  max-width: 720px;
}

.refs-title {
  font-family: var(--font-outfit);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-purple);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.refs-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(85, 85, 85);
  margin-top: 0.75rem;
  line-height: 1.65;
}

.refs-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  max-width: 820px;
}

.refs-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.ref-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.ref-card:hover {
  transform: scale(1.015);
  box-shadow: rgba(46, 0, 82, 0.25) 0px 20px 50px;
}

.ref-card--large {
  height: 310px;
  background-color: rgb(30, 45, 107);
  background-image:
    url("public/image/ref-workon.png"),
    linear-gradient(135deg, rgb(30, 45, 107) 0%, rgb(46, 27, 94) 100%);
}

.ref-card--small {
  height: 200px;
  background-color: rgb(30, 48, 80);
  background-image:
    url("public/image/ref-amerikan.png"),
    linear-gradient(135deg, rgb(26, 45, 85) 0%, rgb(42, 26, 82) 100%);
}

.ref-card--small:last-child {
  background-image:
    url("public/image/ref-wenqr.png"),
    linear-gradient(135deg, rgb(30, 45, 94) 0%, rgb(40, 26, 64) 100%);
}

.ref-card-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(26, 11, 46, 0.15) 0%,
    rgba(26, 11, 46, 0.85) 100%
  );
  z-index: 1;
}

.ref-card-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.5rem;
  z-index: 2;
  color: rgb(255, 255, 255);
}

.ref-brand {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.ref-stat {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ref-card--small .ref-stat {
  font-size: 2rem;
}

.ref-sub {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 0.3rem;
}

.refs-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.refs-cta-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--secondary-purple),
    var(--primary-purple)
  );
  color: rgb(255, 255, 255);
  font-family: var(--font-outfit);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  box-shadow: rgba(108, 0, 217, 0.3) 0px 8px 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.refs-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(108, 0, 217, 0.45) 0px 14px 36px;
}

.refs-trust {
  font-size: 0.7rem;
  color: rgb(136, 136, 136);
  text-align: center;
}

@media (max-width: 600px) {
  .refs-grid-bottom {
    grid-template-columns: 1fr;
  }

  .ref-card--large {
    height: 220px;
  }
}

.process-section {
  background: rgb(236, 238, 247);
  padding: 6rem 0px 5.5rem;
}

.process-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.process-heading {
  text-align: center;
  max-width: 800px;
}

.process-title {
  font-family: var(--font-outfit);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-purple);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.process-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(85, 85, 85);
  margin-top: 0.8rem;
  line-height: 1.65;
}

.process-timeline {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.timeline-track {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(108, 0, 217, 0.3) 0%,
    rgba(108, 0, 217, 0.6) 50%,
    rgba(108, 0, 217, 0.3) 100%
  );
  transform: translateY(-50%);
}

.timeline-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgb(61, 0, 125);
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(61, 0, 125, 0.18) 0px 0px 0px 4px;
}

.dot-1 {
  left: 16.66%;
}

.dot-2 {
  left: 50%;
}

.dot-3 {
  left: 83.33%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  margin-top: 1.6rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: 0px 1.5rem;
}

.step-pill {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--secondary-purple),
    var(--primary-purple)
  );
  color: rgb(255, 255, 255);
  font-family: var(--font-outfit);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: rgba(108, 0, 217, 0.2) 0px 4px 16px;
}

.step-desc {
  font-family: var(--font-outfit);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgb(85, 85, 85);
  line-height: 1.65;
  max-width: 220px;
}

@media (max-width: 700px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .timeline-track {
    display: none;
  }

  .process-step {
    padding: 0px;
  }
}

.portfolio-slider-section {
  background: rgb(236, 238, 247);
  padding: 5.5rem 0px 6rem;
  overflow: hidden;
}

.portfolio-slider-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.portfolio-slider-heading {
  text-align: center;
  max-width: 700px;
}

.portfolio-slider-title {
  font-family: var(--font-outfit);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-purple);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.portfolio-slider-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(85, 85, 85);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.portfolio-swiper {
  width: 100%;
  max-width: 1100px;
  padding: 2.5rem 0px 5rem !important;
  overflow: visible !important;
}

.portfolio-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  opacity: 0.5;
  transform: scale(0.9);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.portfolio-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.portfolio-swiper .swiper-slide-prev,
.portfolio-swiper .swiper-slide-next {
  opacity: 0.7;
  transform: scale(0.95);
}

.macbook-mockup {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(rgba(61, 0, 125, 0.2) 0px 20px 50px);
}

.macbook-frame {
  width: 100%;
  background: rgb(42, 42, 58);
  border-radius: 14px 14px 0px 0px;
  border: 2px solid rgb(58, 58, 74);
  overflow: hidden;
  position: relative;
  padding-top: 16px;
  padding-bottom: 0px;
}

.macbook-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 10px;
  border-radius: 0px 0px 6px 6px;
  background: rgb(26, 26, 40);
  z-index: 5;
}

.macbook-screen {
  background: rgb(255, 255, 255);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.macbook-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.macbook-chin {
  width: 100%;
  height: 22px;
  background: linear-gradient(rgb(42, 42, 58) 0%, rgb(35, 35, 46) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid rgb(58, 58, 74);
  border-right: 2px solid rgb(58, 58, 74);
}

.macbook-logo {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.macbook-base-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.macbook-hinge {
  width: 100%;
  height: 6px;
  background: linear-gradient(rgb(138, 138, 154) 0%, rgb(106, 106, 122) 100%);
  border-radius: 0px 0px 2px 2px;
}

.macbook-bottom {
  width: 110%;
  height: 26px;
  background: linear-gradient(rgb(168, 168, 184) 0%, rgb(136, 136, 152) 100%);
  border-radius: 0px 0px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.macbook-label {
  font-family: var(--font-outfit);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(26, 26, 46, 0.6);
  letter-spacing: 0.08em;
}

.portfolio-swiper .swiper-button-prev {
  left: -60px;
}

.portfolio-swiper .swiper-button-next {
  right: -60px;
}

.portfolio-swiper .swiper-button-prev,
.portfolio-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  box-shadow: rgba(61, 0, 125, 0.2) 0px 8px 30px;
  top: 45%;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}

.portfolio-swiper .swiper-button-prev:hover,
.portfolio-swiper .swiper-button-next:hover {
  background: var(--secondary-purple);
  box-shadow: rgba(108, 0, 217, 0.4) 0px 8px 28px;
  transform: scale(1.08);
}

.portfolio-swiper .swiper-button-prev::after,
.portfolio-swiper .swiper-button-next::after {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-purple);
  transition: color 0.2s;
}

.portfolio-swiper .swiper-button-prev:hover::after,
.portfolio-swiper .swiper-button-next:hover::after {
  color: rgb(255, 255, 255);
}

.portfolio-swiper .swiper-pagination {
  bottom: 0.5rem;
}

.portfolio-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(108, 0, 217, 0.25);
  opacity: 1;
  transition: 0.3s;
}

.portfolio-swiper .swiper-pagination-bullet-active {
  background: var(--secondary-purple);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .macbook-mockup {
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .portfolio-slider-section {
    padding: 4rem 0px 5rem;
  }

  .macbook-mockup {
    max-width: 300px;
  }

  .portfolio-swiper .swiper-button-prev,
  .portfolio-swiper .swiper-button-next {
    display: none;
  }
}

.instagram-section {
  background: rgb(240, 242, 248);
  padding: 7rem 0px 6rem;
}

.instagram-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.instagram-heading {
  text-align: center;
}

.instagram-title {
  font-family: var(--font-outfit);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}

.instagram-handle {
  font-family: var(--font-outfit);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgb(102, 102, 102);
  letter-spacing: 0.02em;
}

.instagram-posts-wrap {
  width: 100%;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 40px;
}

.insta-post {
  position: relative;
  /* aspect-ratio: 1 / 1; */
  overflow: hidden;
  display: block;
  width: 100%;
  /* height: 100%; */
  padding: 0.5rem;
}

.insta-post:hover .insta-post img {
  transform: scale(1.05);
}

.insta-type-icon {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.35rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-post img {
  width: 100%;
  /* height: 100%; */
  /* object-fit: cover; */
  /* object-position: center center; */
  display: block;
  transition: transform 0.35s;
}

.insta-overlay {
  position: absolute;
  inset: 0px;
  background: rgba(108, 0, 217, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.insta-post:hover {
  box-shadow: rgba(108, 0, 217, 0.2) 0px 16px 40px;
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

.instagram-cta {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2.5rem;
  background: rgb(255, 255, 255);
  border: 1.5px solid rgb(208, 212, 232);
  color: var(--dark-purple);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 4px 12px;
  transition: 0.3s;
}

.instagram-btn:hover {
  border-color: var(--dark-purple);
  background: var(--dark-purple);
  color: rgb(255, 255, 255);
  transform: translateY(-3px);
  box-shadow: rgba(46, 0, 82, 0.15) 0px 10px 25px;
}

@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-section {
    padding: 4rem 0px;
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-section {
  background: linear-gradient(
    160deg,
    rgb(236, 238, 247) 0%,
    rgb(232, 234, 245) 50%,
    rgb(236, 238, 247) 100%
  );
  padding: 7rem 0px 6rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-pill {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--secondary-purple),
    var(--primary-purple)
  );
  color: rgb(255, 255, 255);
  font-family: var(--font-outfit);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.95rem;
  border-radius: 50px;
  align-self: flex-start;
}

.contact-title {
  font-family: var(--font-outfit);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: rgb(13, 13, 26);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.contact-desc {
  font-size: 0.93rem;
  color: rgb(85, 85, 85);
  line-height: 1.7;
  max-width: 440px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  color: inherit;
}

.contact-info-item:hover {
  background: rgba(108, 0, 217, 0.06);
  transform: translateX(4px);
}

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgb(255, 255, 255);
  border: 1.5px solid rgba(108, 0, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary-purple);
  box-shadow: rgba(108, 0, 217, 0.06) 0px 2px 8px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-info-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(13, 13, 26);
  line-height: 1.45;
}

.contact-right {
  display: flex;
  justify-content: center;
}

.contact-office-card {
  width: 100%;
  max-width: 600px;
  background: white;
  padding: 12px;
  border-radius: 32px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-office-img {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.contact-office-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-office-card:hover .contact-office-img img {
  transform: scale(1.05);
}

.contact-office-footer {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.contact-office-footer-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.coffee-title {
  font-family: var(--font-outfit);
  font-size: 1.1rem;
  font-weight: 800;
  color: #2e0052;
}

.coffee-hours {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #2e0052;
  color: white;
  font-family: var(--font-outfit);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  transform: translateY(-2px);
  background: #3d007d;
  box-shadow: 0 6px 20px rgba(46, 0, 82, 0.3);
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-right {
    order: -1;
  }

  .contact-office-card {
    max-width: 100%;
  }

  .contact-office-img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .contact-office-img {
    height: 380px;
  }

  .contact-office-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 1.2rem;
    gap: 1rem;
  }

  .contact-pill,
  .contact-title,
  .contact-desc {
    align-self: center;
    text-align: center;
  }

  .contact-info-item {
    justify-content: center;
  }
}

.site-footer {
  background: white;
  color: rgb(85, 85, 85);
  font-family: var(--font-outfit);
  border-top: 1px solid rgb(240, 240, 245);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4rem 0px 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  text-align: left;
  max-width: 400px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.footer-bottom {
  padding: 2rem 0px;
  border-top: none;
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .footer-inner {
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .footer-brand {
    text-align: center;
  }
}

.partners {
  padding: 60px 0px;
  background-color: rgb(46, 0, 82);
}

.partners .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.partners-header {
  flex-shrink: 0;
}

.subtitle {
  font-family: var(--font-outfit);
  font-size: 11px;
  font-weight: 700;
  color: rgb(160, 174, 192);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.partners-header h2 {
  font-family: var(--font-outfit);
  font-size: 26px;
  font-weight: 800;
  color: rgb(255, 255, 255);
  line-height: 1.2;
}

.partners-logos {
  flex: 1;
  min-width: 0; /* Important for Swiper inside Flex */
}

.partners-logos img {
  height: auto;
  max-height: 42px;
  width: auto;
  max-width: 150px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: 0.4s;
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .partners .container {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .partners .container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .partners-logos {
    width: 100%;
  }

  .partners-header h2 br {
    display: none;
  }
}

@media (max-width: 768px) {
  .partners {
    padding: 50px 0px;
  }

  .partners-header h2 {
    font-size: 22px;
  }

  .partners-logos img {
    max-height: 34px;
    max-width: 130px;
  }

  .partners-logos {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .partners {
    padding: 40px 0px;
  }

  .partners-header h2 {
    font-size: 20px;
  }

  .partners-logos img {
    max-height: 28px;
    max-width: 110px;
  }

  .partners-logos {
    width: 100%;
  }
}

/* =====================
   Modal Styles
   ===================== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 26, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  z-index: 2001;
  width: 90%;
  max-width: 480px;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark-purple);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.modal-close:hover {
  transform: scale(1.1);
  background: var(--bg-light);
}

.modal .form-card {
  max-width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
  .modal-container {
    width: 95%;
  }
}

/* =====================
   Mobile Sticky CTA
   ===================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  display: none;
  pointer-events: none;
}

.cta-sticky-btn {
  pointer-events: auto;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: #e87722;
  color: white;
  border: none;
  padding: 1.1rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 12px 32px rgba(232, 119, 34, 0.45);
  animation: slideStickyUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideStickyUp {
  from {
    transform: translateY(120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}
