/* ===============================
   DESIGN TOKENS
================================ */

:root {
  --brand: #e4002b;
  --brand-dark: #c80025;

  --black: #111;
  --gray-900: #222;
  --gray-700: #555;
  --gray-500: #777;
  --gray-300: #ddd;
  --gray-100: #f5f5f5;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 25px 70px rgba(0,0,0,.06);
  --shadow-medium: 0 40px 90px rgba(0,0,0,.12);
  --shadow-strong: 0 60px 140px rgba(0,0,0,.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


body {
  font-family: "Poppins", sans-serif;
  color: var(--gray-900);
  padding-top: 90px;
  margin: 0;
}

.header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,.05);
}
/* =====================================================
   PREMIUM HERO SECTION
===================================================== */

.hero-premium {
  position: relative;
  background: #000;
  color: #fff;
  padding: 140px 0 110px;
  overflow: hidden;
}

/* ============================
   BACKGROUND GLOW
============================ */

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.45;
  z-index: 0;
}

.hero-glow-1 {
  width: 520px;
  height: 520px;
  background: #ff0022;
  top: -120px;
  right: 5%;
  animation: glowFloat 12s ease-in-out infinite;
}

.hero-glow-2 {
  width: 380px;
  height: 380px;
  background: #ff0022;
  bottom: -120px;
  left: 5%;
  opacity: 0.25;
  animation: glowFloat 16s ease-in-out infinite reverse;
}

@keyframes glowFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-35px); }
  100% { transform: translateY(0); }
}

/* ============================
   LAYOUT
============================ */

.hero-row {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero-title span {
  color: #ff0022;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 35px;
}

/* ============================
   CTA
============================ */

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-cta .btn {
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
}

/* ============================
   TRUST LOGOS
============================ */

.hero-trust span {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.6;
  text-transform: uppercase;
}

.trust-logos {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 26px;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: 0.3s;
}

.trust-logos img:hover {
  opacity: 1;
  filter: none;
}

/* ============================
   VIDEO CARD
============================ */

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-video-card {
  position: relative;
  width: 480px;
  max-width: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow:
    0 40px 120px rgba(255, 0, 0, 0.35);
  animation: floatVideo 6s ease-in-out infinite;
}

@keyframes floatVideo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

.video-thumb {
  width: 100%;
  display: block;
  border-radius: 26px;
}

/* ============================
   PLAY BUTTON
============================ */

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ff0022;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 rgba(255,0,34,.6);
  animation: pulse 2.5s infinite;
}

.video-play-btn span {
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 4px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,34,.6); }
  70% { box-shadow: 0 0 0 35px rgba(255,0,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,34,0); }
}
/* ===============================
   AUTOMATIC BREADCRUMB
================================ */

.breadcrumb-wrapper {
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb li {
  color: #666;
}

.breadcrumb li a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb li a:hover {
  color: var(--brand);
}

.breadcrumb li::after {
  content: "/";
  margin: 0 6px;
  color: #aaa;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb li.active {
  color: #999;
  font-weight: 400;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 991px) {
  .hero-premium {
    padding: 110px 0 90px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-media {
    margin-top: 60px;
  }
}

/* =====================================================
   CORE SERVICES – PREMIUM
===================================================== */

.core-services {
  padding: 110px 0 120px;
  background: #ffffff;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: #555;
  max-width: 640px;
  margin: 0 auto 70px;
}

/* ===============================
   GRID
================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* ===============================
   COLUMN
================================ */

.service-column {
  text-align: center;
}

.service-icon img {
  height: 64px;
  margin-bottom: 25px;
}

.service-column h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* ===============================
   LIST
================================ */

.service-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-column ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 15.5px;
  color: #333;
  text-align: left;
  transition: 0.25s ease;
}

/* custom dot */
.service-column ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #e4002b;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.service-column ul li:hover {
  color: #e4002b;
  transform: translateX(4px);
}

/* ===============================
   CTA
================================ */

.services-cta {
  margin-top: 70px;
  padding-bottom: 70px;
}

.btn-primary-rounded {
  background: #e4002b;
  color: #fff;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary-rounded:hover {
  background: #c80025;
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

/* =====================================================
   TECHNOLOGY PARTNER SECTION
===================================================== */

.tech-partner {
  padding: 110px 0;
  background: #ffffff;
}

.tech-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */

.tech-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 25px;
  color: #111;
}

.tech-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #555;
  max-width: 520px;
  margin-bottom: 35px;
}

/* ================= METRICS CARD ================= */

.tech-metrics {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 45px 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  background: #fff;
}

/* ================= METRIC ================= */

.metric-item h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.metric-item h3 span {
  font-size: 22px;
  vertical-align: super;
}

.metric-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .tech-wrapper {
    gap: 50px;
  }
}

@media (max-width: 991px) {
  .tech-wrapper {
    grid-template-columns: 1fr;
  }

  .tech-content h2 {
    font-size: 34px;
  }

  .tech-metrics {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .tech-metrics {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* =====================================================
   INDUSTRY EXPERIENCE
===================================================== */

.industry-experience {
  padding: 110px 0;
  background: #ffffff;
}

.industry-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.industry-header p {
  max-width: 760px;
  margin: 0 auto 45px;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* ================= TABS ================= */

.industry-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 70px;
}

.industry-tabs button {
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
}

.industry-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #e4002b;
  transition: .3s ease;
}

.industry-tabs button.active,
.industry-tabs button:hover {
  color: #e4002b;
}

.industry-tabs button.active::after {
  width: 100%;
}

/* ================= CONTENT ================= */

.industry-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* ================= TEXT ================= */

.industry-text {
  display: none;
}

.industry-text.active {
  display: block;
}

.industry-text h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.industry-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 35px;
}

/* ================= MEDIA ================= */

.industry-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f6f6;
}

.industry-slider img {
  width: 100%;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.slider-btn.prev { left: 15px; }
.slider-btn.next { right: 15px; }

.slider-caption {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #aaa;
}

.slider-dots span.active {
  background: #111;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .industry-content {
    grid-template-columns: 1fr;
  }

  .industry-tabs {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .industry-header h2 {
    font-size: 32px;
  }
}

/* =====================================================
   STARTUP PARTNER – PREMIUM
===================================================== */

.startup-partner {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    #fff6f6 0%,
    #ffffff 70%
  );
}

/* ================= GRID ================= */

.startup-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}

/* ================= LEFT ================= */

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e4002b;
  margin-bottom: 16px;
  display: inline-block;
}

.startup-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}

.startup-content h2 span {
  color: #e4002b;
}

.startup-content .lead {
  font-size: 19px;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
}

.startup-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #555;
  max-width: 560px;
}

/* ================= ACTIONS ================= */

.startup-actions {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  align-items: center;
}

/* ================= RIGHT ================= */

.startup-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  border: 1px solid #ececec;
  transition: .35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.stat-card h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111;
}

.stat-card p {
  font-size: 15px;
  color: #666;
}

/* ================= BUTTONS ================= */

.btn-secondary {
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
}

.btn-secondary::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #e4002b;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .startup-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .startup-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .startup-stats {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   VIDEO TESTIMONIALS
===================================================== */

.video-testimonials {
  padding: 120px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-header p {
  max-width: 820px;
  margin: 0 auto 70px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }
}

/* ================= GRID ================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* ================= CARD ================= */

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ececec;
  transition: .35s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,.08);
}

/* ================= VIDEO ================= */

.video-box {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #000;
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* play button */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e4002b;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: .3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

/* ================= CONTENT ================= */

.testimonial-content {
  padding: 30px;
}

.testimonial-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.testimonial-content h4 {
  font-size: 18px;
  margin-bottom: 3px;
}

.testimonial-content span {
  font-size: 14px;
  color: #777;
}

.case-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
}

.case-link::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #e4002b;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-header h2 {
    font-size: 34px;
  }
}
/* =====================================================
   3 WAYS TO WORK
===================================================== */

.work-models {
  padding: 120px 0;
  background: #ffffff;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header p {
  max-width: 820px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* ================= GRID ================= */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

/* ================= CARD ================= */

.work-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: .35s ease;
}

.work-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(0,0,0,.08);
}

/* featured middle card */
.work-card.featured {
  transform: translateY(-10px);
  border: 2px solid #e4002b;
}

/* ================= IMAGE ================= */

.work-image {
  height: 220px;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s ease;
}

.work-card:hover img {
  transform: scale(1.08);
}

/* ================= CONTENT ================= */

.work-content {
  padding: 35px;
}

.work-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.work-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #444;
}

/* ================= CTA ================= */

.work-cta {
  margin-top: 70px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .work-card.featured {
    transform: none;
  }
}
/* =====================================================
   TECHNOLOGIES WE USE
===================================================== */

.tech-stack {
  padding: 120px 0;
  background: #ffffff;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #555;
}

/* ================= GRID ================= */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 35px;
}

/* ================= ITEM ================= */

.tech-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #ececec;
  padding: 35px 20px;
  text-align: center;
  transition: .35s ease;
}

.tech-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,.08);
}

.tech-item img {
  height: 48px;
  margin-bottom: 14px;
  filter: grayscale(100%);
  transition: .35s ease;
}

.tech-item:hover img {
  filter: grayscale(0%);
}

.tech-item span {
  font-size: 14.5px;
  font-weight: 600;
  color: #333;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 32px;
  }
}
/* =====================================================
   OUR SAAS WORK
===================================================== */

.saas-work {
  padding: 120px 0;
  background: #ffffff;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
}

.section-header p {
  max-width: 720px;
  margin: 12px auto 70px;
  font-size: 17px;
  color: #555;
}

/* ================= GRID ================= */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ================= CARD ================= */

.work-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  transition: .4s ease;
  box-shadow: 0 25px 70px rgba(0,0,0,.08);
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 120px rgba(0,0,0,.14);
}

/* ================= IMAGE ================= */

.work-media {
  position: relative;
  overflow: hidden;
}

.work-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .6s ease;
}

.work-card:hover img {
  transform: scale(1.08);
}

.work-industry {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #e4002b;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
}

/* ================= CONTENT ================= */

.work-content {
  padding: 32px;
}

.work-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.work-content p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
}

/* ================= TAGS ================= */

.work-tags {
  margin: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.work-tags span {
  background: #f4f4f4;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

/* ================= LINK ================= */

.case-link {
  font-weight: 600;
  color: #e4002b;
  text-decoration: none;
  transition: .3s;
}

.case-link:hover {
  letter-spacing: .4px;
}

/* ================= CTA BUTTON ================= */

.primary-btn {
  background: #e4002b;
  color: #fff;
  padding: 15px 42px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.primary-btn:hover {
  background: #c80025;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}
/* =====================================================
   AWARDS SECTION
===================================================== */

.awards-section {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafafa 100%
  );
}

/* ================= HEADER ================= */

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.section-header p {
  max-width: 820px;
  margin: 20px auto 70px;
  font-size: 17px;
  color: #555;
}

/* ================= GRID ================= */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

/* ================= CARD ================= */

.award-card {
  height: 140px;
  background: rgba(255,255,255,0.8);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.06);
  transition: .4s ease;
  backdrop-filter: blur(10px);
}

.award-card img {
  max-height: 70px;
  max-width: 160px;
  filter: grayscale(100%);
  opacity: .75;
  transition: .35s ease;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 35px 90px rgba(0,0,0,.12);
}

.award-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ================= CTA ================= */

.primary-btn {
  background: #e4002b;
  color: #fff;
  padding: 16px 46px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease;
}

.primary-btn:hover {
  background: #c80025;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section-header h2 {
    font-size: 32px;
  }
}
/* =====================================================
   UX PROCESS SECTION
===================================================== */

.ux-process-section {
  padding: 120px 0;
  background: #ffffff;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.section-header p {
  max-width: 850px;
  margin: 18px auto 70px;
  font-size: 17px;
  color: #555;
}

/* ================= GRID ================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ================= CARD ================= */

.process-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 35px;
  box-shadow: 0 25px 70px rgba(0,0,0,.06);
  transition: .4s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,.12);
}

.process-card .step {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #e4002b;
  margin-bottom: 15px;
}

.process-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.process-card p {
  font-size: 15.5px;
  color: #555;
  margin-bottom: 18px;
}

.process-card ul {
  padding-left: 18px;
  margin: 0;
}

.process-card ul li {
  font-size: 14.5px;
  margin-bottom: 8px;
  color: #333;
}

/* ================= TIMELINE ================= */

.process-timeline {
  margin-top: 80px;
  position: relative;
  text-align: center;
}

.timeline-line {
  height: 2px;
  width: 70%;
  background: linear-gradient(
    to right,
    #e4002b,
    #111
  );
  margin: 0 auto 20px;
  border-radius: 10px;
}

.timeline-steps {
  display: flex;
  justify-content: space-around;
  max-width: 70%;
  margin: auto;
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 30px;
  }
}
/* =====================================================
   BLOG SECTION
===================================================== */

.blog-section {
  padding: 120px 0;
  background: #ffffff;
}

/* ================= HEADER ================= */

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-header p {
  max-width: 900px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* ================= GRID ================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ================= CARD ================= */

.blog-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.06);
  transition: .45s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 45px 90px rgba(0,0,0,.12);
}

/* ================= IMAGE ================= */

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #e4002b;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
}

/* ================= CONTENT ================= */

.blog-content {
  padding: 30px;
}

.blog-content .category {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #e4002b;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}

.read-link {
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: .3s;
}

.read-link:hover {
  color: #e4002b;
}

/* ================= FEATURED ================= */

.blog-card.featured {
  grid-column: span 2;
}

.blog-card.featured .blog-image img {
  height: 300px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: span 1;
  }

  .section-header h2 {
    font-size: 30px;
  }
}
/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
  padding: 120px 0;
  background: #ffffff;
}

.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-header .quote {
  max-width: 760px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #666;
  line-height: 1.7;
}

.faq-header span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #111;
}

/* ================= FAQ WRAPPER ================= */

.faq-wrapper {
  max-width: 980px;
  margin: auto;
}

/* ================= ITEM ================= */

.faq-item {
  border-radius: 18px;
  background: #fafafa;
  margin-bottom: 18px;
  overflow: hidden;
  transition: .3s ease;
  border: 1px solid #eee;
}

.faq-item.active {
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

/* ================= QUESTION ================= */

.faq-question {
  width: 100%;
  padding: 26px 30px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: #e4002b;
  transition: .3s;
}

.faq-question .icon::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq-question .icon::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}

/* open state */
.faq-item.active .icon::after {
  opacity: 0;
}

/* ================= ANSWER ================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer p {
  padding: 0 30px 26px;
  font-size: 15.5px;
  color: #555;
  line-height: 1.8;
}

/* ================= CTA ================= */

.faq-cta {
  margin-top: 60px;
}
.contact-section {
  background: radial-gradient(circle at top right,#1a1a1a,#000);
  padding: 120px 0;
  color: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.contact-left h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
}

.subtitle {
  color: #bbb;
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 40px;
}

.contact-info {
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 16px;
}

.info-item a {
  color: #fff;
  text-decoration: none;
}

.copy-btn {
  background: #222;
  border: 1px solid #333;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
}

/* FOUNDERS */

.founders {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.founder {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.founder span {
  font-size: 13px;
  color: #aaa;
}

/* TRUST */

.trust {
  display: flex;
  gap: 24px;
  color: #aaa;
  font-size: 14px;
}

/* FORM CARD */

.contact-form-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border-radius: 26px;
  padding: 50px;
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  font-size: 14px;
  color: #000;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #ffffff;
  color: #fff;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e4002b;
  outline: none;
}

.captcha-text {
  font-size: 12px;
  color: #888;
  margin: 20px 0;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg,#e4002b,#b80022);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: .9;
}

/* RESPONSIVE */

@media(max-width: 900px){
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.premium-footer {
  background: #0b0b0d;
  color: #d6d6d6;
  padding-top: 90px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 70px;
  padding: 0 20px 80px;
}

/* BRAND */

.footer-brand img {
  height: 42px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #9b9b9b;
  line-height: 1.7;
  font-size: 15px;
  max-width: 320px;
}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #e4002b;
  transform: translateY(-4px);
}

/* COLUMNS */

.footer-col h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: #9b9b9b;
  font-size: 14.5px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul a:hover {
  color: #ffffff;
}

/* LOCATION */

.location {
  margin-bottom: 18px;
}

.location strong {
  color: #ffffff;
  font-size: 14px;
}

.location p {
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.6;
}

/* BOTTOM BAR */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: auto;
  font-size: 13px;
  color: #9b9b9b;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #9b9b9b;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}


/* =====================================================
   CASE STUDY DETAIL PAGE – PREMIUM LAYOUT
===================================================== */

.case-study-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px 120px;
}

/* ================= BREADCRUMB ================= */

.case-breadcrumb {
  font-size: 14px;
  margin-bottom: 25px;
  color: var(--gray-500);
}

.case-breadcrumb a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.case-breadcrumb span {
  margin: 0 6px;
}

/* ================= HERO ================= */

.case-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--black);
}

.case-hero-desc {
  font-size: 18px;
  color: var(--gray-700);
  max-width: 850px;
  line-height: 1.75;
  margin-bottom: 35px;
}

/* ================= META TAGS ================= */

.case-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 55px;
}

.case-tags span {
  background: var(--gray-100);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

/* ================= CONTENT GRID ================= */

.case-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ================= STICKY INFO ================= */

.case-sidebar {
  position: sticky;
  top: 120px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px 35px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-300);
}

.case-sidebar h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.case-sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.case-sidebar li {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--gray-700);
}

.case-sidebar strong {
  color: var(--black);
}

/* ================= CONTENT ================= */

.case-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 55px 0 18px;
  color: var(--black);
}

.case-content h3 {
  font-size: 26px;
  margin: 45px 0 15px;
  font-weight: 700;
}

.case-content p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 18px;
}

/* ================= HIGHLIGHT BLOCKS ================= */

.case-highlight {
  background: #fff;
  border-left: 5px solid var(--brand);
  padding: 28px 35px;
  border-radius: var(--radius-sm);
  margin: 40px 0;
  box-shadow: var(--shadow-soft);
}

.case-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: var(--black);
}

/* ================= IMAGES ================= */

.case-image {
  margin: 50px 0;
}

.case-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  transition: .6s ease;
}

.case-image img:hover {
  transform: scale(1.02);
}

/* ================= METRICS ================= */

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin: 70px 0;
}

.case-metric {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: .4s ease;
}

.case-metric:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.case-metric h3 {
  font-size: 44px;
  color: var(--brand);
  margin-bottom: 8px;
}

.case-metric p {
  font-size: 15px;
  color: var(--gray-500);
}

/* ================= NEXT CASE ================= */

.case-next {
  margin-top: 120px;
  padding: 70px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg,#111,#000);
  color: #fff;
  text-align: center;
}

.case-next span {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 1px;
}

.case-next h3 {
  margin-top: 10px;
  font-size: 28px;
}

.case-next a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.case-next:hover {
  background: linear-gradient(135deg,#e4002b,#b80022);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-sidebar {
    position: relative;
    top: auto;
  }

  .case-hero-title {
    font-size: 36px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }
}

