:root {
  --blue: #4b57ff;
  --ink: #141720;
  --muted: #555a73;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

/* HERO */
.hero {
  min-height: 560px;
  padding: 56px 0 40px;
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f7f4ff 45%, #e1dcff 100%);
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(80, 92, 170, 0.18);
}

/* LEFT SIDE */
.hero-copy h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  max-width: 620px;
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.45;
  max-width: 530px;
  color: var(--muted);
  margin: 22px 0 28px;
}

/* Chips */
.chips {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.chips span {
  background: linear-gradient(90deg, #ffffff 0%, #d7cfff 100%);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 14px;
  color: #4a4d70;
  font-weight: 600;
}

/* Postcode */
.postcode-row {
  display: flex;
  gap: 16px;
}

.postcode-input {
  height: 54px;
  min-width: 300px;
  border: 1px solid #e4e6f2;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.postcode-input svg {
  width: 18px;
  height: 18px;
  fill: #868ba3;
}

.postcode-input input {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 16px;
  font-family: inherit;
}

.cta-btn {
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #4a56ff 0%, #5361ff 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  min-width: 320px;
  cursor: pointer;
}

/* RIGHT SIDE */
.hero-media {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Rings */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(100, 108, 255, 0.12);
  background: rgba(143, 134, 255, 0.07);
}

.ring-a {
  width: 520px;
  height: 520px;
  right: -40px;
  top: -120px;
}

.ring-b {
  width: 400px;
  height: 400px;
  right: 10px;
  top: -80px;
}

.ring-c {
  width: 290px;
  height: 290px;
  right: 60px;
  top: -30px;
}

/* Phone */
.phone {
  position: relative;
  width: min(500px, 100%);
  max-height: 540px;
  object-fit: contain;
  z-index: 2;
}

/* Calendar badge */
.calendar-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, #5a52c4, #4a45a8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.calendar-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile button */
.test-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #1a2140;
  border: 1px solid #e8e8f6;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-badge {
  background: #f1effd;
  color: #6f63ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.testimonial-title {
  font-size: 36px;
  font-weight: 700;
  margin: 20px 0 40px;
}

.testimonial-wrapper {
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 60px 38px 40px 80px; /* space for quote */
  max-width: 700px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* Big decorative quote */
.testimonials-quote-img {
  position: absolute;
  left: 48px;
  top: 20px;
  font-size: 120px;
  line-height: 1;
  color: #6f63ff;
  opacity: 0.15;
  pointer-events: none;
}

/* Text */
.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #555;
  position: relative;
  z-index: 1;
}

/* Arrows */
.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #6f63ff;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dots */
.testimonial-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.testimonial-dots {
  display: flex;
  gap: 6px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dot.active {
  width: 18px;
  background: #6f63ff;
  border-radius: 10px;
}

.testimonials-rings {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.testimonials-card > *:not(.testimonials-rings) {
  position: relative;
  z-index: 1;
}

.partnerships-section {
  padding: 24px 0 60px;
  background: #ffffff;
}

.partnerships-card {
  background: #ffffff;
  border: 1px solid #eceff6;
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 14px 30px rgba(20, 26, 55, 0.08);
}

.partnerships-copy h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  color: #111627;
}

.partnerships-copy {
  text-align: center;
}

.partnerships-copy p {
  margin: 0 auto;
  color: #5d647b;
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
}

.partnerships-form {
  display: grid;
  gap: 12px;
}

.partnerships-form .form-field {
  display: grid;
  gap: 6px;
}

.partnerships-form .form-field span {
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #6b7287;
  font-weight: 500;
}

.partnerships-form input {
  height: 48px;
  border-radius: 8px;
  border: 1px solid #e2e6f3;
  padding: 12px 16px;
  font-size: 13px;
  color: #1b2133;
  background: #ffffff;
  outline: none;
}

.partnerships-form input::placeholder {
  color: #98a0b6;
}

.partnerships-btn {
  margin-top: 4px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, #6a63ff 0%, #5b4bff 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 16px rgba(90, 96, 255, 0.25);
  max-width: 280px;
  position: relative;
  overflow: hidden;
}

.partnerships-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -35%;
  width: 75px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) skewX(57deg) rotate(-66deg);
  border-radius: 12px;
  animation: btn-sheen 3s ease-in-out infinite;
}

.business-reality-section {
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.business-reality-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #f1efff;
  color: #6b63ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.business-reality-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #141420;
}

.business-reality-subtitle {
  color: #6b6f85;
  font-size: 16px;
  margin-top: 8px;
}

/* Card */
.business-reality-issues-card {
  max-width: 520px;
  background: #f7f6ff;
  border-radius: 18px;
  padding: 28px 26px;
}

/* Items */
.business-reality-issue-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #7a77ff;
  padding: 10px 0;
  text-align: left;
  font-weight: 500;
}

/* Check */
.business-reality-check-icon {
  width: 22px;
  height: 22px;
  background: #e7e4ff;
  color: #7a77ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.business-reality-issue-item.active, .business-reality-check-icon.active {
  color: #6b63ff;
  font-weight: 600;
}

.business-reality-issue-item.faded, .business-reality-check-icon.faded {
  opacity: 0.4;
}

/* Badge */
.support-badge {
  background: #ece9ff;
  color: #6b5cff;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Card */
.support-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Content */
.support-content h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.support-content p {
  color: #666;
  margin-bottom: 20px;
}

.support-content ul {
  padding-left: 18px;
  margin-bottom: 60px;
}

.support-content ul li {
  color: #5a5a5a;
  margin-bottom: 10px;
}

/* Image */
.support-img {
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  transition: 0.3s ease;
}

.support-img:hover {
  transform: scale(1.05);
}

.footer-brand .logo-wrap {
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 0;
  max-width: 300px;
  color: #656b83;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links h4 {
  margin: 0 0 10px;
  color: #7b7f96;
  font-size: 12px;
  font-weight: 700;
}

.footer-links a {
  display: block;
  color: #1a1f34;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid #eef1fa;
  margin-top: 12px;
  padding-top: 10px;
  color: #8c91a8;
  font-size: 11px;
}

@media (max-width: 991px) {
  .business-reality-issues-card {
    max-width: 100%;
  }
  .partnerships-card {
    padding: 24px;
  }

  .partnerships-copy p {
    max-width: 100%;
  }

  .partnerships-btn {
    max-width: 100%;
    width: 100%;
  }
  
  .testimonials-section {
    padding: 20px 0 64px;
  }

  .testimonials-intro {
    margin-bottom: 22px;
  }

  .testimonials-carousel {
    max-width: 860px;
  }

  .testimonials-card {
    padding: 36px 38px 32px;
  }

  .testimonials-quote-img {
    font-size: 120px;
    left: 50px;
    top: 15px;
  }

  .support-card {
    text-align: center;
  }
  .support-content ul {
    text-align: left;
    display: inline-block;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .business-reality-issues-card {
    max-width: 100%;
  }
  .testimonials-card {
    padding: 28px 18px 24px;
  }

  .testimonials-text {
    font-size: 15px;
  }

  .testimonials-arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .testimonials-quote {
    font-size: 46px;
    top: 20px;
    left: 18px;
  }
  .testimonials-quote-img {
    font-size: 120px;
    left: 46px;
    top: 15px;
  }
  .testimonial-arrow-left,
  .testimonial-arrow-right {
    position: static;
    transform: none;
  }

  .support-card {
    text-align: center;
  }
  .support-content ul {
    text-align: left;
    display: inline-block;
  }
}