/* Font, :root vars & body handled by global.css */

:root {
  --card-hover-brand-gradient:
    radial-gradient(circle at 15% 25%, rgba(255, 223, 6, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 136, 6, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
}

/* ================= SERVICE HERO ================= */

.service-hero {
  position: relative;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
  padding: var(--space-hero-top) 0 var(--space-hero-bottom);
  color: #fff;
  overflow: visible;
}
.main-header .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.main-header.scrolled .nav-link {
  color: #fff;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  z-index: 0;
}
.hero-container {
  width: min(var(--content-max-width), 100%);
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.12;
  font-weight: 700;
}

.hero-content span {
  color: #ffdf06;
}

.hero-content p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hero-btn {
  display: inline-block;
  margin-top: 28px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  color: #111;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-btn:hover {
  transform: translateY(-3px);
}

/* .hero-image {
  position: relative;
}

.hero-image img {
  width: 460px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(180deg, #2545fc, #ff8806);
  border-radius: 55% 45% 60% 40%;
  right: 10px;
  top: 20px;
  opacity: 0.35;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background: #ffffff20;
  border-radius: 10px;
  right: 0;
  top: -15px;
} */

.hero-image {
  position: relative;
}

/* Main big circle */
.hero-image img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 18%;
}

/* Small top circle (second image if needed) */
.hero-image::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: url('assets/updateserv/real.jfif') center/cover;
  border-radius: 50%;
  top: -40px;
  left: 40px;
  z-index: 3;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-image::before {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .service-hero {
    padding: var(--space-hero-top-mobile) 0 var(--space-hero-bottom-mobile);
    overflow: hidden;
  }
  .hero-image::before {
    width: 240px;
    height: 240px;
  }
}

/* ================= PROCESS SECTION ================= */

.process-section {
  background: #ffffff;
  padding: var(--space-section) 0;
}

.process-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
  text-align: center;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
  font-family: "Red Hat Display", sans-serif;
}

.process-header h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff8806;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.process-header h3::before,
.process-header h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  display: block;
}

.process-header h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  margin: auto;
  color: #0f172a;
}

.process-header span {
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }
  .process-header h2 {
    font-size: 30px;
  }
}

/* ================= DISCOVERY SECTION ================= */
/* ===============================
   DISCOVERY SECTION
================================= */

.discovery-section {
  background: linear-gradient(135deg, #2545fc 0%, #3a2aa0 60%, #1b1f6b 100%);
  padding: var(--space-section) 0;
  color: #fff;
  position: relative;
   overflow:visible;
   z-index: 1;
}

/* subtle glow background accents */
.discovery-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,223,6,0.18), transparent 70%);
  top: -120px;
  right: -120px;
  filter: blur(40px);
}

/* container */
.discovery-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* eyebrow */
.section-eyebrow {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 55px;
  letter-spacing: 0.4px;

  background: linear-gradient(
    90deg,
    #FF8806 0%,
    #FF8806 25%,
    #FFDF06 60%,
    #FF8806 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  display: block;
}

/* layout */
.discovery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

/* left content */
.discovery-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* item */
.discover-item {
  position: relative;
  padding: 16px 0 18px;
}

/* glowing divider line */
.discover-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* animated glow sweep */
.discover-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,#ffdf06,#ff8806);
  box-shadow: 0 0 12px rgba(255,223,6,0.7);
  transition: width .45s cubic-bezier(.65,.05,.36,1);
}

.discover-item:hover::after {
  width: 100%;
}

/* title */
.discover-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  transition: .35s ease;
}

/* description */
.discover-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}

/* premium hover glow */
.discover-item:hover .discover-title {
  color: #ffdf06;
  text-shadow:
    0 0 8px rgba(255,223,6,0.7),
    0 0 18px rgba(255,223,6,0.35);
}

/* right image */

/* .discovery-right {
  display: flex;
  width: 583px;
}

.image-card {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
  transition: .45s ease;
}


.image-card::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.18),
    transparent 70%
  );
  transform: translateX(-100%) rotate(25deg);
  transition: 1s ease;
}

.image-card:hover::before {
  transform: translateX(100%) rotate(25deg);
}

.image-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  z-index: 2;
}

.image-card:hover {
  background: var(--card-hover-brand-gradient);
  transform: translateY(-6px);
  box-shadow:
    0 45px 100px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
} */

/* RIGHT SECTION CONTAINER */
/* =========================
   RIGHT SIDE (DOMINANT VISUAL)
========================= */
.discovery-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* Background glow */
.discovery-right::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  z-index: 0;
}

/* Secondary glow */
.discovery-right::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,136,6,0.25), transparent 70%);
  z-index: 0;
}


/* =========================
   IMAGE (MAIN HERO)
========================= */
.image-cards
 {
  width: 100%;
  max-width: 680px; /* BIGGER IMAGE */
  position: relative;
  z-index: 2;
}

.image-cards img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 18px;

  /* Premium shadow */
  box-shadow:
    0 50px 120px rgba(0,0,0,0.45),
    0 10px 30px rgba(0,0,0,0.25);

  /* Floating effect */
  animation: floatY 6s ease-in-out infinite;
}


/* =========================
   FLOATING UI ELEMENTS (SUBTLE)
========================= */
.image-cards::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: 12px;

  top: -25px;
  right: -30px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);

  animation: floatY 5s ease-in-out infinite;
}

/* .image-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 70px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 10px;

  bottom: -25px;
  left: -30px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  animation: floatY 7s ease-in-out infinite;
} */


/* =========================
   ANIMATION
========================= */
@keyframes floatY {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0px); }
}


/* responsive */
@media (max-width: 1000px) {
  .discovery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .discovery-left {
    order: 2;
  }
}

@media (max-width: 600px) {
  .discovery-section {
    padding: var(--space-section-mobile) 0;
  }
}
/* ================= STRATEGY SECTION ================= */
.strategy-section {
  padding: var(--space-section) 0;
  background: linear-gradient(180deg,#ffffff 0%, #f7f9ff 100%);
  position: relative;
  overflow: hidden;
}

/* subtle ambient glow */
.strategy-section::before {
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  background: radial-gradient(circle, rgba(37,69,252,0.08), transparent 70%);
  top:-120px;
  left:-120px;
}

.strategy-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* header */

.strategy-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}

.strategy-header h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
  line-height: 1.15;

  background: linear-gradient(90deg, #FF8806 0%, #FF8806 25%, #ffaf06 60%, #FF8806 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.strategy-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

/* grid */

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* card */

.strategy-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 30px 28px;
  position: relative;
  transition: all .4s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* NEW: brand blue hover background with subtle texture */

.strategy-card .card-bg {
  position:absolute;
  inset:0;
  border-radius:18px;
  background: var(--card-hover-brand-gradient);
  opacity:0;
  transition:.4s ease;
  z-index:0;
}

.strategy-card:hover .card-bg{
  opacity:1;
}

/* ensure content stays above background */

.strategy-card *{
  position:relative;
  z-index:2;
}

/* gradient glow border */

.strategy-card::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  padding:1px;
  background: linear-gradient(120deg,#2545FC,#FFDF06,#FF8806);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity:0;
  transition:.4s ease;
}

/* accent glow bar */

/* removed gradient strip */

/* hover elevation */

.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  background: transparent;
}

.strategy-card:hover::before {
  opacity:1;
}

/* title */

.strategy-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color:#111;
  transition:.35s ease;
}

/* gradient hover heading */

.strategy-card:hover h3 {
  background: linear-gradient(90deg,#FFDF06,#ffffff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* highlight */

.card-highlight {
  font-weight:600;
  margin-bottom:14px;
  color:#000;
}

/* list */

.strategy-card ul {
  list-style:none;
  padding:0;
  margin:0;
}

.strategy-card li {
  position:relative;
  padding-left:28px;
  margin-bottom:10px;
  color:#444;
  font-size:15px;
}

/* modern check */

.strategy-card li::before {
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:700;
  color:#FF8806;
}

/* text visibility on blue hover */

.strategy-card:hover .card-highlight,
.strategy-card:hover li{
  color:#ffffff;
}

.strategy-card:hover li::before{
  color:#FFDF06;
}

/* responsive */

@media (max-width:1200px){
  .strategy-cards{
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:640px){
  .strategy-cards{
    grid-template-columns: 1fr;
  }
}
/* ================= LAUNCH SECTION ================= */
/* ===============================
   SECTION BACKGROUND
================================= */

.launch-section {
  background: linear-gradient(135deg, #2545fc 0%, #3a2aa0 60%, #1b1f6b 100%);
  padding: var(--space-section) 0;
  color: #fff;
}

.launch-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ===============================
   GRID LAYOUT
================================= */

.launch-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}

/* ===============================
   LEFT SIDE CONTENT
================================= */

.launch-eyebrow {
  color: #ffdf06;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.launch-left h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
}

.launch-intro {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

/* ===============================
   TABS
================================= */

.launch-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.launch-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  transition: .3s ease;
}

.launch-tab:hover {
  border-color: #ffdf06;
  background: rgba(255,255,255,0.06);
}

.launch-tab.active {
  background: linear-gradient(90deg,#ff8806,#ffdf06);
  color: #111;
  border-color: transparent;
  font-weight: 600;
}

/* ===============================
   RIGHT SIDE CARD
================================= */
/* ===============================
   RIGHT SIDE CARD (VISIBILITY FIX)
================================= */

.launch-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 52px;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* background image */
.card-bg {
  position: absolute;
  inset: 0;
  /* background-image: url('assets/about/cardbg.png'); */
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

/* CINEMATIC GRADIENT OVERLAY */
/* .launch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

 
  background: linear-gradient(
    90deg,
    rgba(15, 25, 90, 0.78) 0%,
    rgba(20, 30, 110, 0.65) 30%,
    rgba(30, 45, 140, 0.45) 55%,
    rgba(30, 45, 140, 0.18) 80%,
    rgba(30, 45, 140, 0.05) 100%
  );
} */

/* subtle highlight glow */
/* .launch-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 25% 30%, rgba(255,223,6,0.12), transparent 60%);
} */

/* ===============================
   CARD CONTENT
================================= */

.card-content {
  position: relative;
  z-index: 2;
  display: none;
  animation: fadeIn .35s ease;
  max-width: 480px;
}

.card-content.active {
  display: block;
}

/* heading — high contrast */
/* CARD HEADING — BRAND HIGHLIGHT */
.card-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: .3px;

  color: #FFDF06; /* brand yellow */

  text-shadow:
    0 0 18px rgba(255,223,6,0.45),
    0 4px 12px rgba(0,0,0,0.65);
}

/* CARD PARAGRAPH — HIGH VISIBILITY */
.card-content p {
  margin-bottom: 18px;
  line-height: 1.6;

  color: #ffffff;  /* soft yellow-white for readability */

  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}

/* list */
.card-content li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,0.96);
  font-weight: 500;
}

/* check icon */
.card-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffdf06;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255,223,6,0.6);
}

/* ===============================
   FADE ANIMATION
================================= */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1000px) {
  .launch-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .launch-card {
    padding: 36px;
  }
}

@media (max-width: 600px) {
  .launch-section {
    padding: var(--space-section-mobile) 0;
  }

  .launch-left h2 {
    font-size: 30px;
  }

  .launch-intro {
    font-size: 16px;
  }
}

/* ===============================
   CTA SECTION
================================= */

.cta-section {
  position: relative;
  padding: var(--space-section-compact) 20px;
  text-align: center;
  overflow: hidden;
  background: #ffffff;
}

/* Brand Glow Layer */

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,69,252,0.10), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,136,6,0.12), transparent 50%),
    radial-gradient(circle at 60% 10%, rgba(255,223,6,0.08), transparent 40%);
  z-index: 0;
}

/* Subtle Texture Layer */

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.02) 0px,
      rgba(0,0,0,0.02) 1px,
      transparent 1px,
      transparent 8px
    );
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}
/* ===============================
   TITLE
================================= */

.cta-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;

  background: linear-gradient(90deg, #FF8806 0%, #FF8806 25%, #ffba06 60%, #FF8806 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.cta-title span {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ===============================
   SUBTEXT
================================= */

.cta-subtext {
  font-size: 18px;
  color: #000204;
  line-height: 1.6;
  margin-bottom: 45px;
}

/* ===============================
   BUTTONS
================================= */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Gradient Button */

.btn-primary {
  background: var(--gradient-cta);
  color: #111;
  box-shadow: 0 10px 25px rgba(255, 136, 6, 0.25);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255, 136, 6, 0.35);
}

/* Outline Button */

.btn-outline {
  border: 2px solid rgba(241, 241, 241, 0.9);
  color: #2545fc;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: #2545fc;
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(255, 223, 6, 0.35);
}


/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

  .cta-title {
    font-size: 34px;
  }

  .cta-subtext {
    font-size: 16px;
  }

  .btn {
    padding: 14px 26px;
  }
}
/* ===============================
   TRUSTED SECTION
================================= */

.logos-sec {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;           /* tune this: -40px to -60px depending on shadow visibility */
  z-index: 5;
  width: min(1200px, 100% - 48px);
}

.logos-sec__wrap {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.10),
    0 4px 15px rgba(0, 0, 0, 0.06);
  width: 100%;
  box-sizing: border-box;
}

.logos-sec__title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0b1a65;
  white-space: nowrap;
  margin-right: 12px;      /* better spacing from first logo */
  flex: 0 0 auto;
}

/* ── Uniform logo container ── */
.logo {
  flex: 0 1 120px;
  min-width: 80px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Logo images ── */
.logo img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;     /* core rule: fit inside without distortion */
  opacity: 0.88;
  transition: all 0.35s ease;
}

.logo img:hover {
  transform: translateY(-5px) scale(1.06);
  opacity: 1;
  /* optional subtle glow if you want premium feel */
  /* filter: drop-shadow(0 4px 12px rgba(255, 223, 6, 0.3)); */
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .logos-sec {
    bottom: -45px;
  }

  .logos-sec__wrap {
    gap: 18px;
    padding: 16px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo {
    flex: 0 1 140px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .logos-sec {
    position: relative;       /* easier on small screens – no negative bottom */
    bottom: auto;
    left: auto;
    transform: none;
    width: min(1200px, 100% - 32px);
    margin: 40px auto 20px;
  }

  .logos-sec__wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    padding: 20px 16px;
    align-items: center;
    justify-items: center;
  }

  .logos-sec__title {
    margin: 0;
    text-align: center;
    grid-column: 1 / -1;
  }

  .logo {
    width: 120px;
    height: 44px;
  }
}

/* ================= INSIGHTS SECTION ================= */

.insights-section {
  background: #f8f9ff;
  padding: var(--space-section) 0;
}

.insights-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.insights-header {
  text-align: center;
  margin-bottom: 60px;
}

.insights-header h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #111;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  background: var(--card-hover-brand-gradient);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.insight-card:hover .card-tag {
  color: #ffdf06;
}

.insight-card:hover .card-content h3,
.insight-card:hover .card-content p,
.insight-card:hover .card-author strong,
.insight-card:hover .card-author span {
  color: #ffffff;
}

.insight-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff8806;
  font-weight: 600;
}

/* .card-content h3 {
  font-size: 20px;
  margin: 10px 0 8px;
  line-height: 1.35;
  color: #111;
} */

/* .card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
} */

.card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 20px;
  margin-top: auto;
}

.card-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.card-author strong {
  font-size: 14px;
  display: block;
}

.card-author span {
  font-size: 13px;
  color: #888;
}

.insights-footer {
  text-align: center;
  margin-top: 50px;
}

.insights-btn {
  background: #2545fc;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.insights-btn:hover {
  background: #1d34c7;
}

@media (max-width: 1000px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .insights-header h2 {
    font-size: 30px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= WORKFLOW/PROCESS RINGS ================= */

.workflow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 90px;
}

.step {
  flex: 1;
  position: relative;
  transition: 0.4s ease;
}

.ring {
  width: 160px;
  height: 160px;
  margin: auto;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    var(--blue) 0deg,
    var(--blue) 70%,
    var(--orange) 85%,
    var(--yellow) 100%
  );
  animation: rotate 8s linear infinite;
  box-shadow: 0 8px 30px rgba(37, 69, 252, 0.15);
}

.ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(255, 255, 255, 0.92),
    rgba(37, 69, 252, 0.12) 70%,
    rgba(255, 136, 6, 0.08)
  );
  border-radius: 50%;
  box-shadow:
    inset 0 3px 12px rgba(0, 0, 0, 0.06),
    0 0 20px rgba(255, 255, 255, 0.7);
}

.ring::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-top: 4px solid var(--blue);
  border-right: 4px solid var(--blue);
  transform: rotate(45deg);
  animation: pulseArrow 3s ease-in-out infinite;
}

.icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 8s linear infinite reverse;
}

.icon svg {
  width: 44px;
  stroke: var(--blue);
  stroke-width: 2.2;
  fill: none;
  filter: drop-shadow(0 3px 8px rgba(37, 69, 252, 0.35));
  animation: pulse 3.5s ease-in-out infinite;
}

.step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 64px;
  right: -30px;
  width: 56px;
  height: 56px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  border-radius: 0 70px 0 0;
  opacity: 0.4;
}

.label {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
}

.step:hover {
  transform: translateY(-10px);
}

.step:hover svg {
  stroke: var(--orange);
  filter: drop-shadow(0 4px 12px rgba(255, 136, 6, 0.5));
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@keyframes pulseArrow {
  0%,
  100% {
    opacity: 0.7;
    transform: rotate(45deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.15);
  }
}

/* ===== PHASE SECTION ===== */

.phases {
  display: flex;
  justify-content: space-between;
  /* gap: 20px; */
  flex-wrap: wrap;
}

.phase {
  flex: 1;
  min-width: 200px;
}

.duration {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
}

.phase h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  color: var(--blue);
}

.free {
  margin-top: 6px;
  font-weight: 700;
  color: var(--orange);
}

@media (max-width: 900px) {
  .workflow {
    flex-wrap: wrap;
    justify-content: center;
  }
  .step {
    width: 45%;
    margin-bottom: 60px;
  }
  .step::before {
    display: none;
  }
}

@media (max-width: 500px) {
  .step {
    width: 100%;
  }
}

/* ================= SERVICE PAGE RESPONSIVE OVERRIDES ================= */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .launch-link,
  .launch-link span {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {
  .main-header .logo {
    width: clamp(78px, 7vw, 128px);
    height: 48px;
    display: flex;
    align-items: center;
  }

  .main-header .logo img {
    height: auto;
    max-height: 100%;
  }
}

@media (max-width: 992px) {
  .service-hero {
    padding: 130px 0 70px;
  }

  .process-section,
  .discovery-section,
  .strategy-section,
  .launch-section,
  .insights-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-content,
  .discovery-left,
  .launch-left {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.65;
  }

  .process-header,
  .insights-header {
    margin-bottom: 42px;
  }

  .process-header h2,
  .insights-header h2 {
    font-size: 36px;
  }

  .workflow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    margin-bottom: 54px;
    justify-items: center;
  }

  .step {
    width: 100%;
    max-width: 320px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step:not(:last-child)::before {
    display: none;
  }

  .workflow .step:last-child {
    grid-column: 1 / -1;
  }

  .ring {
    width: 130px;
    height: 130px;
  }

  .ring::before {
    inset: 12px;
  }

  .icon svg {
    width: 36px;
  }

  .label {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
  }

  .phases {
    gap: 26px 20px;
  }

  .phase {
    min-width: calc(50% - 10px);
  }

  .phase h3 {
    font-size: 20px;
  }

  .discovery-left h2,
  .strategy-left h2,
  .launch-left h2 {
    font-size: 36px;
  }

  .discovery-left p,
  .strategy-left p,
  .launch-left p {
    font-size: 17px;
  }

  .discover-link,
  .discover-link span,
  .strategy-link,
  .strategy-link span,
  .launch-link,
  .launch-link span {
    font-size: 22px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 114px 0 56px;
  }

  .process-section,
  .discovery-section,
  .strategy-section,
  .launch-section,
  .insights-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-container,
  .process-container,
  .discovery-container,
  .strategy-container,
  .launch-container,
  .insights-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn,
  .discover-btn,
  .strategy-btn,
  .launch-btn,
  .insights-btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .process-header h3,
  .process-header h2 {
    width: 100%;
  }

  .process-header h3 {
    font-size: 20px;
    gap: 10px;
    display: flex;
    justify-content: center;
  }

  .process-header h3::before,
  .process-header h3::after {
    width: 28px;
  }

  .process-header h2,
  .discovery-left h2,
  .strategy-left h2,
  .launch-left h2,
  .insights-header h2 {
    font-size: 30px;
  }

  .workflow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
  }

  .step {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .phases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }

  .phase {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(37, 69, 252, 0.12);
    border-radius: 12px;
  }

  .duration {
    margin-bottom: 8px;
  }

  .phase h3 {
    font-size: 18px;
  }

  .label {
    width: 100%;
    text-align: center;
  }

  .discover-link,
  .strategy-link,
  .launch-link {
    font-size: 18px;
    gap: 12px;
    line-height: 1.35;
    word-break: break-word;
  }

  .discover-link span,
  .strategy-link span,
  .launch-link span {
    font-size: 18px;
    flex-shrink: 0;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 102px 0 46px;
  }

  .process-section,
  .discovery-section,
  .strategy-section,
  .launch-section,
  .insights-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p,
  .discovery-left p,
  .strategy-left p,
  .launch-left p {
    font-size: 15px;
    line-height: 1.6;
  }

  .process-header h2,
  .discovery-left h2,
  .strategy-left h2,
  .launch-left h2,
  .insights-header h2 {
    font-size: 26px;
  }

  .ring {
    width: 112px;
    height: 112px;
  }

  .label {
    font-size: 13px;
    line-height: 1.35;
  }

  .icon svg {
    width: 32px;
  }

  .discover-link,
  .strategy-link,
  .launch-link {
    font-size: 16px;
    padding: 14px 0;
  }

  .discover-link span,
  .strategy-link span,
  .launch-link span {
    font-size: 16px;
  }

  .card-content,
  .card-author {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===============================================
   RESPONSIVE SAFETY LAYER
   =============================================== */
@media (max-width: 992px) {
  .sticky-sidebar {
    display: none;
  }

  [class*="container"] {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  [class*="container"] {
    width: 100%;
    padding-left: clamp(12px, 4vw, 18px) !important;
    padding-right: clamp(12px, 4vw, 18px) !important;
  }

  [class*="grid"],
  [class*="col"],
  [class*="card"] {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* ===============================================
   UNIFIED FOOTER RESPONSIVE (FOOTER ONLY)
   =============================================== */

.footer {
  background: linear-gradient(180deg, rgba(15, 30, 120, 0.95) 0%, rgba(10, 20, 90, 0.98) 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px 36px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--yellow, #FFDF06);
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-top-btn {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer .container {
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

/* ===============================================
   LARGE SCREEN ENHANCEMENTS
   =============================================== */
@media (min-width: 1600px) {
  .hero-container,
  .process-container,
  .discovery-container,
  .strategy-container,
  .launch-container,
  .cta-container,
  .insights-container,
  .brand-strip__container {
    max-width: var(--content-max-width);
  }

  .service-hero .hero-content {
    padding-left: clamp(4px, 0.5vw, 12px);
  }

  .main-header.scrolled ~ .service-hero .hero-content {
    padding-left: 0;
  }

  .hero-content h1 {
    font-size: 64px;
  }

  .hero-content p {
    font-size: 19px;
  }
}

@media (min-width: 1920px) {
  .insights-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .strategy-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 3440px) {
  .insights-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}




