/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  background-color: #ffffff;
  padding: 20px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  width: 80px;
  height: auto;
}

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

.contact-btn {
  width: 162.85px;
  height: 44.83px;
  border-radius: 74.37px;
  padding: 12.07px 16.36px;
  background: #27316c;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0px 1.49px 2.97px rgba(0, 0, 0, 0.19),
    0px 4.46px 4.46px rgba(0, 0, 0, 0.16), 0px 11.15px 6.69px rgba(0, 0, 0, 0.1),
    0px 19.34px 7.44px rgba(0, 0, 0, 0.03), 0px 29.75px 8.18px rgba(0, 0, 0, 0),
    0px -6.04px 8.62px rgba(0, 0, 0, 0.4) inset,
    0px 3.45px 8.62px rgba(255, 255, 255, 0.3) inset;
}

.contact-btn:hover {
  background: #1e2858;
}

/* Hero Content */
.hero-content {
  text-align: center;
  padding-top: 80px;
  max-width: 1114px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-heading {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #000;
  letter-spacing: -1px;
}

.hero-heading .highlight {
  color: #f4873f;
  font-style: italic;
}

/* Split CTA Box */
.cta-box {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 14.74px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  width: 723.45px;
  height: 72.71px;
  border: 2px solid #27316c;
}

.cta-left {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
}

.cta-main {
  background: linear-gradient(90deg, #27316c 9.29%, #4c5fd2 91.34%);
  font-size: 29px;
  font-weight: 600;
  width: 360px;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 7.71px;
  color: white;
  justify-content: center;
}

.cta-left p {
  color: #27316c;
  font-size: 21px;
  font-weight: 500;
}

.cta-right {
  background: white;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  flex: 1;
  border: 2px solid #4c5fd2;
  border-left: none;
}

.cta-sub {
  font-size: 14px;
  font-weight: 500;
}

/* Note Text */
.note-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
}

/* Strategy Button (global) */
.strategy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #f4873f 0%, #ff6b35 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 30px;
  box-shadow: 0px 2.82px 5.64px #00000014, 0px 10.35px 10.35px #00000012,
    0px 23.51px 14.11px #0000000a, 0px 41.39px 16.93px #00000003,
    0px 63.96px 17.87px #00000000, 0px 0px 6.87px #bf4f0640,
    0px -6.58px 9.69px #bf4f06 inset, 0px 5.64px 10.53px #fdb687 inset;
  transition: all 0.3s ease;
}

.strategy-btn:hover {
  transform: translateY(-2px);
}

/* Testimonial Box */
.testimonial-box {
  background: white;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px 30px;
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-text {
  font-size: 12px;
  color: #333;
}

.testimonial-text strong {
  color: #27316c;
}

/* Flow Diagram - WITH VECTOR IMAGE */
.flow-diagram {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 80px 0;
  min-height: 500px;
}

.flow-left-container {
  margin-top: 150px;
  position: relative;
}

.flow-center-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.flow-right-container {
  margin-top: -109px;
  position: relative;
}

/* BOXES - Original Size (389px × 229px) */
.flow-box {
  width: clamp(260px, 28vw, 389px);
  height: clamp(160px, 16.5vw, 229px);
  background: #ffffff;
  border-radius: clamp(20px, 2.5vw, 30px);
  border: 3px solid #27316c;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-right {
  background-image: url(/hero-img-1.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.flow-left {
  background-image: url(/hero-img-2.jpeg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Images inside boxes */
.flow-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(18px, 2.2vw, 27px);
}

/* Vector Image */
.vector-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 287px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* CC Logo in center - SIMPLE GRADIENT */
.flow-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  background: linear-gradient(90deg, #27316c 9.29%, #4c5fd2 91.34%);
  border-radius: 100%;
  box-shadow: 0px 4px 12px rgba(39, 49, 108, 0.3);
  right: -9px;
}

.flow-logo img {
  width: 50px;
  height: auto;
}

/* Tablet & smaller screens */
@media (max-width: 1024px) {
  .flow-diagram {
    min-height: 450px;
    padding: 60px 0;
    gap: 80px;
  }

  .flow-left-container {
    margin-top: 120px;
  }

  .vector-line {
    width: 234px;
  }

  .flow-logo {
    width: 70px;
    height: 70px;
  }

  .flow-logo img {
    width: 45px;
  }
}

/* Mobile - Vertical stack */
@media (max-width: 768px) {
  .flow-logo {
    position: relative;
  }

  .hero-section {
    padding: 20px 30px;
  }

  .hero-heading {
    font-size: 42px;
  }

  .cta-box {
    flex-direction: column;
    height: auto;
    width: 100%;
  }

  .cta-left {
    flex-direction: column;
  }

  .cta-main {
    width: 100%;
  }

  .cta-right {
    border: 2px solid #4c5fd2;
    border-top: none;
  }

  .flow-diagram {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 50px 0;
    min-height: auto;
  }

  .flow-left-container,
  .flow-center-container,
  .flow-right-container {
    margin-top: 0;
  }

  /* Hide vector line on mobile */
  .vector-line {
    content: url("vector-2.png"); /* straight line image */
    position: absolute;
    top: -65px;
    left: -128%;
    width: 148px;
    transform: rotate(180deg);
  }
  /* Mobile specific sizes */
  .flow-box {
    width: min(85vw, 320px);
    height: auto;
    aspect-ratio: 389 / 229;
  }

  .flow-logo {
    width: 60px;
    height: 60px;
  }

  .flow-logo img {
    width: 38px;
  }
}

@media (max-width: 480px) {
  .flow-box {
    width: min(90vw, 280px);
  }
}

/* Clients Section */
.clients-section {
  background-color: #f9f9f9;
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
}

/* Heading */
.clients-heading {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* Outer container */
.logos-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Scrolling row - FIXED INFINITE LOOP */
.logos-scroll {
  display: flex;
  align-items: center;
  gap: 80px;
  width: fit-content;
  animation: scroll 30s linear infinite;
}

/* Logo box */
.logo-item {
  flex-shrink: 0;
  min-width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-item img:hover {
  opacity: 1;
}

/* Perfect Loop Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

/* Pause on hover */
.logos-scroll:hover {
  animation-play-state: paused;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .clients-section {
    padding: 40px 20px;
  }

  .logos-scroll {
    gap: 50px;
    animation: scroll 20s linear infinite;
  }

  .logo-item {
    min-width: 100px;
    height: 50px;
  }

  .logo-item img {
    max-width: 100px;
    max-height: 50px;
  }
}
/* =========================
   MARKETING SECTION
========================= */
.marketing-section {
  background: #ffffff;
  padding: 20px;
  max-width: 1600px;
  margin: 0 auto;
}

.marketing-container {
  max-width: 1400px;
  margin: 0 auto;
}

.marketing-heading {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #000;
}

/* =========================
   INFO BOX
========================= */
.info-box {
  background: #fff;
  border: 2px solid #eaeaea;
  border-radius: 20px;
  padding: 32px 40px;
  margin: 0 auto 70px;
  max-width: 900px;
  position: relative;
}

.info-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f4873f, #ff6b35);
  color: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 14px;
}

.info-item i {
  color: #f4873f;
  font-size: 22px;
}

.info-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* =========================
   VIDEO SLIDER WRAPPER
========================= */
.video-slider-wrapper {
  margin-top: 30px;
  position: relative;
}

/* =========================
   VIDEO SLIDER TRACK
========================= */
.video-slider-track {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 15px 5px;
}

/* Disable text selection inside slider */
.video-slider-track,
.video-slider-track * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.video-slider-track::-webkit-scrollbar {
  display: none;
}

.video-slider-container {
  display: flex;
  gap: 35px;
  padding: 10px;
  width: max-content;
}

/* Mobile Center */
@media (max-width: 768px) {
  .video-slider-container {
    justify-content: center;
  }
}

/* =========================
   VIDEO CARD
========================= */
.video-card-box {
  width: 360px;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.35);
}

.card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   OVERLAY GRADIENT
========================= */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
}

/* =========================
   LEFT CONTENT
========================= */
.video-content {
  position: absolute;
  bottom: 22px;
  left: 20px;
  color: #fff;
  z-index: 2;
  max-width: 70%;
}

.video-content .username {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  display: block;
}

.video-content .description {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
  opacity: 0.9;
}

.views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0.85;
}

/* =========================
   RIGHT ACTIONS
========================= */
.video-actions {
  position: absolute;
  right: 16px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 12px;
}

.action-item i {
  font-size: 24px;
  margin-bottom: 4px;
}

.action-item img {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
}

/* =========================
   SLIDER DOTS
========================= */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0 0;
  margin-top: 16px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #d0d0d0;
  background: #e8e8e8;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: #c0c0c0;
  transform: scale(1.1);
}

/* Active dot (orange pill) */
.slider-dot.active {
  width: 28px;
  background: linear-gradient(90deg, #f4873f, #ff6b35);
  border-color: #f4873f;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .marketing-heading {
    font-size: 28px;
  }

  .info-badge {
    font-size: 12px;
    padding: 8px 20px;
  }

  .info-item p {
    font-size: 14px;
  }

  .video-card-box {
    width: 280px;
    height: 400px;
  }

  .video-content .username {
    font-size: 13px;
  }
  
  .video-content .description {
    font-size: 12px;
  }

  .video-actions {
    right: 16px;
    bottom: 5px;
  }
  
  .action-item i {
    font-size: 21px;
  }
  
  .action-item img {
    width: 21px;
    height: 21px;
  }

  .action-item {
    font-size: 10px;
  }
  
  .views {
    font-size: 12px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .slider-dot.active {
    width: 22px;
  }
}

@media (max-width: 480px) {
  .marketing-heading {
    font-size: 24px;
  }

  .video-card-box {
    width: 260px;
    height: 360px;
  }
}


/* Strategy Section */
.strategy-section {
  padding: 100px 80px;
}

.strategy-container {
  max-width: 1100px;
  margin: 0 auto;
}

.strategy-card {
  background: radial-gradient(
    107.62% 127.28% at 50% 104.5%,
    #4c5fd2 29.5%,
    #27316c 76.54%
  );
  border-radius: 40px;
  padding: 70px 60px 60px;
  text-align: center;
  box-shadow: 0px 20px 60px rgba(61, 77, 143, 0.3);
  position: relative;
  overflow: hidden;
}

.strategy-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.strategy-heading {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.strategy-subtext {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.strategy-subtext strong {
  font-weight: 700;
}

.strategy-card .strategy-btn {
  font-size: 20px;
  font-weight: 700;
  padding: 18px 45px;
  margin-bottom: 0;
  box-shadow: 0px 2.52px 5.87px #0712454d, 0px 11.75px 11.75px #07124542,
    0px 25.17px 15.1px #07124526, 0px 45.31px 18.46px #0712450d,
    0px 70.49px 20.14px #07124503, 0px -5.87px 8.64px #bf4f06 inset,
    0px 5.03px 9.4px #fdb687 inset;
}

.strategy-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 50px 0 35px;
  position: relative;
  z-index: 1;
}

.strategy-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.stars {
  display: flex;
  gap: 8px;
}

.stars i {
  font-size: 28px;
  color: #ffd700;
}

.rating-text {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}

/* Strategy Responsive */
@media (max-width: 1024px) {
  .strategy-section {
    padding: 80px 40px;
  }

  .strategy-heading {
    font-size: 46px;
  }

  .strategy-subtext {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .strategy-section {
    padding: 60px 20px;
  }

  .strategy-card {
    padding: 50px 30px 40px;
    border-radius: 30px;
  }

  .strategy-heading {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .strategy-subtext {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .strategy-card .strategy-btn {
    font-size: 16px;
    padding: 15px 35px;
  }

  .strategy-divider {
    margin: 40px 0 30px;
  }

  .stars i {
    font-size: 24px;
  }

  .rating-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .strategy-card {
    padding: 40px 20px 30px;
  }

  .strategy-heading {
    font-size: 26px;
  }

  .strategy-subtext {
    font-size: 14px;
  }

  .strategy-card .strategy-btn {
    font-size: 14px;
    padding: 13px 28px;
  }

  .stars i {
    font-size: 20px;
  }

  .rating-text {
    font-size: 13px;
  }
}

/* ================== JOURNEY SECTION ================== */

.journey-section {
  background: #ffffff;
  padding: 110px 80px 120px;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.journey-heading {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25;
  color: #161616;
  margin-bottom: 30px;
}

.journey-heading .highlight-text {
  color: #ff7b3a;
}

/* CTA Button */
.journey-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 70px;
  padding: 16px 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #27316c 0%, #1a2050 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 1.49px 2.97px rgba(0, 0, 0, 0.19),
    0px 4.46px 4.46px rgba(0, 0, 0, 0.16), 0px 11.15px 6.69px rgba(0, 0, 0, 0.1);
}

.btn-arrow {
  font-size: 18px;
}

/* ================== STEPS ================== */

.journey-steps {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.journey-step {
  background: #fff4ea;
  border-radius: 32px;
  border: 2px solid #ffb27b;
  padding: 40px 32px 34px;
  text-align: left;
  width: 340px;
}

.step-number {
  font-size: 36px;
  font-weight: 600;
  color: #f4873f;
  margin-bottom: 24px;
}

.step-text {
  font-size: 18px;
  color: #222222;
  line-height: 1.5;
}

.step-text strong {
  font-weight: 700;
}

/* stagger */
.step-1 {
  margin-top: 0;
}
.step-2 {
  margin-top: 60px;
}
.step-3 {
  margin-top: 120px;
}

/* ================== PNG ARROWS (AUTO RESPONSIVE) ================== */

.step-arrow {
  position: absolute;
  width: clamp(70px, 10vw, 120px);
  height: auto;
  pointer-events: none;
  z-index: 3;
}

/* Arrow positions auto adjust */
.arrow-1 {
  left: clamp(260px, 30vw, 360px);
  top: clamp(10px, 6vw, 30px);
}

.arrow-2 {
  left: clamp(560px, 60vw, 760px);
  top: clamp(50px, 10vw, 90px);
}

/* ================== RESPONSIVE ================== */

/* Tablet */
@media (max-width: 1333px) {
  .arrow-1 {
    left: clamp(260px, 30vw, 360px);
    top: clamp(10px, 6vw, 30px);
  }
  .arrow-2 {
    left: clamp(560px, 55vw, 760px);
    top: clamp(50px, 10vw, 90px);
  }
}

@media (max-width: 1307px) {
  .arrow-1 {
    display: none;
  }
  .arrow-2 {
    display: none;
  }
}
@media (max-width: 1024px) {
  .journey-section {
    padding: 90px 40px 100px;
  }

  .journey-heading {
    font-size: 36px;
  }

  .journey-step {
    width: 300px;
    padding: 32px 26px 28px;
  }

  .step-text {
    font-size: 16px;
  }

  /* arrows hide on tablet */
  .step-arrow {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .journey-section {
    padding: 70px 20px 80px;
  }

  .journey-heading {
    font-size: 28px;
  }

  .journey-cta-btn {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
  }

  .journey-steps {
    flex-direction: column;
    gap: 24px;
  }

  .step-1,
  .step-2,
  .step-3 {
    margin-top: 0;
  }

  .journey-step {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .journey-heading {
    font-size: 24px;
  }

  .journey-step {
    padding: 26px 20px 22px;
    border-radius: 24px;
  }

  .step-number {
    font-size: 26px;
  }

  .step-text {
    font-size: 14px;
  }
}

/* Results Section */
.results-section {
  background: #ffffff;
  padding: 110px 80px 120px;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.results-pill {
  display: inline-block;
  padding: 6px 22px;
  border-radius: 999px;
  border: 1.5px solid #27316c;
  color: #27316c;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  background: #ffffff;
}

.results-heading {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  color: #161616;
  margin-bottom: 50px;
}

.results-heading .highlight-text {
  color: #ff7b3a;
}

.result-card {
  margin-top: 32px;
  background: linear-gradient(135deg, #27316c 0%, #4f63dd 100%);
  border-radius: 38px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  column-gap: 36px;
  align-items: center;
  text-align: left;
  box-shadow: 0px 18px 50px rgba(39, 49, 108, 0.35);
}

.result-card-media {
  border-radius: 30px;
  padding: 12px;
}

.result-card-media img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.result-card-content {
  color: #ffffff;
}

.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.result-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.result-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 22px;
}

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 4px;
}

.result-bullet-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-bullet-icon i {
  font-size: 20px;
}

.results-bottom-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f4873f 0%, #ff6b35 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 2.52px 5.87px #0712454d, 0px 11.75px 11.75px #07124542,
    0px 25.17px 15.1px #07124526, 0px 45.31px 18.46px #0712450d,
    0px 70.49px 20.14px #07124503;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.results-bottom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 10px #0712454d, 0px 18px 24px #07124533;
}

/* Results Responsive */
@media (max-width: 1024px) {
  .results-section {
    padding: 90px 40px 100px;
  }

  .results-heading {
    font-size: 34px;
  }

  .result-card {
    grid-template-columns: 1fr 1.4fr;
    padding: 32px 30px;
  }

  .result-title {
    font-size: 26px;
  }

  .result-list li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 70px 20px 80px;
  }

  .results-heading {
    font-size: 26px;
  }

  .result-card {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: 26px 22px 30px;
  }

  .result-card-media {
    order: 1;
  }

  .result-card-content {
    order: 2;
  }

  .result-title {
    font-size: 22px;
  }

  .result-list li {
    font-size: 14px;
  }

  .results-bottom-btn {
    width: 100%;
    max-width: 320px;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .results-heading {
    font-size: 22px;
  }

  .result-card {
    padding: 22px 18px 26px;
  }

  .result-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .result-title {
    font-size: 20px;
  }
}

/* FAQ Section */
.faq-section {
  background: #ffffff;
  padding: 110px 80px 120px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: #161616;
  margin-bottom: 40px;
}

.faq-card {
  background: #f4873f1a;
  border-radius: 32px;
  border: 2px solid #ffc7a3;
  padding: 26px 34px 30px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 18px 18px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  text-align: left;
  flex: 1;
}

.faq-item.active .faq-question {
  background: #ffdfcb;
  border-radius: 20px 20px 0 0;
  padding-inline: 16px;
}

.faq-icon {
  font-size: 22px;
  font-weight: 700;
  color: #ff8d43;
  flex-shrink: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
  padding: 0 16px 0;
  background: #ffdfcb;
  border-radius: 0 0 20px 20px;
  text-align: left;
}

.faq-item.active .faq-answer {
  padding-bottom: 18px;
}

.faq-answer p {
  font-size: 14px;
  color: #282727;
  text-align: left;
}

/* Footer */
.cc-footer {
  background: transparent;
  padding: 40px 80px 60px;
}

.cc-footer-inner {
  margin: 0 auto;
  padding: 16px 32px;
  border-radius: 22px;
  background: linear-gradient(94.44deg, #4c5fd2 -9.21%, #0d143f 146.28%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0px 14px 35px rgba(7, 18, 69, 0.45);
  max-width: 1069.71px;
  height: 74.57px;
}

/* FAQ + Footer Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 80px 20px 90px;
  }

  .faq-heading {
    font-size: 28px;
  }

  .faq-card {
    padding: 20px 18px 22px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 12px;
  }

  .cc-footer {
    padding: 30px 20px 40px;
  }

  .cc-footer-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 13px;
    padding: 14px 20px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .faq-heading {
    font-size: 24px;
  }

  .faq-question {
    font-size: 13px;
  }

  .faq-answer p {
    font-size: 10px;
  }
}
