/* ============================================
   Services Page Styles
   Hero Section Content – uses global CSS variables
   Figma: Frame 68 – flex column, gap 32px, heading 80px/93px, body 26.67px/35px
   ============================================ */

/* Navigation styles now centralized in components/navigation.css */
/* Page-specific navigation overrides (if needed) can go here */

/* Services Hero Content Container */
.services-hero-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 32px;
  width: 802.67px;
  max-width: calc(100% - 210px);
  left: 105.33px;
  top: 300px;
  z-index: 20;
}

/* Services Hero Heading – AirbnbCereal_W_XBd, 80px, line-height 93.33px */
.services-hero-heading {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 93.33px;
  letter-spacing: 0%;
  color: var(--color-text-light);
  margin: 0;
  width: 100%;
  max-width: 802.67px;
}

/* Services Hero Paragraph – AirbnbCereal_W_Bk, 26.67px, line-height 100% */
.services-hero-paragraph {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 26.67px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--color-text-light);
  margin: 0;
  width: 100%;
  max-width: 736px;
}

/* Responsive – align with other-pages hero breakpoints */

@media (max-width: 1440px) {
  .services-hero-text {
    width: 602px;
    max-width: calc(100% - 158px);
    left: 79px;
    top: 230px;
    gap: 28px;
  }

  .services-hero-heading {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0%;
    max-width: 100%;
  }

  .services-hero-paragraph {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .services-hero-text {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    left: 40px;
    top: 140px;
    gap: 24px;
  }

  .services-hero-heading {
    font-size: var(--font-size-hero-sm);
    line-height: 1.15;
    max-width: 100%;
  }

  .services-hero-paragraph {
    font-size: var(--font-size-section-body);
    line-height: var(--font-size-section-body-line);
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .services-hero-text {
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    left: 24px;
    top: 100px;
    gap: 20px;
  }

  .services-hero-heading {
    font-size: var(--font-size-hero-xs);
    line-height: 1.2;
  }

  .services-hero-paragraph {
    font-size: var(--font-size-section-body);
    line-height: var(--font-size-section-body-line);
  }
}

/* ============================================
   Services Nav Section – heading + icon + tabs
   Figma: Frame 72 (column, gap 66.67px), Frame 71 (title + icon), Frame 67 (tabs)
   Uses global: --color-heading, --color-body, --color-text-dark, --color-text-light
   ============================================ */

.services-nav-section {
  background-color: var(--color-bg-light);
  padding: var(--section-padding-y) var(--section-padding-x);
  color: var(--color-heading);
}

/* Large screens: 100px from left and right; content fills the area between */
@media (min-width: 1024px) {
  .services-nav-section {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.services-nav-inner {
  width: 100%;
  max-width: 1710px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 66.67px;
  box-sizing: border-box;
}

/* Frame 71 – "Services" heading + move-down-right icon */
.services-nav-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13.33px;
}

.services-nav-title {
  font-family: 'AirbnbCereal_W_Md', 'AirbnbCereal_W_XBd', 'AirbnbCereal_W_Blk', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 66.67px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--color-heading);
  margin: 0;
}

.services-nav-title-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
}

/* Responsive for services nav title */
@media (max-width: 1440px) {
  .services-nav-title {
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
  }
}

/* Frame 67 – tab row: all four in one row, spread across full width between margins */
.services-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(8px, 1.5vw, 100px);
  padding: 0;
  margin: 0;
  list-style: none;
  border: none;
  background: none;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.services-tab {
  font-family: 'AirbnbCereal_W_Md', 'AirbnbCereal_W_XBd', 'AirbnbCereal_W_Blk', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42.67px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--color-body);
  background: none;
  border: none;
  padding:10px;
  border-radius: 40px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.services-tab:hover {
  color: var(--color-heading);
}

.services-tab--active {
  background-color: var(--color-btn-fill);
  color: var(--color-btn-text);
}

.services-tab--active:hover {
  background-color: var(--color-text-dark);
  color: var(--color-btn-text);
}

/* Scroll targets: keep some breathing room when scrolling to a section */
#our-services,
#why-choose-automaxion,
#our-approach,
#get-started {
  scroll-margin-top: 24px;
}

/* Responsive – Services nav section (tabs keep clamp() scaling so they always fit in one row) */
@media (max-width: 1440px) {
  .services-nav-inner {
    gap: 52px;
  }

  .services-tab {
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .services-nav-title {
    font-size: 56px;
    line-height: 72px;
  }
}

@media (max-width: 768px) {
  .services-nav-inner {
    gap: 40px;
  }

  .services-nav-header {
    gap: 10px;
  }

  .services-nav-title {
    font-size: var(--font-size-section-heading);
    line-height: 1.2;
  }

  .services-nav-title-icon {
    width: 40px;
    height: 40px;
  }

  /* Mobile: make services tabs a horizontal slider */
  .services-tabs {
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    margin-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .services-tab {
    font-size: 20px;
    padding: 6px 14px;
    scroll-snap-align: start;
  }
}

@media (max-width: 375px) {
  .services-nav-inner {
    gap: 32px;
  }

  .services-nav-title {
    font-size: var(--font-size-section-heading);
  }

  .services-tabs {
    gap: 10px;
  }

  .services-tab {
    font-size: 18px;
    padding: 6px 12px;
  }
}

/* ============================================
   Stats Section – Projects Metrics
   4 cards with numbers, titles, and descriptions
   1920px: number 80px, title 32px, body 24px
   1440px: number 60px, title 24px, body 18px
   ============================================ */

.services-stats-section {
  background-color: var(--color-bg-light);
  padding: var(--section-padding-y) var(--section-padding-x);
}

@media (min-width: 1024px) {
  .services-stats-section {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.services-stats-inner {
  max-width: 1710px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26.67px;
  width: 100%;
  box-sizing: border-box;
}

.services-stat-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.services-stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--color-bg-advantage);
  border: 1px solid #9BCCFD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-stat-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.services-stat-icon--orange {
  background: #FFF4E6;
  border: 1px solid #FFCC8A;
}

.services-stat-icon--purple {
  background: #F2ECFA;
  border: 1px solid #C8A1FB;
}

.services-stat-icon--green {
  background: #EAF7F2;
  border: 1px solid #7ED7C1;
}

/* 1920px breakpoint - Default */
.services-stat-number {
  font-family: 'AirbnbCereal_W_Bd', var(--font-heading);
  font-weight: 700;
  font-size: 80px;
  line-height: 106.67px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-heading);
  margin: 0;
}

.services-stat-title {
  font-family: 'AirbnbCereal_W_Bd', var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  line-height: 42.67px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-heading);
  margin: 0;
}

.services-stat-desc {
  font-family: 'AirbnbCereal_W_Bk', var(--font-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 37.33px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: var(--color-body);
  margin: 0;
}

/* 1440px breakpoint - match index page heading styles */
@media (max-width: 1440px) {
  .services-content-title,
  .services-why-title,
  .services-how-title,
  .services-cta-heading {
    font-size: 42px !important;
    line-height: var(--line-height-section-heading);
  }

  .services-stat-number {
    font-size: 60px;
    line-height: 80px;
    letter-spacing: 0px;
  }

  .services-stat-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
  }

  .services-stat-desc {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
  }

  .services-stat-card {
    padding: 32px 24px;
  }

  .services-stat-icon {
    width: 56px;
    height: 56px;
  }

  .services-stat-icon img {
    width: 28px;
    height: 28px;
  }
}

/* Tablet breakpoint */
@media (max-width: 1023px) {
  .services-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-stat-number {
    font-size: 48px;
    line-height: 64px;
  }

  .services-stat-title {
    font-size: 20px;
    line-height: 28px;
  }

  .services-stat-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .services-stat-card {
    padding: 28px 20px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .services-stats-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-stat-number {
    font-size: 40px;
    line-height: 52px;
  }

  .services-stat-title {
    font-size: 18px;
    line-height: 24px;
  }

  .services-stat-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .services-stat-card {
    padding: 24px 20px;
  }

  .services-stat-icon {
    width: 48px;
    height: 48px;
  }

  .services-stat-icon img {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   Services Content Block – Agentic AI (same 100px left/right on large screens)
   Left: image + "01" badge; Right: heading, paragraph, Key Features + Use Cases cards
   Uses global: --color-heading, --color-body, --color-accent, --font-heading, --font-body
   ============================================ */

.services-content-section {
  background-color: var(--color-bg-light);
  padding: var(--section-padding-y) var(--section-padding-x);
}

@media (min-width: 1024px) {
  .services-content-section {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.services-content-inner {
  max-width: 1710px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 64px);
  width: 100%;
  box-sizing: border-box;
}

/* Second service: text left, image right (DOM order is text then media, so default row is correct) */

.services-content-media {
  position: relative;
  flex: 0 0 40%;
  min-width: 0;
  max-width: 40%;
}

/* Badge position: change top (up/down) and left (left/right). Larger top = lower; larger left = further right. */
.services-content-badge {
  position: absolute;
  top: 3px;
  left: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  background: transparent;
  border-radius: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--color-text-light);
  text-align: center;
  padding: 0;
}

.services-content-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 0 24px;
  object-fit: cover;
}

.services-content-section--reversed .services-content-image {
  border-radius: 0 0 24px 0;
}

.services-content-text {
  flex: 1 1 60%;
  min-width: 0;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-content-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0;
}

.services-content-para {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.35vw, 24px);
  line-height: 1.35;
  color: var(--color-body);
  margin: 0;
}

.services-content-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.services-feature-card,
.services-use-card {
  flex: 1 1 280px;
  min-width: 0;
  padding: 32px;
  border-radius: 30px;
  box-sizing: border-box;
}

.services-feature-card {
  background: var(--color-bg-advantage);
}

.services-use-card {
  background: #EAF7F2;
}

/* Second service card colors (RAG section) */
.services-feature-card--alt {
  background: rgba(189, 195, 109, 0.15);
}

.services-use-card--alt {
  background: rgba(246, 177, 166, 0.35);
}

/* Third service card colors (Business Process Automation) */
.services-feature-card--bpa {
  background: #FFF4E6;
}

.services-use-card--bpa {
  background: #F2ECFA;
}

.services-card-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(20px, 1.6vw, 28px);
  line-height: 1.3;
  color: var(--color-heading);
  margin: 0 0 12px 0;
}

.services-card-list {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 22px);
  line-height: 1.4;
  color: var(--color-body);
  margin: 0;
  padding-left: 1.5em;
  list-style: decimal;
}

.services-card-list li {
  margin-bottom: 8px;
}

.services-card-list li:last-child {
  margin-bottom: 0;
}

/* Responsive – Agentic AI block */
@media (max-width: 1023px) {
  .services-content-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .services-content-media {
    flex: none;
    max-width: 100%;
  }

  .services-content-badge {
    top: 0;
    left: 0;
    width: 120px;
    height: 80px;
    font-size: 48px;
    line-height: 1;
    background: transparent;
  }

  .services-content-title {
    font-size: clamp(var(--font-size-section-heading), 3.5vw, 42px);
    line-height: var(--line-height-section-heading);
  }

  .services-content-text {
    flex: none;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .services-content-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Heading first - center aligned */
  .services-content-title {
    grid-row: 1;
    text-align: center;
    margin-bottom: 0;
  }

  /* Image second with badge on right */
  .services-content-media {
    grid-row: 2;
  }

  /* Text wrapper uses grid layout */
  .services-content-text {
    display: contents;
  }

  /* Description text third - center aligned */
  .services-content-para {
    grid-row: 3;
    text-align: center;
    margin-bottom: 0;
  }

  /* Feature cards fourth */
  .services-content-cards {
    grid-row: 4;
    flex-direction: column;
  }

  .services-feature-card,
  .services-use-card {
    flex: 1 1 auto;
    width: 100%;
    min-height: 188px;
    border-radius: 30px;
    padding: 24px 20px;
  }

  .services-content-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
  }

  /* Badge positioned on the top-left box of the image */
  .services-content-badge {
    width: 100px;
    height: 70px;
    font-size: 36px;
    line-height: 1;
    top: 7px;
    left: 34px;
    right: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

/* Badge positioning for 480px to 448px */
@media (max-width: 480px) and (min-width: 448px) {
  .services-content-badge {
    width: 80px;
    height: 58px;
    font-size: 40px;
    line-height: 1;
    top: 10px;
    left: 42px;
    right: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

/* Badge positioning for 447px to 415px */
@media (max-width: 447px) and (min-width: 415px) {
  .services-content-badge {
    width: 80px;
    height: 58px;
    font-size: 38px;
    line-height: 1;
    top: 7px;
    left: 36px;
    right: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

/* Badge positioning for 415px to 380px */
@media (max-width: 414px) and (min-width: 380px) {
  .services-content-badge {
    width: 80px;
    height: 58px;
    font-size: 40px;
    line-height: 1;
    top: 4px;
    left: 30px;
    right: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

/* Badge positioning below 380px */
@media (max-width: 379px) {
  .services-content-badge {
    width: 80px;
    height: 58px;
    font-size: 36px;
    line-height: 1;
    top: 5px;
    left: 25px;
    right: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}

/* ============================================
   Why Automaxion – Scalable, Smart, and Seamless
   Bg #F9FAF7, centered text, 4 cards with same 100px left/right on large screens
   ============================================ */

.services-why-section {
  background-color: #F9FAF7;
  padding: var(--section-padding-y) var(--section-padding-x);
}

@media (min-width: 1024px) {
  .services-why-section {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.services-why-inner {
  max-width: 1710px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33.33px;
  width: 100%;
  box-sizing: border-box;
}

.services-why-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33.33px;
  text-align: center;
  max-width: 600px;
}

.services-why-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(var(--font-size-section-heading), 3.5vw, 42px);
  line-height: var(--line-height-section-heading);
  color: var(--color-heading);
  margin: 0;
}

.services-why-para {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--font-size-section-body);
  line-height: var(--font-size-section-body-line);
  color: var(--color-body);
  margin: 0;
}

.services-why-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(12px, 1.5vw, 26.67px);
  width: 100%;
  filter: drop-shadow(0 2px 40px rgba(0, 0, 0, 0.15));
}

.services-why-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 18px clamp(18px, 1.8vw, 24px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* Top-right decorative art (Artboard1.png) – Figma: angle 146.88deg, opacity 50% */
.services-why-card-art {
  position: absolute;
  top: -101.33px;
  left: 25.11px;
  width: 446px;
  height: 229px;
  background-image: url('../../images/decorative/Artboard1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  opacity: 0.5;
  transform: rotate(140.88deg);
  pointer-events: none;
  z-index: 0;
}

.services-why-card-icon,
.services-why-card-content {
  position: relative;
  z-index: 1;
}

.services-why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 13.3333px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-why-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.services-why-card-icon--green {
  background: #EAF7F2;
  border: 1px solid #7ED7C1;
}

.services-why-card-icon--green img {
  filter: none;
}

.services-why-card-icon--blue {
  background: var(--color-bg-advantage);
  border: 1px solid #9BCCFD;
}

.services-why-card-icon--orange {
  background: #FFF4E6;
  border: 1px solid #FFCC8A;
}

.services-why-card-icon--purple {
  background: #F2ECFA;
  border: 1px solid #C8A1FB;
}

.services-why-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;
}

.services-why-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 30px);
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0;
}

.services-why-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 20px);
  line-height: 1.35;
  color: var(--color-body);
  margin: 0;
}

/* Keep 4 cards in one row; compact on small screens */
@media (max-width: 768px) {
  .services-why-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0 20px 12px 20px;
    margin: 0 -20px;
  }

  .services-why-card {
    flex: none;
    width: 240px;
    height: 160px;
    padding: 16px;
    border-radius: 12px;
    box-sizing: border-box;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  /* Decorative art - scaled for 768px */
  .services-why-card-art {
    position: absolute;
    width: 260px;
    height: 133px;
    left: 32px;
    top: -82px;
    background-image: url('../../images/decorative/Artboard1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
    opacity: 0.5;
    transform: rotate(-146.88deg);
    pointer-events: none;
    z-index: 0;
  }

  .services-why-card-icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    margin-bottom: 16px;
    z-index: 1;
  }

  .services-why-card-icon img {
    width: 24px;
    height: 24px;
  }

  .services-why-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    z-index: 1;
    flex: 1;
  }

  .services-why-card-title {
    font-family: 'AirbnbCereal_W_Bd', var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    display: flex;
    align-items: center;
    margin: 0;
  }

  .services-why-card-desc {
    font-family: 'AirbnbCereal_W_Lt', var(--font-body);
    font-weight: 300;
    font-size: 11px;
    line-height: 14px;
    display: flex;
    align-items: center;
    margin: 0;
  }
}

/* ============================================
   How We Deliver Impactful AI Solutions
   Left: Frame.png + 4 step cards; Right: Frame1.png + icon + businessman-working.png
   Same 100px left/right on large screens
   ============================================ */

.services-how-section {
  background-color: #F5F6F8;
  padding: var(--section-padding-y) var(--section-padding-x);
}

@media (min-width: 1024px) {
  .services-how-section {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.services-how-inner {
  max-width: 1710px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.services-how-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  margin-bottom: 48px;
}

.services-how-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(var(--font-size-section-heading), 3.5vw, 42px);
  line-height: var(--line-height-section-heading);
  color: var(--color-heading);
  margin: 0;
  max-width: 697px;
}

.services-how-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--font-size-section-body);
  line-height: var(--font-size-section-body-line);
  color: var(--color-body);
  margin: 0;
  max-width: 600px;
}

.services-how-columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(40px, 5vw, 80px);
  width: 100%;
}

.services-how-left {
  flex: 0 0 35%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.services-how-right {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Hide mobile steps on desktop */
.services-how-right .services-how-steps {
  display: none !important;
}

.services-how-left .services-how-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* Desktop only: Add separator lines above items and hover effects */
.services-how-left .services-how-step {
  padding: 32px 0 0 0;
  position: relative;
  transition: opacity 0.3s ease;
  opacity: 0.4;
  cursor: pointer;
}

/* Step indicator line – sits at the top of each step */
.services-how-left .services-how-step .step-indicator-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #000000;
  transition: width 0.6s ease;
}

/* Inactive steps get a faint static line */
.services-how-left .services-how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #000000;
  opacity: 0.25;
}

/* Active step: full opacity + animated indicator line */
.services-how-left .services-how-step--active {
  opacity: 1;
}

.services-how-left .services-how-step--active .step-indicator-line {
  width: 100%;
}

/* Hover effect for non-active steps */
.services-how-left .services-how-step:not(.services-how-step--active):hover {
  opacity: 0.75;
}

/* Hide step images in left column on desktop */
.services-how-left .services-how-step-image {
  display: none;
}

.services-how-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.4;
  color: var(--color-heading);
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.services-how-step-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.15vw, 20px);
  line-height: 1.6;
  color: var(--color-body);
  margin: 0;
  transition: color 0.3s ease;
}

.services-how-image-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  overflow: visible;
  display: block;
}

.services-how-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #031C63;
  border-radius: 16px;
  flex-shrink: 0;
  z-index: 2;
}

.services-how-badge img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.services-how-cutout {
  position: absolute;
  top: 20px;
  left: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(3, 28, 99, 0.9);
  border-radius: 16px;
  flex-shrink: 0;
  z-index: 2;
}

.services-how-cutout img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.services-how-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Hide navigation dots on desktop */
.services-how-dots {
  display: none !important;
}

@media (max-width: 1023px) {
  .services-how-columns {
    flex-direction: column;
    gap: 48px;
  }

  .services-how-left {
    flex: none;
    width: 100%;
  }

  .services-how-right {
    align-items: center;
  }

  .services-how-image-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .services-how-header {
    margin-bottom: 32px;
  }

  .services-how-columns {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    margin: 0;
  }

  .services-how-left {
    display: none;
    /* Hide the left column steps on mobile */
  }

  .services-how-right {
    width: 100%;
    flex: none;
  }

  /* Show mobile steps, hide desktop image */
  .services-how-right .services-how-steps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .services-how-right .services-how-steps::-webkit-scrollbar {
    display: none;
  }

  .services-how-left .services-how-steps {
    display: none;
  }

  .services-how-step {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    padding: 0;
    display: block;
    position: relative;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
  }

  .services-how-step-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    margin: 0;
  }

  .services-how-step-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .services-how-step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--color-heading);
    margin: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .services-how-step-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-body);
    margin: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .services-how-image-box {
    display: none;
    /* Hide the right side image */
  }

  /* Navigation dots */
  .services-how-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 24px 0 0 0;
  }

  .services-how-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .services-how-dot--active {
    background: #031C63;
    width: 40px;
    border-radius: 6px;
  }

  .services-how-dot:hover {
    background: #9CA3AF;
  }

  .services-how-dot--active:hover {
    background: #031C63;
  }
}

/* ============================================
   CTA Section – Ready to Transform Your Business
   Background image with centered content
   1920px: height 710.67px, heading 64px, text 26.67px
   1440px: height 533px, heading 48px, text 20px
   ============================================ */

.services-cta-section {
  position: relative;
  background-color: #1F2937;
  width: 100%;
  height: 710.67px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px var(--section-padding-x);
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .services-cta-section {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.services-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../images/pages/services/Rectangle 43.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.services-cta-content {
  position: relative;
  z-index: 1;
  max-width: 1056px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.services-cta-heading {
  font-family: 'AirbnbCereal_W_XBd', var(--font-heading);
  font-weight: 800;
  font-size: clamp(var(--font-size-section-heading), 3.5vw, 42px);
  line-height: var(--line-height-section-heading);
  letter-spacing: 0px;
  text-align: center;
  color: var(--color-text-light);
  margin: 0;
  width: 100%;
}

.services-cta-text {
  font-family: 'AirbnbCereal_W_Bk', var(--font-body);
  font-weight: 400;
  font-size: var(--font-size-section-body);
  line-height: var(--line-height-section-body);
  letter-spacing: 0px;
  text-align: center;
  color: var(--color-text-light);
  margin: 0;
  max-width: 826.67px;
}

.services-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 585px;
  height: 54.67px;
  background: #FFFFFF;
  border: 1.33px solid #1F2937;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 0;
}

.services-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.services-cta-button-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.67px;
  flex: 1;
  padding: 0 32px;
  height: 100%;
}

.services-cta-button-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18.67px;
  line-height: 21px;
  color: #1F2937;
}

.services-cta-button-icon {
  width: 14.67px;
  height: 14.67px;
  flex-shrink: 0;
  object-fit: contain;
}

.services-cta-button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74.67px;
  min-width: 74.67px;
  height: 100%;
  flex-shrink: 0;
  border-left: 1.33px solid #1F2937;
  background: transparent;
}

.services-cta-button-arrow img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  filter: brightness(0);
}

.services-cta-email {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18.67px;
  line-height: 24px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.services-cta-email:hover {
  opacity: 0.8;
}

/* 1440px breakpoint */
@media (max-width: 1440px) {
  .services-cta-section {
    height: 533px;
  }

  .services-cta-heading {
    font-size: 42px !important;
    line-height: var(--line-height-section-heading);
    letter-spacing: 0px;
  }

  .services-cta-text {
    font-size: 20px;
    line-height: 130%;
  }

  .services-cta-button {
    max-width: 448px;
  }
}

/* Mobile/Tablet breakpoint */
@media (max-width: 768px) {
  .services-cta-section {
    height: auto;
    min-height: 400px;
    padding: 60px var(--section-padding-x);
  }

  .services-cta-content {
    gap: 32px;
  }

  .services-cta-heading {
    font-size: 32px;
    line-height: 110%;
  }

  .services-cta-text {
    font-size: 14px;
    line-height: 120%;
  }

  .services-cta-button {
    max-width: 100%;
    height: 64px;
  }

  .services-cta-button-text {
    font-size: 16px;
  }

  .services-cta-email {
    font-size: 16px;
  }
}

/* ============================================
   Mobile Responsive Styles - 480px and below
   ============================================ */

@media (max-width: 480px) {

  /* Hero text adjustments */
  .services-hero-text {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }

  .services-hero-heading {
    font-size: 32px;
    line-height: 1.25;
    text-align: center;
    max-width: 100%;
  }

  .services-hero-paragraph {
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    max-width: 100%;
  }

  /* Services nav section */
  .services-nav-inner {
    gap: 40px;
  }

  .services-nav-title {
    font-size: 32px;
  }

  .services-nav-title-icon {
    width: 32px;
    height: 32px;
  }

  .services-tabs {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    margin-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .services-tab {
    width: auto;
    text-align: center;
    padding: 12px 24px;
    font-size: 16px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Content sections */
  .services-content-section {
    padding: 40px 16px;
  }

  .services-content-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-content-media {
    width: 100%;
    max-width: 100%;
    grid-row: 2;
  }

  /* Badge styling handled by specific breakpoint ranges above (480-448, 447-415, 414-380, below 380) */

  .services-content-text {
    display: contents;
  }

  .services-content-title {
    grid-row: 1;
    font-size: 24px !important;
    line-height: var(--line-height-section-heading);
    margin-bottom: 0;
    text-align: center;
  }

  .services-content-para {
    grid-row: 3;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 0;
    text-align: center;
    padding: 0 8px;
  }

  .services-content-para strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--color-heading);
  }

  .services-content-cards {
    grid-row: 4;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .services-feature-card,
  .services-use-card {
    width: 100%;
    flex: 1 1 0;
    min-height: 188px;
    padding: 18px 14px;
    border-radius: 30px;
  }

  .services-content-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .services-card-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .services-card-list {
    font-size: 13px;
    gap: 6px;
  }

  /* Why section */
  .services-why-section {
    padding: 40px 16px;
  }

  .services-why-text {
    padding: 0;
  }

  .services-why-title {
    font-size: 24px !important;
    line-height: var(--line-height-section-heading);
    margin-bottom: 16px;
  }

  .services-why-para {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 32px;
  }

  .services-why-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0 16px 12px 16px;
    margin: 0 -16px;
  }

  .services-why-card {
    flex: none;
    width: 200.34px;
    height: 134px;
    padding: 13.14px;
    border-radius: 9.85px;
    box-sizing: border-box;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  /* Decorative art - scaled for mobile */
  .services-why-card-art {
    position: absolute;
    width: 219.68px;
    height: 112.69px;
    left: 27.15px;
    top: -69.63px;
    background-image: url('../../images/decorative/Artboard1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
    opacity: 0.5;
    transform: rotate(-146.88deg);
    pointer-events: none;
    z-index: 0;
  }

  .services-why-card-icon {
    position: relative;
    width: 45.32px;
    height: 45.32px;
    border-radius: 6.57px;
    margin-bottom: 13.58px;
  }

  .services-why-card-icon img {
    width: 21.02px;
    height: 21.02px;
  }

  .services-why-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6.57px;
    position: relative;
    z-index: 1;
    flex: 1;
  }

  .services-why-card-title {
    font-family: 'AirbnbCereal_W_Bd', var(--font-heading);
    font-weight: 700;
    font-size: 14.45px;
    line-height: 18px;
    display: flex;
    align-items: center;
    margin: 0;
  }

  .services-why-card-desc {
    font-family: 'AirbnbCereal_W_Lt', var(--font-body);
    font-weight: 300;
    font-size: 9.2px;
    line-height: 12px;
    display: flex;
    align-items: center;
    margin: 0;
  }

  /* How section */
  .services-how-section {
    padding: 40px 16px;
  }

  .services-how-header {
    gap: 20px;
    margin-bottom: 32px;
  }

  .services-how-title {
    font-size: 24px !important;
    line-height: var(--line-height-section-heading);
  }

  .services-how-sub {
    font-size: 16px;
    line-height: 150%;
  }

  .services-how-columns {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    margin: 0;
  }

  .services-how-left {
    display: none;
    /* Hide the left column steps on mobile */
  }

  .services-how-right {
    width: 100%;
    flex: none;
  }

  /* Show mobile steps, hide desktop image */
  .services-how-right .services-how-steps {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .services-how-right .services-how-steps::-webkit-scrollbar {
    display: none;
  }

  .services-how-left .services-how-steps {
    display: none;
  }

  .services-how-step {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    padding: 0;
    display: block;
    position: relative;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
  }

  .services-how-step-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    margin: 0;
  }

  .services-how-step-content {
    position: absolute;
    bottom: calc((100vw - 353px) * 0.315);
    left: 0;
    right: 0;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }

  .services-how-step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: var(--color-heading);
    margin: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .services-how-step-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 11px;
    line-height: 1.4;
    color: var(--color-body);
    margin: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .services-how-image-box {
    display: none;
    /* Hide the right side image */
  }

  .services-how-image {
    display: none;
  }

  /* CTA section */
  .services-cta-section {
    height: auto;
    min-height: 350px;
    padding: 40px 16px;
  }

  .services-cta-content {
    gap: 24px;
  }

  .services-cta-heading {
    font-size: 24px !important;
    line-height: var(--line-height-section-heading);
  }

  .services-cta-text {
    font-size: 14px;
    line-height: 150%;
  }

  .services-cta-button {
    height: 56px;
    border-radius: 16px;
  }

  .services-cta-button-main {
    padding: 0 20px;
    gap: 8px;
  }

  .services-cta-button-text {
    font-size: 14px;
  }

  .services-cta-button-icon {
    width: 12px;
    height: 12px;
  }

  .services-cta-button-arrow {
    width: 56px;
    min-width: 56px;
  }

  .services-cta-button-arrow img {
    width: 20px;
    height: 20px;
  }

  .services-cta-email {
    font-size: 14px;
  }
}

/* For screens 353px and below, keep text at the bottom */
@media (max-width: 353px) {
  .services-how-step-content {
    bottom: 0 !important;
  }
}

/* ============================================
   1441-1535px Breakpoint – Smooth transition from 1440px up
   Base point: 1440px values, scaled slightly up
   ============================================ */

@media (min-width: 1441px) and (max-width: 1535px) {

  /* --- Hero Text --- */
  .services-hero-text {
    width: 720px;
    max-width: calc(100% - 180px);
    left: 90px;
    top: 260px;
    gap: 30px;
  }

  .services-hero-heading {
    font-size: 66px;
    line-height: 78px;
    max-width: 720px;
  }

  .services-hero-paragraph {
    font-size: 22px;
    line-height: 118%;
    max-width: 680px;
  }

  /* --- Services Nav/Tabs Section --- */
  .services-nav-inner {
    gap: 58px;
  }

  .services-nav-title {
    font-size: 56px;
  }

  .services-tab {
    font-size: 32px;
  }

  /* --- Stats Section --- */
  .services-stat-number {
    font-size: 66px;
    line-height: 88px;
  }

  .services-stat-title {
    font-size: 27px;
    line-height: 36px;
  }

  .services-stat-desc {
    font-size: 20px;
    line-height: 31px;
  }

  /* --- Service Content Blocks --- */
  .services-content-title {
    font-size: 46px;
    line-height: 1.2;
  }

  .services-content-para {
    font-size: 20px;
    line-height: 1.38;
  }

  .services-card-heading {
    font-size: 24px;
  }

  .services-card-list {
    font-size: 18px;
  }

  /* --- Why Automaxion Section --- */
  .services-why-title {
    font-size: 48px;
    line-height: 1.15;
  }

  .services-why-para {
    font-size: 21px;
    line-height: 30px;
  }

  .services-why-card-title {
    font-size: 24px;
  }

  .services-why-card-desc {
    font-size: 17px;
  }

  /* --- How We Deliver Section --- */
  .services-how-title {
    font-size: 48px;
    line-height: 1.22;
  }

  .services-how-sub {
    font-size: 21px;
    line-height: 30px;
  }

  .services-how-step-title {
    font-size: 22px;
  }

  .services-how-step-desc {
    font-size: 17px;
  }

  /* --- CTA Section --- */
  .services-cta-section {
    height: 620px;
  }

  .services-cta-heading {
    font-size: 50px;
  }

  .services-cta-text {
    font-size: 22px;
  }

  .services-cta-button-text {
    font-size: 18px;
  }

  .services-cta-email {
    font-size: 18px;
  }
}

/* ============================================
   1536px Breakpoint – Full page optimization for large desktop
   ============================================ */

@media (min-width: 1536px) {

  /* --- Hero Text --- */
  .services-hero-text {
    width: 880px;
    max-width: calc(100% - 220px);
    left: 110px;
    top: 310px;
    gap: 36px;
  }

  .services-hero-heading {
    font-size: 76px;
    line-height: 90px;
    max-width: 880px;
  }

  .services-hero-paragraph {
    font-size: 24px;
    line-height: 115%;
    max-width: 780px;
  }

  /* --- Services Nav/Tabs Section --- */
  .services-nav-section {
    padding-left: 110px;
    padding-right: 110px;
  }

  .services-nav-inner {
    max-width: 1710px;
    gap: 72px;
  }

  .services-nav-title {
    font-size: 60px;
  }

  .services-nav-title-icon {
    width: 48px;
    height: 48px;
  }

  .services-tab {
    font-size: 34px;
    padding: clamp(4px, 0.4vw, 12px) clamp(6px, 0.6vw, 22px);
  }

  /* --- Service Content Blocks (01-04) --- */
  .services-content-section {
    padding-left: 110px;
    padding-right: 110px;
  }

  .services-content-inner {
    max-width: 1710px;
    gap: 64px;
  }

  .services-content-media {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .services-content-text {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .services-content-title {
    font-size: 52px;
    line-height: 1.18;
  }

  .services-content-para {
    font-size: 22px;
    line-height: 1.4;
  }

  .services-content-badge {
    width: 140px;
    height: 96px;
    font-size: 48px;
    top: 12px;
    left: 62px;
  }

  .services-content-cards {
    gap: 28px;
    margin-top: 12px;
  }

  .services-feature-card,
  .services-use-card {
    padding: 36px;
    border-radius: 32px;
  }

  .services-card-heading {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .services-card-list {
    font-size: 20px;
    line-height: 1.45;
  }

  .services-card-list li {
    margin-bottom: 8px;
  }

  /* --- Why Automaxion Section --- */
  .services-why-section {
    padding-left: 110px;
    padding-right: 110px;
  }

  .services-why-inner {
    max-width: 1710px;
    gap: 40px;
  }

  .services-why-text {
    max-width: 920px;
    gap: 36px;
  }

  .services-why-title {
    font-size: 60px;
    line-height: 1.12;
  }

  .services-why-para {
    font-size: 24px;
    line-height: 34px;
  }

  .services-why-cards {
    gap: 28px;
  }

  .services-why-card {
    padding: 22px 24px;
    border-radius: 22px;
    gap: 12px;
  }

  .services-why-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
  }

  .services-why-card-icon img {
    width: 36px;
    height: 36px;
  }

  .services-why-card-title {
    font-size: 26px;
    line-height: 1.22;
  }

  .services-why-card-desc {
    font-size: 16px;
    line-height: 1.4;
  }

  /* --- How We Deliver Section --- */
  .services-how-section {
    padding-left: 110px;
    padding-right: 110px;
  }

  .services-how-inner {
    max-width: 1710px;
  }

  .services-how-header {
    gap: 32px;
    margin-bottom: 56px;
  }

  .services-how-title {
    font-size: 60px;
    line-height: 1.22;
    max-width: 780px;
  }

  .services-how-sub {
    font-size: 24px;
    line-height: 34px;
    max-width: 780px;
  }

  .services-how-columns {
    gap: 80px;
  }

  .services-how-step-title {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .services-how-step-desc {
    font-size: 18px;
    line-height: 1.6;
  }

  .services-how-left .services-how-step {
    padding-top: 36px;
  }

  .services-how-left .services-how-steps {
    gap: 36px;
  }

  .services-how-image-box {
    max-width: 560px;
    border-radius: 26px;
  }

  .services-how-image {
    border-radius: 26px;
  }

  /* --- CTA Section --- */
  .services-cta-section {
    height: 750px;
    padding-left: 110px;
    padding-right: 110px;
  }

  .services-cta-content {
    max-width: 1100px;
    gap: 44px;
  }

  .services-cta-heading {
    font-size: 64px;
  }

  .services-cta-text {
    font-size: 24px;
    max-width: 900px;
  }

  .services-cta-button {
    max-width: 600px;
    height: 80px;
    border-radius: 22px;
  }

  .services-cta-button-text {
    font-size: 20px;
    line-height: 22px;
  }

  .services-cta-button-icon {
    width: 16px;
    height: 16px;
  }

  .services-cta-button-arrow {
    width: 80px;
    min-width: 80px;
  }

  .services-cta-button-arrow img {
    width: 26px;
    height: 26px;
  }

  .services-cta-email {
    font-size: 20px;
  }
}

/* ============================================
   1920px Breakpoint – Full optimization for ultra-wide
   ============================================ */

@media (min-width: 1920px) {

  /* --- Hero Text --- */
  .services-hero-text {
    width: 960px;
    max-width: calc(100% - 260px);
    left: 130px;
    top: 340px;
    gap: 40px;
  }

  .services-hero-heading {
    font-size: 90px;
    line-height: 105px;
    max-width: 960px;
  }

  .services-hero-paragraph {
    font-size: 28px;
    line-height: 120%;
    max-width: 860px;
  }

  /* --- Services Nav/Tabs Section --- */
  .services-nav-section {
    padding-left: 130px;
    padding-right: 130px;
  }

  .services-nav-inner {
    max-width: 1800px;
    gap: 80px;
  }

  .services-nav-title {
    font-size: 72px;
  }

  .services-nav-title-icon {
    width: 56px;
    height: 56px;
  }

  .services-tab {
    font-size: 46px;
    padding: clamp(6px, 0.5vw, 16px) clamp(8px, 0.8vw, 32px);
  }

  /* --- Service Content Blocks (01-04) --- */
  .services-content-section {
    padding-left: 130px;
    padding-right: 130px;
  }

  .services-content-inner {
    max-width: 1800px;
    gap: 80px;
  }

  .services-content-media {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .services-content-text {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .services-content-title {
    font-size: 60px;
    line-height: 1.15;
  }

  .services-content-para {
    font-size: 26px;
    line-height: 1.45;
  }

  .services-content-badge {
    width: 191px;
    height: 127px;
    font-size: 56px;
    left: 61px;
    top: 11px;
  }

  .services-content-cards {
    gap: 32px;
    margin-top: 16px;
  }

  .services-feature-card,
  .services-use-card {
    padding: 40px;
    border-radius: 36px;
  }

  .services-card-heading {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .services-card-list {
    font-size: 24px;
    line-height: 1.5;
  }

  .services-card-list li {
    margin-bottom: 10px;
  }

  /* --- Why Automaxion Section --- */
  .services-why-section {
    padding-left: 130px;
    padding-right: 130px;
  }

  .services-why-inner {
    max-width: 1800px;
    gap: 48px;
  }

  .services-why-text {
    max-width: 1000px;
    gap: 40px;
  }

  .services-why-title {
    font-size: 68px;
    line-height: 1.1;
  }

  .services-why-para {
    font-size: 28px;
    line-height: 38px;
  }

  .services-why-cards {
    gap: 32px;
  }

  .services-why-card {
    padding: 24px 28px;
    border-radius: 24px;
    gap: 14px;
  }

  .services-why-card-icon {
    width: 76px;
    height: 76px;
    border-radius: 16px;
  }

  .services-why-card-icon img {
    width: 40px;
    height: 40px;
  }

  .services-why-card-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .services-why-card-desc {
    font-size: 18px;
    line-height: 1.45;
  }

  /* --- How We Deliver Section --- */
  .services-how-section {
    padding-left: 130px;
    padding-right: 130px;
  }

  .services-how-inner {
    max-width: 1800px;
  }

  .services-how-header {
    gap: 36px;
    margin-bottom: 64px;
  }

  .services-how-title {
    font-size: 68px;
    line-height: 1.2;
    max-width: 850px;
  }

  .services-how-sub {
    font-size: 28px;
    line-height: 38px;
    max-width: 850px;
  }

  .services-how-columns {
    gap: 100px;
  }

  .services-how-step-title {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .services-how-step-desc {
    font-size: 18px;
    line-height: 1.65;
  }

  .services-how-left .services-how-step {
    padding-top: 40px;
  }

  .services-how-left .services-how-steps {
    gap: 40px;
  }

  .services-how-image-box {
    max-width: 620px;
    border-radius: 28px;
  }

  .services-how-image {
    border-radius: 28px;
  }

  /* --- CTA Section --- */
  .services-cta-section {
    height: 800px;
    padding-left: 130px;
    padding-right: 130px;
  }

  .services-cta-content {
    max-width: 1200px;
    gap: 48px;
  }

  .services-cta-heading {
    font-size: 72px;
  }

  .services-cta-text {
    font-size: 28px;
    max-width: 960px;
  }

  .services-cta-button {
    max-width: 640px;
    height: 84px;
    border-radius: 24px;
  }

  .services-cta-button-text {
    font-size: 21px;
    line-height: 24px;
  }

  .services-cta-button-icon {
    width: 18px;
    height: 18px;
  }

  .services-cta-button-arrow {
    width: 84px;
    min-width: 84px;
  }

  .services-cta-button-arrow img {
    width: 28px;
    height: 28px;
  }

  .services-cta-email {
    font-size: 21px;
  }
}