/*
=================================================================
ALLSTARS TECH SOLUTIONS — MAIN STYLESHEET
=================================================================

SECTION GUIDE
01. Theme variables
02. Global reset and typography
03. Shared layout helpers
04. Header and navigation
05. Homepage hero
06. Homepage service cards
07. About and statistics
08. Process and call-to-action
09. Internal page heroes
10. Service detail pages
11. Services listing page
12. Contact page and form
13. Footer
14. Floating WhatsApp button
15. Responsive breakpoints
16. Accessibility and reduced motion

Notes:
- Keep this file linked after the Google Manrope font in header.php.
- Rules near the bottom override earlier legacy rules where necessary.
- Edit the marked FINAL sections for header, cards, contact, and footer.
=================================================================
*/

/* 01. THEME VARIABLES — reusable colors, shadows and radii */
:root {
  --ink: #07111f;
  --ink-2: #101a2d;
  --blue: #1769ff;
  --blue-dark: #0c4dd4;
  --blue-soft: #eaf1ff;
  --white: #ffffff;
  --soft: #f5f8fc;
  --muted: #667085;
  --line: #dfe6f0;
  --shadow: 0 25px 70px rgba(7, 17, 31, .12);
  --radius: 28px;
}

/* 02. GLOBAL RESET — predictable element sizing */
* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

/* GLOBAL TYPOGRAPHY AND PAGE BACKGROUND */
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

body.menu-open {
  overflow: hidden
}

h1,
h2,
h3,
h4,
strong,
.brand,
.btn {
  font-family: "Outfit", sans-serif
}

a {
  color: inherit
}

img,
svg {
  display: block;
  max-width: 100%
}

button,
input,
textarea,
select {
  font: inherit
}

/* 03. SHARED LAYOUT — centered content container */
.container {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto
}

.section {
  padding: 120px 0
}

/* 04. HEADER — fixed navigation area */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 16px 0;
  transition: .3s
}

.site-header.scrolled {
  padding: 9px 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 230, 240, .7)
}

.nav-shell {
  width: min(1460px, calc(100% - 36px));
  height: 76px;
  margin: auto;
  padding: 0 16px 0 22px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(223, 230, 240, .9);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(7, 17, 31, .06)
}

.brand {
  display: flex;
  align-items: center;
  width: 230px;
  flex: none;
  text-decoration: none;
  overflow: hidden
}

.brand img {
  width: 220px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  transition: .3s
}

.brand:hover img {
  transform: scale(1.025)
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto
}

.main-nav>a,
.dropdown-toggle {
  position: relative;
  padding: 26px 0;
  border: 0;
  background: none;
  color: #263247;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer
}

.main-nav>a:after,
.dropdown-toggle:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s
}

.main-nav>a:hover:after,
.main-nav>a.active:after,
.dropdown-toggle:hover:after {
  transform: scaleX(1)
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 7px
}

.nav-dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: 70px;
  left: 50%;
  width: min(1050px, 90vw);
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: .28s
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line)
}

.dropdown-head small,
.dropdown-head strong {
  display: block
}

.dropdown-head small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em
}

.dropdown-head strong {
  font-size: 20px
}

.dropdown-head>a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px
}

.dropdown-grid a {
  padding: 12px 14px;
  border-radius: 10px;
  color: #3c475b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .22s
}

.dropdown-grid a:hover {
  background: var(--blue-soft);
  color: var(--blue);
  transform: translateX(3px)
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: .28s
}

.nav-cta {
  margin-left: 5px;
  background: var(--ink);
  color: #fff;
  font-size: 13px
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-2px)
}

.menu-toggle {
  display: none
}

/* 05. HOMEPAGE HERO — headline, dashboard and background effects */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 190px 0 0;
  background: linear-gradient(135deg, #f7f9fd 0%, #eef4ff 55%, #fff 100%)
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 105, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 105, 255, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%)
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none
}

.hero-glow-one {
  width: 560px;
  height: 560px;
  right: -170px;
  top: 80px;
  background: radial-gradient(circle, rgba(23, 105, 255, .22), transparent 68%)
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  left: -180px;
  top: 350px;
  background: radial-gradient(circle, rgba(23, 105, 255, .12), transparent 70%)
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 90px;
  align-items: center
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase
}

.eyebrow:before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor
}

.eyebrow.light {
  color: #a9c4ff
}

.hero h1 {
  max-width: 790px;
  margin: 25px 0 28px;
  font-size: clamp(64px, 6.4vw, 102px);
  line-height: .95;
  letter-spacing: -.06em
}

.hero h1 em {
  display: block;
  color: var(--blue);
  font-style: normal
}

.hero-copy>p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 38px
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 105, 255, .25)
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(23, 105, 255, .32)
}

.btn-secondary,
.btn-outline {
  border: 1px solid var(--line);
  background: #fff
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px)
}

.btn-white {
  background: #fff;
  color: var(--ink)
}

.btn-white:hover {
  transform: translateY(-4px);
  background: var(--blue-soft)
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 45px
}

.avatar-stack {
  display: flex
}

.avatar-stack span {
  width: 44px;
  height: 44px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 18px rgba(7, 17, 31, .08);
  font-size: 12px;
  font-weight: 800
}

.avatar-stack span:first-child {
  margin-left: 0
}

.avatar-stack span:last-child {
  background: var(--blue);
  color: #fff
}

.hero-trust p {
  margin: 0;
  color: #7b8496;
  font-size: 13px;
  line-height: 1.4
}

.hero-trust strong {
  color: var(--ink)
}

.hero-visual {
  position: relative;
  min-height: 590px
}

.dashboard-card {
  position: absolute;
  inset: 30px 0 30px 35px;
  padding: 34px;
  border-radius: 32px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 35px 90px rgba(7, 17, 31, .25);
  overflow: hidden
}

.dashboard-card:after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  right: -120px;
  bottom: -150px;
  background: rgba(23, 105, 255, .27)
}

.dashboard-top,
.dashboard-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.dashboard-top small,
.dashboard-top strong {
  display: block
}

.dashboard-top small,
.dashboard-footer small {
  color: #8995aa;
  font-size: 11px
}

.dashboard-top strong {
  font-size: 18px
}

.live-badge {
  padding: 7px 10px;
  border-radius: 20px;
  background: rgba(23, 105, 255, .16);
  color: #81adff;
  font-size: 11px
}

.growth-number {
  position: relative;
  z-index: 2;
  margin: 55px 0 0;
  font-family: "Outfit";
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -.07em
}

.dashboard-card>p {
  position: relative;
  z-index: 2;
  max-width: 320px;
  color: #aab4c5
}

.chart {
  position: relative;
  z-index: 2;
  height: 165px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 35px 0
}

.chart span {
  flex: 1;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(#4f8cff, #1769ff);
  transform-origin: bottom;
  animation: barGrow .9s both
}

.dashboard-footer {
  padding-top: 22px;
  border-top: 1px solid #253049
}

.dashboard-footer strong {
  display: block;
  margin-top: 4px;
  font-size: 22px
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(7, 17, 31, .15);
  animation: float 4s ease-in-out infinite
}

.floating-card>span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900
}

.floating-card small,
.floating-card strong {
  display: block
}

.floating-card small {
  color: var(--muted);
  font-size: 11px
}

.floating-card strong {
  font-size: 16px
}

.floating-card-one {
  left: -20px;
  top: 90px
}

.floating-card-two {
  right: -15px;
  bottom: 70px;
  animation-delay: 1.2s
}

.industries-panel {
  position: relative;
  z-index: 3;
  margin-top: 80px;
  padding: 34px 42px 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -15px 45px rgba(7, 17, 31, .04)
}

.industries-panel p {
  margin: 0 0 16px;
  font-size: 16px
}

.industries-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px
}

.industries-list span {
  color: #8b94a6;
  font-weight: 700;
  letter-spacing: .04em
}

.section-heading {
  max-width: 860px;
  margin-bottom: 55px
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: end
}

.section-heading h2,
.about-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -.055em
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8
}

/* 06. HOMEPAGE SERVICES — feature cards and hover effects */
.services-section {
  background: #fff
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.service-card {
  min-height: 360px;
  padding: 28px;
  border-radius: 22px;
}

.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(23, 105, 255, .18), transparent 45%);
  opacity: 0;
  transition: .35s
}

.service-card:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(23, 105, 255, .16);
  transition: .55s
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 65px rgba(7, 17, 31, .16);
  border-color: rgba(23, 105, 255, .55)
}

.service-card:hover:before {
  opacity: 1
}

.service-card:hover:after {
  transform: scale(1.45)
}

.service-card.dark {
  background: var(--ink-2);
  border-color: #233049;
  color: #fff
}

.service-card.blue {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff
}

.service-card.light {
  background: #f8faff
}

.service-card>* {
  position: relative;
  z-index: 2
}

.service-number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #7e91b5
}

.blue .service-number {
  color: #c9dbff
}

.service-icon {
  margin-top: 35px;
  font-size: 26px;
}

.service-card:hover .service-icon {
  transform: translateY(-8px) rotate(-8deg) scale(1.08)
}

.service-card h3 {
  font-size: 22px;
  margin: 22px 0 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
}

.service-card.light p {
  color: var(--muted)
}

.service-card.blue p {
  color: #dce8ff
}

.service-link {
  padding-top: 20px;
}

.service-card:hover .service-link {
  color: #7aa8ff
}

.service-card.blue:hover .service-link {
  color: #fff
}

.center-action {
  text-align: center;
  margin-top: 48px
}

/* 07. ABOUT SECTION — agency introduction and statistics */
.about-section {
  background: var(--soft)
}

.about-top {
  display: grid;
  grid-template-columns: 1.25fr .62fr .48fr;
  gap: 70px;
  align-items: start
}

.about-copy {
  padding-top: 55px
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8
}

.about-cta {
  position: relative;
  min-height: 230px;
  margin-top: 55px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: .35s
}

.about-cta:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -85px;
  bottom: -100px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .25;
  transition: .5s
}

.about-cta small {
  color: #8ea0bd;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px
}

.about-cta strong {
  max-width: 180px;
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.35
}

.about-cta>span {
  margin-top: auto;
  font-size: 24px
}

.about-cta:hover {
  transform: translateY(-9px);
  background: var(--blue)
}

.about-cta:hover:after {
  transform: scale(1.5);
  opacity: .28
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden
}

.stats-grid article {
  padding: 38px 30px;
  border-right: 1px solid var(--line);
  transition: .3s
}

.stats-grid article:last-child {
  border-right: 0
}

.stats-grid article:hover {
  background: var(--blue-soft);
  transform: translateY(-6px)
}

.stats-grid strong {
  color: var(--blue);
  font-size: 48px
}

.stats-grid h3 {
  margin: 40px 0 8px;
  font-size: 18px
}

.stats-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

/* 08. PROCESS SECTION — project workflow steps */
.process-section {
  background: #fff
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.process-grid article {
  min-height: 280px;
  padding: 35px 30px;
  border-right: 1px solid var(--line);
  transition: .3s
}

.process-grid article:last-child {
  border-right: 0
}

.process-grid article:hover {
  background: var(--blue-soft);
  transform: translateY(-7px)
}

.process-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800
}

.process-grid h3 {
  margin: 65px 0 12px;
  font-size: 25px
}

.process-grid p {
  margin: 0;
  color: var(--muted)
}

/* CALL-TO-ACTION SECTION — conversion banner */
.cta-section {
  padding-top: 30px
}

.cta-box {
  position: relative;
  padding: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--ink), #0b2f75);
  color: #fff
}

.cta-box:after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  right: -180px;
  top: -240px;
  background: rgba(23, 105, 255, .35)
}

.cta-box>* {
  position: relative;
  z-index: 2
}

.cta-box h2 {
  max-width: 850px;
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: -.05em
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 110px;
  padding: 95px 0 28px;
  background: #050914;
  color: #fff
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 100px
}

.footer-logo {
  width: 360px;
  height: 110px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-intro h2 {
  margin: 32px 0 40px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -.055em
}

.footer-intro h2 em {
  font-style: normal;
  color: #72a3ff
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  padding-top: 18px
}

.footer-links-wrap h3 {
  margin: 0 0 24px;
  color: #738198;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em
}

.footer-links-wrap a,
.footer-links-wrap span {
  display: block;
  margin: 0 0 13px;
  color: #bcc6d7;
  font-size: 13px;
  text-decoration: none;
  word-break: break-word
}

.footer-links-wrap a:hover {
  color: #72a3ff
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  padding-top: 24px;
  border-top: 1px solid #20283a;
  color: #6f7d94;
  font-size: 12px
}

.footer-bottom div {
  display: flex;
  gap: 24px
}

.footer-bottom a {
  text-decoration: none
}

.footer-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  left: -250px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 105, 255, .2), transparent 68%)
}

/* 14. FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  padding: 15px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 15px 35px rgba(23, 105, 255, .35);
  transition: .3s
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.06);
  background: var(--ink)
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@keyframes float {
  50% {
    transform: translateY(-12px)
  }
}

@keyframes barGrow {
  from {
    transform: scaleY(0)
  }
}

@media(max-width:1180px) {
  .main-nav {
    gap: 18px
  }

  .nav-cta {
    display: none
  }

  .dropdown-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .hero-layout {
    gap: 45px
  }

  .services-grid {
    gap: 18px;
  }

  .industries-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 14px
  }

  .about-top {
    grid-template-columns: 1fr 1fr
  }

  .about-cta {
    grid-column: 1/-1;
    margin-top: 0;
    min-height: 160px
  }
}

@media(max-width:820px) {
  .container {
    width: calc(100% - 36px)
  }

  .section {
    padding: 85px 0
  }

  .site-header {
    padding: 9px 0
  }

  .nav-shell {
    width: calc(100% - 20px);
    height: 68px;
    padding: 0 12px
  }

  .brand {
    width: 190px
  }

  .brand img {
    width: 185px;
    height: 56px
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: .25s
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  .main-nav {
    position: fixed;
    inset: 86px 10px auto;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow)
  }

  .main-nav.open {
    display: flex
  }

  .main-nav>a,
  .dropdown-toggle {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid var(--line);
    text-align: left
  }

  .dropdown-toggle {
    justify-content: space-between
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    padding: 12px 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none !important
  }

  .nav-dropdown.open .dropdown-menu {
    display: block
  }

  .dropdown-head {
    display: none
  }

  .dropdown-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero {
    min-height: auto;
    padding-top: 145px
  }

  .hero-layout {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: clamp(55px, 12vw, 82px)
  }

  .hero-visual {
    min-height: 520px
  }

  .dashboard-card {
    inset: 20px
  }

  .floating-card-one {
    left: 0
  }

  .floating-card-two {
    right: 0
  }

  .industries-panel {
    margin-top: 40px
  }

  .industries-list {
    grid-template-columns: repeat(2, 1fr)
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .services-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-top {
    grid-template-columns: 1fr
  }

  .about-copy {
    padding-top: 0
  }

  .about-cta {
    grid-column: auto
  }

  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-grid article:nth-child(2),
  .process-grid article:nth-child(2) {
    border-right: 0
  }

  .stats-grid article:nth-child(-n+2),
  .process-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .cta-box {
    padding: 48px;
    align-items: flex-start;
    flex-direction: column
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 60px
  }
}

@media(max-width:560px) {
  .hero h1 {
    font-size: 48px
  }

  .hero-copy>p {
    font-size: 16px
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column
  }

  .btn {
    width: 100%
  }

  .hero-trust {
    align-items: flex-start
  }

  .hero-visual {
    min-height: 420px
  }

  .dashboard-card {
    padding: 24px
  }

  .growth-number {
    font-size: 65px
  }

  .chart {
    height: 105px
  }

  .floating-card {
    padding: 12px 14px
  }

  .floating-card-one {
    top: 45px
  }

  .floating-card-two {
    bottom: 30px
  }

  .industries-panel {
    padding: 28px 22px
  }

  .industries-list {
    grid-template-columns: 1fr 1fr
  }

  .industries-list span {
    font-size: 13px
  }

  .section-heading h2,
  .about-heading h2 {
    font-size: 43px
  }

  .services-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr
  }

  .service-card {
    min-height: 410px
  }

  .stats-grid article,
  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .cta-box {
    padding: 38px 26px
  }

  .footer-links-wrap {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px
  }

  .dropdown-grid {
    grid-template-columns: 1fr
  }

  .footer-logo {
    width: 220px
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px
  }
}

/* 16. ACCESSIBILITY — disables animation when requested */
@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* =========================================================
   COMPLETE SITE FIXES — navigation, internal pages & mobile
   ========================================================= */
body {
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
.brand,
.btn {
  font-family: "Manrope", Arial, sans-serif
}

main {
  display: block
}

.brand {
  width: 245px;
  min-width: 245px;
  height: 64px;
  overflow: visible
}

.brand img {
  width: 235px;
  height: 60px;
  object-fit: contain;
  object-position: left center
}

.dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0
}

.dropdown-grid a>span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--soft);
  color: #43516a
}

.dropdown-grid a svg {
  width: 19px;
  height: 19px
}

.dropdown-head span {
  font-size: 16px;
  font-weight: 700
}

/* Internal page hero */
/* 09. INTERNAL PAGE HERO — service and standard inner pages */
.service-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 110px;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 60%, #fff 100%);
  border-bottom: 1px solid var(--line)
}

.service-hero:before,
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 105, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 105, 255, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%)
}

.service-hero:after,
.page-hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 105, 255, .18), transparent 68%)
}

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 80px;
  align-items: center
}

.service-hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 24px 0 24px;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.055em
}

.service-hero p,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8
}

.service-hero-icon {
  width: 360px;
  height: 360px;
  justify-self: end;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 105, 255, .18);
  border-radius: 42px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 70px rgba(7, 17, 31, .12);
  backdrop-filter: blur(12px);
  color: var(--blue);
  transform: rotate(3deg);
  transition: .4s
}

.service-hero-icon:hover {
  transform: rotate(0) translateY(-8px);
  box-shadow: 0 35px 80px rgba(23, 105, 255, .18)
}

.service-hero-icon svg {
  width: 165px;
  height: 165px;
  stroke-width: 1.45
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 2px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: .25s
}

.text-link:hover {
  color: var(--blue);
  transform: translateX(4px)
}

/* Service detail */
/* 10. SERVICE DETAIL CONTENT — deliverables and features */
.service-detail {
  background: #fff
}

.detail-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start
}

.detail-grid h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -.045em
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.feature-list article {
  display: flex;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: .3s
}

.feature-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 105, 255, .45);
  box-shadow: 0 22px 48px rgba(7, 17, 31, .09)
}

.feature-list article>span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900
}

.feature-list h3 {
  margin: 1px 0 8px;
  font-size: 18px
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65
}

.deliverables {
  background: var(--soft)
}

.section-heading h2 em,
.about-heading h2 em {
  font-style: normal;
  color: var(--blue)
}

.related-services {
  background: #fff
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.related-grid>a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  background: #fff;
  transition: .32s
}

.related-grid>a:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 105, 255, .5);
  box-shadow: 0 24px 55px rgba(7, 17, 31, .11)
}

.related-grid>a>span {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue)
}

.related-grid svg {
  width: 29px;
  height: 29px
}

.related-grid strong,
.related-grid small {
  display: block
}

.related-grid strong {
  font-size: 17px;
  line-height: 1.4
}

.related-grid small {
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800
}

/* Generic inner pages */
.page-hero .container {
  position: relative;
  z-index: 2
}

.content-section {
  padding: 110px 0
}

.prose {
  max-width: 900px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85
}

.prose h2,
.prose h3 {
  color: var(--ink)
}

/* Services listing page */
/* 11. SERVICES LISTING PAGE — compact service cards */
.all-services-grid,
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.all-services-grid>a,
.services-page-grid>a {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none;
  background: #fff;
  transition: .32s
}

.all-services-grid>a:hover,
.services-page-grid>a:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 105, 255, .5);
  box-shadow: 0 24px 55px rgba(7, 17, 31, .1)
}

.all-services-grid svg,
.services-page-grid svg {
  width: 44px;
  height: 44px;
  color: var(--blue)
}

/* Safer desktop dropdown size */
@media(min-width:821px) {
  .dropdown-menu {
    position: fixed;
    top: 104px;
    left: 50%;
    width: min(1180px, calc(100vw - 64px));
    max-height: calc(100vh - 130px);
    overflow: auto;
    transform: translate(-50%, 14px)
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    transform: translate(-50%, 0)
  }

  .dropdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }
}

@media(max-width:1180px) {
  .service-hero-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 45px
  }

  .service-hero-icon {
    width: 290px;
    height: 290px
  }

  .service-hero-icon svg {
    width: 125px;
    height: 125px
  }

  .detail-grid {
    gap: 50px
  }

  .related-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:820px) {
  .brand {
    width: 320px;
    min-width: 320px;
    height: 90px;
    display: flex;
    align-items: center;
    overflow: visible;
  }

  .brand img {
    width: 300px;
    height: 85px;
    object-fit: contain;
    object-position: left center;
    transition: .35s;
  }

  .brand:hover img {
    transform: scale(1.05);
  }

  .nav-shell {
    height: 100px;
    padding: 0 24px;
  }

  .main-nav {
    z-index: 1200;
    inset: 86px 10px 10px;
    max-height: calc(100dvh - 96px)
  }

  .main-nav>a,
  .dropdown-toggle {
    font-size: 16px
  }

  .dropdown-grid {
    grid-template-columns: 1fr !important;
    gap: 4px
  }

  .dropdown-grid a {
    padding: 10px 8px;
    font-size: 13px
  }

  .dropdown-grid a>span {
    width: 30px;
    height: 30px;
    min-width: 30px
  }

  .dropdown-grid a svg {
    width: 17px;
    height: 17px
  }

  .service-hero,
  .page-hero {
    padding: 140px 0 80px
  }

  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px
  }

  .service-hero h1,
  .page-hero h1 {
    font-size: clamp(44px, 10vw, 66px)
  }

  .service-hero p,
  .page-hero p {
    font-size: 17px
  }

  .service-hero-icon {
    justify-self: start;
    width: 240px;
    height: 240px;
    border-radius: 30px
  }

  .service-hero-icon svg {
    width: 105px;
    height: 105px
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 45px
  }

  .feature-list {
    grid-template-columns: 1fr 1fr
  }

  .related-grid {
    grid-template-columns: 1fr 1fr
  }

  .all-services-grid,
  .services-page-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .container {
    width: calc(100% - 28px)
  }

  .site-header {
    padding: 7px 0
  }

  .nav-shell {
    width: calc(100% - 14px);
    height: 62px;
    border-radius: 14px;
    padding: 0 9px 0 12px
  }

  .brand {
    width: 155px;
    min-width: 155px;
    height: 48px
  }

  .brand img {
    width: 150px;
    height: 46px
  }

  .menu-toggle {
    width: 40px;
    height: 40px
  }

  .main-nav {
    inset: 76px 7px 7px;
    padding: 14px;
    border-radius: 14px;
    max-height: calc(100dvh - 84px)
  }

  .service-hero,
  .page-hero {
    padding: 118px 0 65px
  }

  .service-hero h1,
  .page-hero h1 {
    font-size: 42px;
    letter-spacing: -.04em
  }

  .service-hero p,
  .page-hero p {
    font-size: 16px;
    line-height: 1.7
  }

  .service-hero .hero-actions {
    gap: 8px
  }

  .text-link {
    justify-content: center
  }

  .service-hero-icon {
    width: 100%;
    height: 210px;
    justify-self: stretch
  }

  .service-hero-icon svg {
    width: 88px;
    height: 88px
  }

  .feature-list {
    grid-template-columns: 1fr
  }

  .detail-grid h2 {
    font-size: 38px
  }

  .related-grid {
    grid-template-columns: 1fr
  }

  .related-grid>a {
    min-height: 125px;
    padding: 22px
  }

  .all-services-grid,
  .services-page-grid {
    grid-template-columns: 1fr
  }

  .process-grid {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden
  }

  .process-grid article {
    min-height: auto;
    padding: 28px 24px
  }

  .process-grid h3 {
    margin: 30px 0 10px
  }

  .cta-section {
    padding-top: 10px
  }

  .cta-box h2 {
    font-size: 36px
  }

  .site-footer {
    margin-top: 70px;
    padding-top: 70px
  }

  .footer-links-wrap {
    grid-template-columns: 1fr
  }
}

/* =====================================

/* =========================================================
   FINAL CLEAN OVERRIDES
   Header, logo, service cards, dropdown and responsive layout
   ========================================================= */

/* Header and logo */
.site-header .nav-shell {
  height: 92px;
  padding: 0 22px;
}

.site-header .brand {
  width: 250px;
  min-width: 250px;
  height: 76px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.site-header .brand img {
  width: 245px;
  height: 72px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.22);
  transform-origin: left center;
}

.site-header .brand:hover img {
  transform: scale(1.26);
}

/* Remove only the small dropdown arrow, not the underline pseudo-element */
.dropdown-toggle>span {
  display: none;
}

/* Restore the complete service-card component */
.service-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 420px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-index,
.service-number {
  color: #75819a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  transition: transform .35s ease, background .35s ease, color .35s ease;
}

.service-icon svg {
  width: 38px;
  height: 38px;
  max-width: 38px;
  max-height: 38px;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 54px 0 12px;
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-card>a,
.service-card .service-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.service-card:hover .service-icon {
  transform: translateY(-5px) rotate(-4deg);
  background: var(--blue);
  color: #fff;
}

/* Compact cards only on services.html */
.services-grid.all-services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.services-grid.all-services .service-card {
  min-height: 330px;
  padding: 24px;
  border-radius: 20px;
}

.services-grid.all-services .service-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 15px;
}

.services-grid.all-services .service-icon svg {
  width: 30px;
  height: 30px;
  max-width: 30px;
  max-height: 30px;
}

.services-grid.all-services .service-card h3 {
  margin-top: 38px;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.services-grid.all-services .service-card p {
  font-size: 13.5px;
  line-height: 1.62;
}

.services-grid.all-services .service-card>a {
  padding-top: 20px;
  font-size: 12px;
}

/* Footer logo */
.site-footer .footer-logo {
  width: 300px;
  height: 92px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 1180px) {
  .services-grid.all-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header .nav-shell {
    height: 76px;
    padding: 0 14px;
  }

  .site-header .brand {
    width: 205px;
    min-width: 205px;
    height: 62px;
  }

  .site-header .brand img {
    width: 200px;
    height: 60px;
    transform: scale(1.18);
  }

  .site-header .brand:hover img {
    transform: scale(1.18);
  }

  .main-nav {
    inset: 88px 10px 10px;
  }

  .services-grid.all-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid.all-services .service-card {
    min-height: 315px;
  }
}

@media (max-width: 560px) {
  .site-header .nav-shell {
    height: 68px;
    padding: 0 10px 0 12px;
  }

  .site-header .brand {
    width: 165px;
    min-width: 165px;
    height: 54px;
  }

  .site-header .brand img {
    width: 160px;
    height: 52px;
    transform: scale(1.14);
  }

  .main-nav {
    inset: 78px 7px 7px;
  }

  .services-grid.all-services {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-grid.all-services .service-card {
    min-height: 0;
    padding: 20px;
  }

  .services-grid.all-services .service-card h3 {
    margin-top: 28px;
    font-size: 20px;
  }

  .services-grid.all-services .service-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }

  .services-grid.all-services .service-icon svg {
    width: 27px;
    height: 27px;
  }

  .site-footer .footer-logo {
    width: 230px;
    height: 72px;
  }
}

/* =========================================================
   CONTACT PAGE — complete layout and responsive form styling
   ========================================================= */
/* 12. CONTACT PAGE — contact information and enquiry form */
.contact-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 105, 255, .10), transparent 68%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 80px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 135px;
  padding: 10px 0;
}

.contact-info h2 {
  max-width: 520px;
  margin: 20px 0 22px;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.03;
  letter-spacing: -.05em;
}

.contact-info>p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.contact-list a::after {
  content: "↗";
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  transition: .3s ease;
}

.contact-list a:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 105, 255, .42);
  background: #fbfdff;
  box-shadow: 0 18px 38px rgba(7, 17, 31, .08);
}

.contact-list a:hover::after {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 4px;
  color: #8993a5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-list strong {
  min-width: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 75px rgba(7, 17, 31, .10);
}

.contact-form::before {
  content: "Tell us about your project";
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: #263247;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d7dfeb;
  border-radius: 13px;
  outline: none;
  background: #f9fbfe;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 155px;
  padding: 15px 16px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa4b5;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #b8c5d8;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 105, 255, .11);
}

.contact-form .btn {
  width: fit-content;
  min-width: 190px;
  min-height: 56px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: #8993a5;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    position: static;
  }

  .contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-list a {
    min-height: 125px;
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list a::after {
    margin-top: auto;
  }
}

@media (max-width: 760px) {
  .contact-section.section {
    padding: 78px 0;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-list a {
    min-height: 0;
    flex-direction: row;
    align-items: center;
  }

  .contact-list a::after {
    margin-top: 0;
  }

  .contact-form {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-info h2 {
    font-size: 40px;
  }

  .contact-form {
    gap: 18px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .contact-form::before {
    font-size: 23px;
  }

  .contact-form input,
  .contact-form select {
    height: 52px;
  }

  .contact-form .btn {
    width: 100%;
  }
}


/* PHP contact form status */
.form-status {
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 12px;
  font-weight: 700
}

.form-status.success {
  background: #eaf8f0;
  color: #126b3a;
  border: 1px solid #bce6cd
}

.form-status.error {
  background: #fff0f0;
  color: #a12828;
  border: 1px solid #f0c2c2
}

/*
/* =====================================================
   WHITE MULTI-COLUMN FOOTER
   Layout inspired by the provided reference image.
===================================================== */

/* Main footer wrapper */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding: 0 0 28px;
  background: #ffffff;
  color: #07111f;
  border-top: 1px solid #e5eaf2;
}

/* Blue gradient strip at the top */
.footer-accent {
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg,
      #07111f 0%,
      #0c4dd4 35%,
      #1769ff 58%,
      #0c4dd4 78%,
      #07111f 100%);
}

/* Main footer columns */
.footer-content {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1.1fr 0.95fr;
  gap: 70px;
  align-items: start;
  padding-top: 85px;
  padding-bottom: 65px;
}

/* Logo and company description */
.footer-about {
  max-width: 390px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.footer-logo {
  width: 245px;
  height: 90px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.footer-about p {
  margin: 0;
  color: #263247;
  font-size: 16px;
  line-height: 1.85;
}

/* Link column titles */
.footer-column h3 {
  margin: 0 0 35px;
  color: #07111f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

/* Footer links */
.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 22px;
  color: #111827;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column a:hover {
  color: #1769ff;
  transform: translateX(5px);
}

/* Copyright row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 0;
  padding-top: 25px;
  border-top: 1px solid #e3e8f1;
}

.footer-bottom p {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

/* Email and phone at the bottom */
.footer-contact-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-contact-links a {
  color: #667085;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-links a:hover {
  color: #1769ff;
}

/* Large tablet */
@media (max-width: 1180px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 55px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 650px;
  }
}

/* Tablet */
@media (max-width: 820px) {
  .footer-accent {
    height: 52px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px 36px;
    padding-top: 65px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 220px;
    height: 80px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .site-footer {
    margin-top: 70px;
  }

  .footer-accent {
    height: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 50px;
    padding-bottom: 45px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-logo {
    width: 200px;
    height: 70px;
  }

  .footer-about p {
    font-size: 15px;
  }

  .footer-column h3 {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .footer-column a {
    margin-bottom: 16px;
    font-size: 15px;
  }
}

/*
-----------------------------------------------------------------
FOOTER RESPONSIVE — mobile
-----------------------------------------------------------------
*/
@media (max-width: 700px) {
  .site-footer {
    margin-top: 70px;
    padding: 70px 0 24px;
  }

  .site-footer .footer-main {
    gap: 48px;
    padding-bottom: 48px;
  }

  .site-footer .footer-logo {
    width: 205px;
    height: 68px;
  }

  .site-footer .footer-intro h2 {
    font-size: 42px;
  }

  .site-footer .footer-description {
    font-size: 16px;
  }

  .site-footer .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }

  .site-footer .footer-contact {
    grid-column: 1 / -1;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*
-----------------------------------------------------------------
FOOTER RESPONSIVE — small phones
-----------------------------------------------------------------
*/
@media (max-width: 480px) {
  .site-footer .footer-intro h2 {
    font-size: 35px;
  }

  .site-footer .footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-contact {
    grid-column: auto;
  }

  .site-footer .footer-cta {
    width: 100%;
  }

  .site-footer .footer-legal,
  .site-footer .footer-bottom>div {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* =====================================================
   FOOTER LOGO VISIBILITY FIX
   Removes old dark-footer filters and transformations.
===================================================== */

.site-footer .footer-brand {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 28px !important;
  overflow: visible !important;
}

.site-footer .footer-logo {
  display: block !important;
  width: 250px !important;
  height: 90px !important;
  max-width: 100% !important;

  object-fit: contain !important;
  object-position: left center !important;

  opacity: 1 !important;
  visibility: visible !important;

  /* Important: remove old white-logo filter */
  filter: none !important;

  /* Remove previous scaling rules */
  transform: none !important;
}

/* =================================================================
   17. PREMIUM INDIVIDUAL SERVICE PAGES
   Purpose: Shared design system for all 20 PHP files in /services.
================================================================= */

/* Hero area */
.ats-service-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 0;
  background: linear-gradient(135deg, #f7f9fd 0%, #edf3ff 58%, #fff 100%)
}

.ats-service-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(23, 105, 255, .052) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 105, 255, .052) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 93%);
  mask-image: linear-gradient(to bottom, #000, transparent 93%)
}

.ats-service-glow {
  position: absolute;
  top: 55px;
  right: -180px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 105, 255, .2), transparent 68%);
  pointer-events: none
}

.ats-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, .85fr);
  gap: 80px;
  align-items: center
}

.ats-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 25px;
  color: #8590a4;
  font-size: 12px
}

.ats-breadcrumb a {
  text-decoration: none
}

.ats-breadcrumb a:hover {
  color: var(--blue)
}

.ats-breadcrumb strong {
  color: var(--ink)
}

.ats-hero-copy h1 {
  max-width: 900px;
  margin: 24px 0 27px;
  font-size: clamp(58px, 5.8vw, 92px);
  line-height: .98;
  letter-spacing: -.06em
}

.ats-hero-copy>p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8
}

.ats-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px
}

.ats-hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: #536078;
  font-size: 13px;
  font-weight: 600
}

/* Hero dashboard */
.ats-hero-visual {
  position: relative;
  min-height: 585px
}

.ats-dashboard {
  position: absolute;
  inset: 24px 0 34px 28px;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 35px 90px rgba(7, 17, 31, .24);
  transform: rotate(1.2deg);
  transition: .4s
}

.ats-dashboard:hover {
  transform: rotate(0) translateY(-7px);
  box-shadow: 0 45px 100px rgba(7, 17, 31, .28)
}

.ats-dashboard:after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(23, 105, 255, .24)
}

.ats-dashboard>* {
  position: relative;
  z-index: 2
}

.ats-dashboard-top,
.ats-dashboard-bottom,
.ats-chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.ats-dashboard-top small,
.ats-dashboard-top strong,
.ats-dashboard-bottom small,
.ats-dashboard-bottom strong {
  display: block
}

.ats-dashboard-top small,
.ats-dashboard-bottom small {
  color: #8794aa;
  font-size: 10px
}

.ats-dashboard-top strong {
  margin-top: 3px;
  font-size: 17px
}

.ats-dashboard-top>span {
  padding: 7px 10px;
  border-radius: 20px;
  background: rgba(23, 105, 255, .16);
  color: #82adff;
  font-size: 10px
}

.ats-dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 30px
}

.ats-dashboard-metrics article {
  padding: 19px;
  border: 1px solid #28344c;
  border-radius: 15px;
  background: #111c30
}

.ats-dashboard-metrics small,
.ats-dashboard-metrics strong,
.ats-dashboard-metrics em {
  display: block
}

.ats-dashboard-metrics small {
  color: #8794a9;
  font-size: 10px
}

.ats-dashboard-metrics strong {
  margin: 8px 0 4px;
  font-size: 31px
}

.ats-dashboard-metrics em {
  color: #71a2ff;
  font-size: 9px;
  font-style: normal
}

.ats-chart-title {
  margin-top: 28px;
  padding: 0 3px
}

.ats-chart-title span {
  color: #8794a9;
  font-size: 10px
}

.ats-chart-title strong {
  font-size: 13px
}

.ats-chart-bars {
  height: 160px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 20px 0 27px;
  padding: 20px 18px 0;
  border: 1px solid #28344c;
  border-radius: 18px;
  background: #101a2d
}

.ats-chart-bars span {
  flex: 1;
  min-height: 20px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(#5b93ff, #1769ff);
  transform-origin: bottom;
  animation: barGrow .9s both
}

.ats-dashboard-bottom {
  padding-top: 20px;
  border-top: 1px solid #28344c
}

.ats-dashboard-bottom strong {
  margin-top: 4px;
  font-size: 15px
}

.ats-float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(7, 17, 31, .15);
  animation: float 4s ease-in-out infinite
}

.ats-float-card b {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue)
}

.ats-float-card small,
.ats-float-card strong {
  display: block
}

.ats-float-card small {
  color: var(--muted);
  font-size: 9px
}

.ats-float-card strong {
  color: var(--ink);
  font-size: 14px
}

.ats-float-one {
  top: 82px;
  left: -15px
}

.ats-float-two {
  right: -22px;
  bottom: 70px;
  animation-delay: 1.1s
}

/* Hero summary row */
.ats-hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  background: #fff
}

.ats-hero-stats article {
  padding: 26px 28px;
  border-right: 1px solid var(--line)
}

.ats-hero-stats article:last-child {
  border-right: 0
}

.ats-hero-stats strong,
.ats-hero-stats span {
  display: block
}

.ats-hero-stats strong {
  color: var(--blue);
  font-size: 23px
}

.ats-hero-stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px
}

/* Introduction */
.ats-intro {
  background: #fff
}

.ats-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 105px;
  align-items: start
}

.ats-sticky-title {
  position: sticky;
  top: 145px
}

.ats-sticky-title h2 {
  margin: 20px 0 0;
  font-size: clamp(44px, 4.6vw, 70px);
  line-height: 1.04;
  letter-spacing: -.055em
}

.ats-sticky-title h2 em {
  display: block;
  color: var(--blue);
  font-style: normal
}

.ats-intro-copy {
  padding-top: 22px
}

.ats-intro-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85
}

.ats-intro-copy .ats-lead {
  color: var(--ink);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -.02em
}

/* Service deliverable cards */
.ats-solutions {
  background: var(--soft)
}

.ats-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.ats-service-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #fff;
  transition: .34s
}

.ats-service-card:after {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -95px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(23, 105, 255, .08);
  transition: .45s
}

.ats-service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(23, 105, 255, .43);
  box-shadow: 0 28px 60px rgba(7, 17, 31, .11)
}

.ats-service-card:hover:after {
  transform: scale(1.4)
}

.ats-service-card>* {
  position: relative;
  z-index: 2
}

.ats-card-number {
  color: #8793a8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em
}

.ats-card-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-top: 48px;
  border-radius: 17px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800
}

.ats-service-card h3 {
  margin: 27px 0 13px;
  font-size: 23px;
  line-height: 1.28
}

.ats-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75
}

.ats-card-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800
}

/* Delivery process */
.ats-process {
  background: #fff
}

.ats-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.ats-process-grid article {
  min-height: 285px;
  padding: 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: .3s
}

.ats-process-grid article:hover {
  position: relative;
  z-index: 2;
  background: var(--blue-soft);
  transform: translateY(-5px)
}

.ats-process-grid article>span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800
}

.ats-process-line {
  width: 38px;
  height: 2px;
  margin-top: 38px;
  background: var(--blue)
}

.ats-process-grid h3 {
  margin: 22px 0 12px;
  font-size: 23px
}

.ats-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75
}

/* Benefits */
.ats-benefits {
  background: var(--ink);
  color: #fff
}

.ats-benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 90px;
  align-items: center
}

.ats-benefit-layout>div:first-child h2 {
  margin: 20px 0 23px;
  font-size: clamp(43px, 4.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em
}

.ats-benefit-layout>div:first-child p {
  color: #aab5c8;
  line-height: 1.8
}

.ats-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px
}

.ats-benefit-grid article {
  min-height: 215px;
  padding: 25px;
  border: 1px solid #263149;
  border-radius: 17px;
  background: #101a2d;
  transition: .3s
}

.ats-benefit-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--blue)
}

.ats-benefit-grid strong {
  color: #72a3ff;
  font-size: 11px
}

.ats-benefit-grid h3 {
  margin: 37px 0 10px;
  font-size: 19px
}

.ats-benefit-grid p {
  margin: 0;
  color: #8f9db2;
  font-size: 13px;
  line-height: 1.7
}

/* FAQ */
.ats-faq {
  background: #fff
}

.ats-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 95px;
  align-items: start
}

.ats-faq-copy {
  position: sticky;
  top: 145px
}

.ats-faq-copy h2 {
  margin: 20px 0;
  font-size: clamp(43px, 4.4vw, 66px);
  line-height: 1.04;
  letter-spacing: -.055em
}

.ats-faq-copy p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.8
}

.ats-faq-list {
  border-top: 1px solid var(--line)
}

.ats-faq-list details {
  border-bottom: 1px solid var(--line)
}

.ats-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 5px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  list-style: none
}

.ats-faq-list summary::-webkit-details-marker {
  display: none
}

.ats-faq-list summary span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  transition: .3s
}

.ats-faq-list details[open] summary span {
  transform: rotate(45deg)
}

.ats-faq-list details p {
  margin: 0;
  padding: 0 55px 24px 5px;
  color: var(--muted);
  line-height: 1.8
}

/* Final CTA */
.ats-final-cta {
  padding: 30px 0 0
}

.ats-final-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 75px;
  align-items: end;
  padding: 70px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--ink), #0b2f75);
  color: #fff
}

.ats-final-box:after {
  content: "";
  position: absolute;
  top: -250px;
  right: -180px;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: rgba(23, 105, 255, .35)
}

.ats-final-box>* {
  position: relative;
  z-index: 2
}

.ats-final-box h2 {
  margin: 19px 0 0;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -.055em
}

.ats-final-box>div:last-child p {
  margin: 0 0 27px;
  color: #b7c4d8;
  line-height: 1.8
}

/* Tablet */
@media(max-width:1180px) {
  .ats-hero-grid {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 48px
  }

  .ats-hero-visual {
    min-height: 520px
  }

  .ats-service-grid {
    grid-template-columns: 1fr 1fr
  }

  .ats-benefit-layout,
  .ats-faq-grid {
    gap: 50px
  }
}

@media(max-width:820px) {
  .ats-service-hero {
    padding-top: 145px
  }

  .ats-hero-grid,
  .ats-intro-grid,
  .ats-benefit-layout,
  .ats-faq-grid,
  .ats-final-box {
    grid-template-columns: 1fr
  }

  .ats-hero-grid {
    gap: 52px
  }

  .ats-hero-visual {
    min-height: 500px
  }

  .ats-dashboard {
    inset: 15px
  }

  .ats-hero-stats {
    grid-template-columns: 1fr 1fr
  }

  .ats-hero-stats article:nth-child(2) {
    border-right: 0
  }

  .ats-hero-stats article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .ats-sticky-title,
  .ats-faq-copy {
    position: static
  }

  .ats-service-grid {
    grid-template-columns: 1fr 1fr
  }

  .ats-process-grid {
    grid-template-columns: 1fr 1fr
  }

  .ats-final-box {
    gap: 32px;
    padding: 52px
  }
}

/* Mobile */
@media(max-width:560px) {
  .ats-service-hero {
    padding-top: 118px
  }

  .ats-hero-copy h1 {
    font-size: 46px
  }

  .ats-hero-copy>p {
    font-size: 16px
  }

  .ats-hero-actions {
    flex-direction: column
  }

  .ats-hero-actions .btn {
    width: 100%
  }

  .ats-hero-checks {
    flex-direction: column;
    gap: 10px
  }

  .ats-hero-visual {
    min-height: 415px
  }

  .ats-dashboard {
    padding: 19px
  }

  .ats-dashboard-metrics {
    gap: 8px
  }

  .ats-dashboard-metrics article {
    padding: 12px
  }

  .ats-dashboard-metrics strong {
    font-size: 22px
  }

  .ats-chart-bars {
    height: 105px;
    padding: 15px 10px 0;
    gap: 6px
  }

  .ats-float-card {
    padding: 10px 12px
  }

  .ats-float-one {
    top: 34px;
    left: -3px
  }

  .ats-float-two {
    right: -4px;
    bottom: 28px
  }

  .ats-hero-stats {
    grid-template-columns: 1fr
  }

  .ats-hero-stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .ats-hero-stats article:last-child {
    border-bottom: 0
  }

  .ats-intro-grid {
    gap: 38px
  }

  .ats-intro-copy .ats-lead {
    font-size: 22px
  }

  .ats-service-grid,
  .ats-process-grid,
  .ats-benefit-grid {
    grid-template-columns: 1fr
  }

  .ats-service-card {
    min-height: auto
  }

  .ats-benefit-layout {
    gap: 40px
  }

  .ats-final-box {
    padding: 38px 24px
  }

  .ats-final-box h2 {
    font-size: 38px
  }

  .ats-final-box .btn {
    width: 100%
  }
}
/* =================================================================
   18. REDESIGNED ABOUT PAGE
   Used by: about.php
================================================================= */

/* ---------------------------------------------------------------
   ABOUT HERO
---------------------------------------------------------------- */

.about-v2-hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 0;
    background:
        linear-gradient(
            135deg,
            #f7f9fd 0%,
            #edf3ff 58%,
            #ffffff 100%
        );
}

.about-v2-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(23, 105, 255, 0.052) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23, 105, 255, 0.052) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
    -webkit-mask-image:
        linear-gradient(to bottom, #000, transparent 93%);
    mask-image:
        linear-gradient(to bottom, #000, transparent 93%);
}

.about-v2-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-v2-glow-one {
    top: 40px;
    right: -180px;
    width: 650px;
    height: 650px;
    background:
        radial-gradient(
            circle,
            rgba(23, 105, 255, 0.20),
            transparent 68%
        );
}

.about-v2-glow-two {
    bottom: -210px;
    left: -180px;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(
            circle,
            rgba(23, 105, 255, 0.10),
            transparent 70%
        );
}

.about-v2-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(470px, 0.84fr);
    gap: 85px;
    align-items: center;
}

.about-v2-hero-copy h1 {
    max-width: 900px;
    margin: 24px 0 28px;
    font-size: clamp(60px, 6vw, 96px);
    line-height: 0.97;
    letter-spacing: -0.06em;
}

.about-v2-hero-copy h1 em {
    display: block;
    color: var(--blue);
    font-style: normal;
}

.about-v2-hero-copy > p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

.about-v2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.about-v2-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
    margin-top: 35px;
    color: #536078;
    font-size: 13px;
    font-weight: 600;
}

/* ---------------------------------------------------------------
   ABOUT HERO VISUAL
---------------------------------------------------------------- */

.about-v2-visual {
    position: relative;
    min-height: 590px;
}

.about-v2-visual-card {
    position: absolute;
    inset: 24px 0 35px 28px;
    overflow: hidden;
    padding: 30px;
    border-radius: 31px;
    background: var(--ink);
    color: #ffffff;
    box-shadow:
        0 35px 90px rgba(7, 17, 31, 0.24);
    transform: rotate(1.5deg);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.about-v2-visual-card:hover {
    transform: rotate(0) translateY(-7px);
    box-shadow:
        0 45px 105px rgba(7, 17, 31, 0.29);
}

.about-v2-visual-card::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -210px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.24);
}

.about-v2-visual-card > * {
    position: relative;
    z-index: 2;
}

.about-v2-visual-header,
.about-v2-visual-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-v2-visual-header small,
.about-v2-visual-header strong,
.about-v2-visual-footer small,
.about-v2-visual-footer strong {
    display: block;
}

.about-v2-visual-header small,
.about-v2-visual-footer small {
    color: #8794aa;
    font-size: 10px;
}

.about-v2-visual-header strong {
    margin-top: 3px;
    font-size: 17px;
}

.about-v2-visual-header > span {
    padding: 7px 11px;
    border-radius: 20px;
    background: rgba(23, 105, 255, 0.16);
    color: #82adff;
    font-size: 10px;
}

.about-v2-core {
    position: relative;
    height: 370px;
    margin: 24px 0;
}

.about-v2-core::before,
.about-v2-core::after {
    content: "";
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(91, 147, 255, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.about-v2-core::before {
    width: 310px;
    height: 310px;
}

.about-v2-core::after {
    width: 235px;
    height: 235px;
}

.about-v2-core-center {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    width: 145px;
    height: 145px;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    background:
        linear-gradient(145deg, #1769ff, #0c4dd4);
    box-shadow:
        0 20px 55px rgba(23, 105, 255, 0.34);
    transform: translate(-50%, -50%);
}

.about-v2-core-center small,
.about-v2-core-center strong {
    display: block;
}

.about-v2-core-center small {
    color: #dce8ff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-v2-core-center strong {
    margin-top: 4px;
    font-size: 24px;
}

.about-v2-node {
    position: absolute;
    z-index: 3;
    min-width: 115px;
    padding: 12px 14px;
    border: 1px solid #2b3851;
    border-radius: 13px;
    background: #111c30;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.about-v2-node span,
.about-v2-node strong {
    display: block;
}

.about-v2-node span {
    color: #72a3ff;
    font-size: 9px;
}

.about-v2-node strong {
    margin-top: 3px;
    font-size: 12px;
}

.node-strategy {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.node-design {
    top: 115px;
    right: 4px;
}

.node-development {
    right: 42px;
    bottom: 20px;
}

.node-marketing {
    bottom: 20px;
    left: 34px;
}

.node-automation {
    top: 115px;
    left: 0;
}

.about-v2-visual-footer {
    padding-top: 20px;
    border-top: 1px solid #28344c;
}

.about-v2-visual-footer strong {
    margin-top: 4px;
    font-size: 14px;
}

.about-v2-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow:
        0 18px 40px rgba(7, 17, 31, 0.15);
    animation: float 4s ease-in-out infinite;
}

.about-v2-floating-card > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 900;
}

.about-v2-floating-card small,
.about-v2-floating-card strong {
    display: block;
}

.about-v2-floating-card small {
    color: var(--muted);
    font-size: 9px;
}

.about-v2-floating-card strong {
    color: var(--ink);
    font-size: 13px;
}

.about-v2-float-one {
    top: 80px;
    left: -17px;
}

.about-v2-float-two {
    right: -22px;
    bottom: 75px;
    animation-delay: 1.2s;
}

/* ---------------------------------------------------------------
   HERO STATISTICS
---------------------------------------------------------------- */

.about-v2-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 68px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    background: #ffffff;
}

.about-v2-stats article {
    padding: 28px 30px;
    border-right: 1px solid var(--line);
}

.about-v2-stats article:last-child {
    border-right: 0;
}

.about-v2-stats strong,
.about-v2-stats span {
    display: block;
}

.about-v2-stats strong {
    color: var(--blue);
    font-size: 31px;
}

.about-v2-stats span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

/* ---------------------------------------------------------------
   OUR STORY
---------------------------------------------------------------- */

.about-v2-story {
    background: #ffffff;
}

.about-v2-story-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: 105px;
    align-items: start;
}

.about-v2-story-heading {
    position: sticky;
    top: 145px;
}

.about-v2-story-heading h2 {
    margin: 20px 0 0;
    font-size: clamp(45px, 4.7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.about-v2-story-heading h2 em {
    display: block;
    color: var(--blue);
    font-style: normal;
}

.about-v2-story-copy {
    padding-top: 20px;
}

.about-v2-story-copy p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.about-v2-story-copy .about-v2-large-copy {
    color: var(--ink);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

/* ---------------------------------------------------------------
   CAPABILITIES
---------------------------------------------------------------- */

.about-v2-capabilities {
    background: var(--soft);
}

.about-v2-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-v2-capability-grid article {
    position: relative;
    overflow: hidden;
    min-height: 410px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: #ffffff;
    transition:
        transform 0.34s ease,
        box-shadow 0.34s ease,
        border-color 0.34s ease;
}

.about-v2-capability-grid article::after {
    content: "";
    position: absolute;
    right: -85px;
    bottom: -95px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.08);
    transition: transform 0.45s ease;
}

.about-v2-capability-grid article:hover {
    transform: translateY(-9px);
    border-color: rgba(23, 105, 255, 0.43);
    box-shadow:
        0 28px 60px rgba(7, 17, 31, 0.11);
}

.about-v2-capability-grid article:hover::after {
    transform: scale(1.4);
}

.about-v2-capability-grid article.featured {
    border-color: var(--ink);
    background: var(--ink);
    color: #ffffff;
}

.about-v2-capability-grid article > * {
    position: relative;
    z-index: 2;
}

.about-v2-card-number {
    color: #8793a8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.about-v2-card-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-top: 48px;
    border-radius: 17px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
}

.about-v2-capability-grid h3 {
    margin: 27px 0 13px;
    font-size: 23px;
    line-height: 1.28;
}

.about-v2-capability-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.about-v2-capability-grid article.featured p {
    color: #aeb9ca;
}

.about-v2-capability-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.about-v2-capability-grid article.featured a {
    color: #78a7ff;
}

/* ---------------------------------------------------------------
   APPROACH
---------------------------------------------------------------- */

.about-v2-approach {
    background: var(--ink);
    color: #ffffff;
}

.about-v2-approach-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    gap: 95px;
    align-items: start;
}

.about-v2-approach-copy {
    position: sticky;
    top: 145px;
}

.about-v2-approach-copy h2 {
    margin: 20px 0 24px;
    font-size: clamp(45px, 4.7vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.about-v2-approach-copy h2 em {
    display: block;
    color: #72a3ff;
    font-style: normal;
}

.about-v2-approach-copy p {
    max-width: 590px;
    margin: 0 0 20px;
    color: #aab5c8;
    line-height: 1.8;
}

.about-v2-approach-copy .btn {
    margin-top: 14px;
}

.about-v2-approach-steps {
    border-top: 1px solid #29364f;
}

.about-v2-approach-steps article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    padding: 31px 5px;
    border-bottom: 1px solid #29364f;
}

.about-v2-approach-steps article > span {
    color: #72a3ff;
    font-size: 12px;
    font-weight: 800;
}

.about-v2-approach-steps h3 {
    margin: 0 0 9px;
    font-size: 21px;
}

.about-v2-approach-steps p {
    max-width: 650px;
    margin: 0;
    color: #929fb4;
    font-size: 14px;
    line-height: 1.75;
}

/* ---------------------------------------------------------------
   VALUES
---------------------------------------------------------------- */

.about-v2-values {
    background: #ffffff;
}

.about-v2-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.about-v2-values-grid article {
    min-height: 245px;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-v2-values-grid article:hover {
    transform: translateY(-7px);
    box-shadow:
        0 22px 45px rgba(7, 17, 31, 0.09);
}

.about-v2-values-grid span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.about-v2-values-grid h3 {
    margin: 46px 0 12px;
    font-size: 22px;
}

.about-v2-values-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* ---------------------------------------------------------------
   WHY WORK WITH US
---------------------------------------------------------------- */

.about-v2-why {
    background: var(--soft);
}

.about-v2-why-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.78fr)
        minmax(0, 1.22fr);
    gap: 100px;
    align-items: start;
}

.about-v2-why-heading {
    position: sticky;
    top: 145px;
}

.about-v2-why-heading h2 {
    margin: 20px 0;
    font-size: clamp(45px, 4.6vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.about-v2-why-heading h2 em {
    display: block;
    color: var(--blue);
    font-style: normal;
}

.about-v2-why-heading p {
    color: var(--muted);
    line-height: 1.8;
}

.about-v2-why-list {
    border-top: 1px solid var(--line);
}

.about-v2-why-list article {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 25px;
    padding: 32px 5px;
    border-bottom: 1px solid var(--line);
}

.about-v2-why-list article > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.about-v2-why-list h3 {
    margin: 0 0 9px;
    font-size: 22px;
}

.about-v2-why-list p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

/* ---------------------------------------------------------------
   PROCESS
---------------------------------------------------------------- */

.about-v2-process {
    background: #ffffff;
}

.about-v2-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.about-v2-process-grid article {
    min-height: 290px;
    padding: 31px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.about-v2-process-grid article:hover {
    position: relative;
    z-index: 2;
    background: var(--blue-soft);
    transform: translateY(-5px);
}

.about-v2-process-grid article > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.about-v2-process-line {
    width: 38px;
    height: 2px;
    margin-top: 40px;
    background: var(--blue);
}

.about-v2-process-grid h3 {
    margin: 22px 0 12px;
    font-size: 23px;
}

.about-v2-process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* ---------------------------------------------------------------
   FINAL CTA
---------------------------------------------------------------- */

.about-v2-final-cta {
    padding: 30px 0 0;
}

.about-v2-final-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 75px;
    align-items: end;
    padding: 72px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            var(--ink),
            #0b2f75
        );
    color: #ffffff;
}

.about-v2-final-box::after {
    content: "";
    position: absolute;
    top: -250px;
    right: -180px;
    width: 510px;
    height: 510px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.35);
}

.about-v2-final-box > * {
    position: relative;
    z-index: 2;
}

.about-v2-final-box h2 {
    margin: 19px 0 0;
    font-size: clamp(43px, 4.8vw, 69px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.about-v2-final-action p {
    margin: 0 0 27px;
    color: #b7c4d8;
    line-height: 1.8;
}

/* ---------------------------------------------------------------
   MEDIUM DESKTOP
---------------------------------------------------------------- */

@media (max-width: 1180px) {

    .about-v2-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            410px;
        gap: 48px;
    }

    .about-v2-visual {
        min-height: 520px;
    }

    .about-v2-capability-grid,
    .about-v2-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-v2-approach-layout,
    .about-v2-why-grid {
        gap: 55px;
    }

}

/* ---------------------------------------------------------------
   TABLET
---------------------------------------------------------------- */

@media (max-width: 820px) {

    .about-v2-hero {
        padding-top: 145px;
    }

    .about-v2-hero-grid,
    .about-v2-story-grid,
    .about-v2-approach-layout,
    .about-v2-why-grid,
    .about-v2-final-box {
        grid-template-columns: 1fr;
    }

    .about-v2-hero-grid {
        gap: 55px;
    }

    .about-v2-visual {
        min-height: 510px;
    }

    .about-v2-visual-card {
        inset: 15px;
    }

    .about-v2-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-v2-stats article:nth-child(2) {
        border-right: 0;
    }

    .about-v2-stats article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .about-v2-story-heading,
    .about-v2-approach-copy,
    .about-v2-why-heading {
        position: static;
    }

    .about-v2-capability-grid,
    .about-v2-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-v2-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-v2-final-box {
        gap: 35px;
        padding: 54px;
    }

}

/* ---------------------------------------------------------------
   MOBILE
---------------------------------------------------------------- */

@media (max-width: 560px) {

    .about-v2-hero {
        padding-top: 118px;
    }

    .about-v2-hero-copy h1 {
        font-size: 47px;
    }

    .about-v2-hero-copy > p {
        font-size: 16px;
    }

    .about-v2-hero-actions {
        flex-direction: column;
    }

    .about-v2-hero-actions .btn {
        width: 100%;
    }

    .about-v2-hero-points {
        flex-direction: column;
        gap: 11px;
    }

    .about-v2-visual {
        min-height: 430px;
    }

    .about-v2-visual-card {
        padding: 19px;
    }

    .about-v2-core {
        height: 280px;
    }

    .about-v2-core::before {
        width: 230px;
        height: 230px;
    }

    .about-v2-core::after {
        width: 175px;
        height: 175px;
    }

    .about-v2-core-center {
        width: 110px;
        height: 110px;
    }

    .about-v2-core-center strong {
        font-size: 19px;
    }

    .about-v2-node {
        min-width: 90px;
        padding: 9px 10px;
    }

    .about-v2-node strong {
        font-size: 9px;
    }

    .node-strategy {
        top: 4px;
    }

    .node-design {
        top: 82px;
    }

    .node-automation {
        top: 82px;
    }

    .about-v2-floating-card {
        padding: 10px 12px;
    }

    .about-v2-float-one {
        top: 35px;
        left: -4px;
    }

    .about-v2-float-two {
        right: -4px;
        bottom: 28px;
    }

    .about-v2-stats {
        grid-template-columns: 1fr;
    }

    .about-v2-stats article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .about-v2-stats article:last-child {
        border-bottom: 0;
    }

    .about-v2-story-grid {
        gap: 40px;
    }

    .about-v2-story-copy .about-v2-large-copy {
        font-size: 22px;
    }

    .about-v2-capability-grid,
    .about-v2-values-grid,
    .about-v2-process-grid {
        grid-template-columns: 1fr;
    }

    .about-v2-capability-grid article {
        min-height: auto;
    } 

    .about-v2-approach-layout,
    .about-v2-why-grid {
        gap: 42px;
    }

    .about-v2-approach-steps article,
    .about-v2-why-list article {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

    .about-v2-final-box {
        padding: 40px 25px;
    }

    .about-v2-final-box h2 {
        font-size: 38px;
    }

    .about-v2-final-action .btn {
        width: 100%;
    }

}

/* =================================================================
   19. OUR WORK / PORTFOLIO PAGE
   Used by: work.php
================================================================= */

/* ---------------------------------------------------------------
   PORTFOLIO HERO
---------------------------------------------------------------- */

.work-hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 0;
    background:
        linear-gradient(
            135deg,
            #f7f9fd 0%,
            #edf3ff 58%,
            #ffffff 100%
        );
}

.work-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(23, 105, 255, 0.052) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23, 105, 255, 0.052) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, #000, transparent 93%);
}

.work-hero-glow {
    position: absolute;
    top: 50px;
    right: -180px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(23, 105, 255, 0.2),
            transparent 68%
        );
}

.work-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(470px, 0.85fr);
    gap: 80px;
    align-items: center;
}

.work-hero-copy h1 {
    max-width: 900px;
    margin: 24px 0 28px;
    font-size: clamp(60px, 6vw, 96px);
    line-height: 0.97;
    letter-spacing: -0.06em;
}

.work-hero-copy h1 em {
    display: block;
    color: var(--blue);
    font-style: normal;
}

.work-hero-copy > p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

.work-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

/* Hero dashboard */

.work-hero-visual {
    position: relative;
    min-height: 580px;
}

.work-performance-card {
    position: absolute;
    inset: 24px 0 35px 28px;
    overflow: hidden;
    padding: 31px;
    border-radius: 31px;
    background: var(--ink);
    color: #ffffff;
    box-shadow:
        0 35px 90px rgba(7, 17, 31, 0.24);
    transform: rotate(1.4deg);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.work-performance-card:hover {
    transform: rotate(0) translateY(-7px);
    box-shadow:
        0 45px 105px rgba(7, 17, 31, 0.29);
}

.work-performance-card::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -210px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.24);
}

.work-performance-card > * {
    position: relative;
    z-index: 2;
}

.work-performance-top,
.work-performance-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work-performance-top small,
.work-performance-top strong,
.work-performance-bottom small,
.work-performance-bottom strong {
    display: block;
}

.work-performance-top small,
.work-performance-bottom small {
    color: #8794aa;
    font-size: 10px;
}

.work-performance-top strong {
    margin-top: 3px;
    font-size: 17px;
}

.work-performance-top > span {
    padding: 7px 11px;
    border-radius: 20px;
    background: rgba(23, 105, 255, 0.16);
    color: #82adff;
    font-size: 10px;
}

.work-performance-main {
    margin-top: 46px;
}

.work-performance-main small,
.work-performance-main strong {
    display: block;
}

.work-performance-main small {
    color: #8794aa;
    font-size: 11px;
}

.work-performance-main > strong {
    margin-top: 3px;
    font-size: 92px;
    line-height: 1;
    letter-spacing: -0.07em;
}

.work-performance-main p {
    max-width: 350px;
    color: #a8b4c7;
    line-height: 1.7;
}

.work-performance-bars {
    height: 145px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 30px 0;
}

.work-performance-bars span {
    flex: 1;
    border-radius: 7px 7px 2px 2px;
    background:
        linear-gradient(#5b93ff, #1769ff);
    transform-origin: bottom;
    animation: barGrow 0.9s both;
}

.work-performance-bottom {
    padding-top: 20px;
    border-top: 1px solid #28344c;
}

.work-performance-bottom strong {
    margin-top: 4px;
    font-size: 14px;
}

.work-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow:
        0 18px 40px rgba(7, 17, 31, 0.15);
    animation: float 4s ease-in-out infinite;
}

.work-floating-card > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 900;
}

.work-floating-card small,
.work-floating-card strong {
    display: block;
}

.work-floating-card small {
    color: var(--muted);
    font-size: 9px;
}

.work-floating-card strong {
    color: var(--ink);
    font-size: 13px;
}

.work-floating-one {
    top: 80px;
    left: -17px;
}

.work-floating-two {
    right: -22px;
    bottom: 75px;
    animation-delay: 1.2s;
}

/* Hero statistics */

.work-hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 68px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    background: #ffffff;
}

.work-hero-stats article {
    padding: 28px 30px;
    border-right: 1px solid var(--line);
}

.work-hero-stats article:last-child {
    border-right: 0;
}

.work-hero-stats strong,
.work-hero-stats span {
    display: block;
}

.work-hero-stats strong {
    color: var(--blue);
    font-size: 25px;
}

.work-hero-stats span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
}

/* ---------------------------------------------------------------
   PORTFOLIO INTRODUCTION
---------------------------------------------------------------- */

.work-introduction {
    background: #ffffff;
}

.work-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
    gap: 105px;
    align-items: start;
}

.work-intro-heading {
    position: sticky;
    top: 145px;
}

.work-intro-heading h2 {
    margin: 20px 0 0;
    font-size: clamp(45px, 4.7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.work-intro-heading h2 em {
    display: block;
    color: var(--blue);
    font-style: normal;
}

.work-intro-copy {
    padding-top: 20px;
}

.work-intro-copy p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.work-intro-copy .work-large-copy {
    color: var(--ink);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

/* ---------------------------------------------------------------
   FEATURED PROJECTS
---------------------------------------------------------------- */

.featured-projects {
    background: var(--soft);
}

.featured-project {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(500px, 1.15fr);
    gap: 70px;
    align-items: center;
    min-height: 720px;
    margin-bottom: 35px;
    padding: 60px;
    overflow: hidden;
    border-radius: 30px;
}

.featured-project:last-child {
    margin-bottom: 0;
}

.featured-project-light {
    border: 1px solid var(--line);
    background: #ffffff;
}

.featured-project-dark {
    background: var(--ink);
    color: #ffffff;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 35px;
}

.project-meta span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.project-meta strong {
    color: #8b96a8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.featured-project-content h2 {
    margin: 20px 0;
    font-size: clamp(40px, 4vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.featured-project-content > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.featured-project-dark .featured-project-content > p {
    color: #a8b4c7;
}

.project-services,
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.project-services span,
.portfolio-tags span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 30px;
    color: #59667a;
    font-size: 11px;
    font-weight: 700;
}

.featured-project-dark .project-services span {
    border-color: #2a3650;
    color: #aab5c7;
}

.project-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin: 35px 0;
}

.project-results article {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
}

.featured-project-dark .project-results article {
    border-color: #2a3650;
    background: #101a2d;
}

.project-results strong,
.project-results span {
    display: block;
}

.project-results strong {
    color: var(--blue);
    font-size: 20px;
}

.project-results span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.featured-project-dark .project-results span {
    color: #8f9cb0;
}

.light-link {
    color: #72a3ff;
}

/* Featured project browser */

.featured-project-media {
    position: relative;
}

.project-browser {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: #ffffff;
    box-shadow:
        0 30px 70px rgba(7, 17, 31, 0.16);
    transform: rotate(1.4deg);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.project-browser:hover {
    transform: rotate(0) translateY(-8px);
    box-shadow:
        0 40px 85px rgba(7, 17, 31, 0.21);
}

.dark-browser {
    border-color: #253149;
}

.project-browser-bar {
    height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 17px;
    border-bottom: 1px solid var(--line);
    background: #f8faff;
}

.project-browser-bar > div {
    display: flex;
    gap: 6px;
}

.project-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d1df;
}

.project-browser-bar span:first-child {
    background: var(--blue);
}

.project-browser-bar small {
    color: #8b96a7;
    font-size: 9px;
}

.project-browser img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    object-position: top center;
}

.project-media-badge {
    position: absolute;
    right: -22px;
    bottom: -28px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 18px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow:
        0 18px 40px rgba(7, 17, 31, 0.16);
}

.project-media-badge > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--blue-soft);
    color: var(--blue);
}

.project-media-badge small,
.project-media-badge strong {
    display: block;
}

.project-media-badge small {
    color: var(--muted);
    font-size: 9px;
}

.project-media-badge strong {
    color: var(--ink);
    font-size: 13px;
}

/* ---------------------------------------------------------------
   ADDITIONAL PROJECT GRID
---------------------------------------------------------------- */

.project-grid-section {
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
}

.portfolio-card {
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    transition:
        transform 0.34s ease,
        box-shadow 0.34s ease,
        border-color 0.34s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(23, 105, 255, 0.4);
    box-shadow:
        0 28px 60px rgba(7, 17, 31, 0.1);
}

.portfolio-card-wide {
    grid-column: 1 / -1;
}

.portfolio-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.portfolio-number {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.portfolio-category {
    color: #8894a7;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.portfolio-card-copy {
    padding-top: 28px;
}

.portfolio-card-copy h3 {
    margin: 0 0 13px;
    font-size: 25px;
    line-height: 1.25;
}

.portfolio-card-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.sample-data-note {
    display: block;
    margin-top: 18px;
    color: #98a2b3;
    font-size: 10px;
    line-height: 1.6;
}

/* E-commerce visual */

.ecommerce-mockup {
    min-height: 360px;
    padding: 22px;
    border-radius: 20px;
    background: #f3eee6;
}

.store-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.store-topbar > span {
    font-weight: 800;
    letter-spacing: 0.12em;
}

.store-topbar > div {
    display: flex;
    gap: 7px;
}

.store-topbar i {
    width: 26px;
    height: 5px;
    border-radius: 10px;
    background: #aaa296;
}

.store-hero {
    margin-top: 50px;
    text-align: center;
}

.store-hero small,
.store-hero strong {
    display: block;
}

.store-hero small {
    color: #a58353;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.store-hero strong {
    max-width: 380px;
    margin: 15px auto;
    font-size: 35px;
    line-height: 1.05;
}

.store-hero > span {
    display: block;
    width: 180px;
    height: 7px;
    margin: 0 auto;
    border-radius: 10px;
    background: #cfc6b9;
}

.store-hero button {
    margin-top: 22px;
    padding: 11px 19px;
    border: 0;
    border-radius: 9px;
    background: var(--ink);
    color: #ffffff;
}

.store-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 42px;
}

.store-products span {
    height: 105px;
    border-radius: 13px;
    background:
        linear-gradient(145deg, #ded6ca, #b8aa98);
}

/* Social project visual */

.social-project-visual {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background:
        linear-gradient(135deg, #eef4ff, #ffffff);
}

.social-phone {
    width: 225px;
    min-height: 330px;
    padding: 18px;
    border: 8px solid var(--ink);
    border-radius: 32px;
    background: #ffffff;
    box-shadow:
        0 25px 55px rgba(7, 17, 31, 0.16);
    transform: rotate(-3deg);
}

.social-profile {
    display: flex;
    align-items: center;
    gap: 9px;
}

.social-profile > span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--blue);
}

.social-profile strong,
.social-profile small {
    display: block;
}

.social-profile strong {
    font-size: 10px;
}

.social-profile small {
    color: var(--muted);
    font-size: 7px;
}

.social-post {
    height: 170px;
    margin-top: 15px;
    border-radius: 13px;
    background:
        linear-gradient(145deg, #07111f, #1769ff);
}

.social-actions {
    display: flex;
    gap: 13px;
    margin-top: 12px;
}

.social-lines span {
    display: block;
    height: 6px;
    margin-top: 8px;
    border-radius: 10px;
    background: #d8dfeb;
}

.social-lines span:last-child {
    width: 65%;
}

.social-stat-card {
    position: absolute;
    right: 35px;
    bottom: 35px;
    padding: 17px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow:
        0 18px 40px rgba(7, 17, 31, 0.15);
}

.social-stat-card small,
.social-stat-card strong,
.social-stat-card span {
    display: block;
}

.social-stat-card small {
    color: var(--muted);
    font-size: 9px;
}

.social-stat-card strong {
    margin: 4px 0;
    color: var(--blue);
    font-size: 25px;
}

.social-stat-card span {
    color: #6f7c91;
    font-size: 8px;
}

/* SEO project */

.seo-project-visual {
    padding: 26px;
    border-radius: 20px;
    background: var(--ink);
    color: #ffffff;
}

.seo-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.seo-visual-header span {
    color: #8c99ad;
    font-size: 10px;
}

.seo-visual-header strong {
    font-size: 12px;
}

.seo-line-chart {
    height: 180px;
    margin-top: 25px;
}

.seo-line-chart svg {
    width: 100%;
    height: 100%;
}

.seo-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 20px;
}

.seo-result-grid article {
    padding: 13px;
    border: 1px solid #29354e;
    border-radius: 12px;
    background: #101a2d;
}

.seo-result-grid strong,
.seo-result-grid span {
    display: block;
}

.seo-result-grid strong {
    color: #72a3ff;
    font-size: 18px;
}

.seo-result-grid span {
    margin-top: 4px;
    color: #8b98ad;
    font-size: 8px;
}

/* Google Ads project */

.ads-project-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 45px;
    align-items: center;
}

.ads-overview {
    padding: 28px;
    border-radius: 21px;
    background: var(--ink);
    color: #ffffff;
}

.ads-overview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ads-overview-header small,
.ads-overview-header strong {
    display: block;
}

.ads-overview-header small {
    color: #8491a7;
    font-size: 9px;
}

.ads-overview-header strong {
    margin-top: 4px;
    font-size: 16px;
}

.ads-overview-header > span {
    color: #8290a6;
    font-size: 9px;
}

.ads-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 24px;
}

.ads-metrics article {
    padding: 14px;
    border: 1px solid #29354e;
    border-radius: 13px;
    background: #101a2d;
}

.ads-metrics small,
.ads-metrics strong,
.ads-metrics span {
    display: block;
}

.ads-metrics small {
    color: #8794a9;
    font-size: 8px;
}

.ads-metrics strong {
    margin: 6px 0 3px;
    font-size: 20px;
}

.ads-metrics span {
    color: #72a3ff;
    font-size: 8px;
}

.ads-chart {
    height: 160px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 24px;
}

.ads-chart span {
    flex: 1;
    border-radius: 7px 7px 2px 2px;
    background:
        linear-gradient(#5b93ff, #1769ff);
}

/* Automation project */

.automation-project-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, #f2f6ff, #ffffff);
}

.automation-project-visual > span {
    color: var(--blue);
    font-weight: 900;
}

.automation-node {
    min-width: 125px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
    box-shadow:
        0 14px 30px rgba(7, 17, 31, 0.08);
}

.automation-node.active {
    border-color: var(--blue);
    background: var(--blue);
    color: #ffffff;
}

.automation-node small,
.automation-node strong {
    display: block;
}

.automation-node small {
    color: #8995a8;
    font-size: 8px;
}

.automation-node.active small {
    color: #dbe8ff;
}

.automation-node strong {
    margin-top: 5px;
    font-size: 11px;
}

.automation-result {
    position: absolute;
    right: 35px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow:
        0 17px 38px rgba(7, 17, 31, 0.14);
}

.automation-result > span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--blue-soft);
    color: var(--blue);
}

.automation-result small,
.automation-result strong {
    display: block;
}

.automation-result small {
    color: var(--muted);
    font-size: 8px;
}

.automation-result strong {
    font-size: 10px;
}

/* ---------------------------------------------------------------
   PROJECT METHOD
---------------------------------------------------------------- */

.work-method {
    background: var(--ink);
    color: #ffffff;
}

.work-method-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: 95px;
    align-items: start;
}

.work-method-copy {
    position: sticky;
    top: 145px;
}

.work-method-copy h2 {
    margin: 20px 0 24px;
    font-size: clamp(45px, 4.7vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.work-method-copy h2 em {
    display: block;
    color: #72a3ff;
    font-style: normal;
}

.work-method-copy p {
    color: #aab5c8;
    line-height: 1.8;
}

.work-method-copy .btn {
    margin-top: 15px;
}

.work-method-steps {
    border-top: 1px solid #29364f;
}

.work-method-steps article {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    padding: 31px 5px;
    border-bottom: 1px solid #29364f;
}

.work-method-steps article > span {
    color: #72a3ff;
    font-size: 12px;
    font-weight: 800;
}

.work-method-steps h3 {
    margin: 0 0 9px;
    font-size: 21px;
}

.work-method-steps p {
    margin: 0;
    color: #929fb4;
    font-size: 14px;
    line-height: 1.75;
}

/* ---------------------------------------------------------------
   FINAL CTA
---------------------------------------------------------------- */

.work-final-cta {
    padding: 30px 0 0;
}

.work-final-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 75px;
    align-items: end;
    padding: 72px;
    border-radius: 30px;
    background:
        linear-gradient(
            135deg,
            var(--ink),
            #0b2f75
        );
    color: #ffffff;
}

.work-final-box::after {
    content: "";
    position: absolute;
    top: -250px;
    right: -180px;
    width: 510px;
    height: 510px;
    border-radius: 50%;
    background: rgba(23, 105, 255, 0.35);
}

.work-final-box > * {
    position: relative;
    z-index: 2;
}

.work-final-box h2 {
    margin: 19px 0 0;
    font-size: clamp(43px, 4.8vw, 69px);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.work-final-action p {
    margin: 0 0 27px;
    color: #b7c4d8;
    line-height: 1.8;
}

/* ---------------------------------------------------------------
   MEDIUM DESKTOP
---------------------------------------------------------------- */

@media (max-width: 1180px) {

    .work-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            410px;
        gap: 48px;
    }

    .work-hero-visual {
        min-height: 520px;
    }

    .featured-project {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .featured-project-media {
        max-width: 850px;
    }

    .ads-project-layout {
        grid-template-columns: 1fr;
    }

}

/* ---------------------------------------------------------------
   TABLET
---------------------------------------------------------------- */

@media (max-width: 820px) {

    .work-hero {
        padding-top: 145px;
    }

    .work-hero-layout,
    .work-intro-grid,
    .work-method-layout,
    .work-final-box {
        grid-template-columns: 1fr;
    }

    .work-hero-layout {
        gap: 55px;
    }

    .work-hero-visual {
        min-height: 510px;
    }

    .work-performance-card {
        inset: 15px;
    }

    .work-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-hero-stats article:nth-child(2) {
        border-right: 0;
    }

    .work-hero-stats article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .work-intro-heading,
    .work-method-copy {
        position: static;
    }

    .featured-project {
        padding: 42px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card-wide {
        grid-column: auto;
    }

    .ads-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-final-box {
        gap: 35px;
        padding: 54px;
    }

}

/* ---------------------------------------------------------------
   MOBILE
---------------------------------------------------------------- */

@media (max-width: 560px) {

    .work-hero {
        padding-top: 118px;
    }

    .work-hero-copy h1 {
        font-size: 47px;
    }

    .work-hero-copy > p {
        font-size: 16px;
    }

    .work-hero-actions {
        flex-direction: column;
    }

    .work-hero-actions .btn {
        width: 100%;
    }

    .work-hero-visual {
        min-height: 415px;
    }

    .work-performance-card {
        padding: 20px;
    }

    .work-performance-main > strong {
        font-size: 64px;
    }

    .work-performance-bars {
        height: 105px;
    }

    .work-floating-card {
        padding: 10px 12px;
    }

    .work-floating-one {
        top: 35px;
        left: -4px;
    }

    .work-floating-two {
        right: -4px;
        bottom: 28px;
    }

    .work-hero-stats {
        grid-template-columns: 1fr;
    }

    .work-hero-stats article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .work-hero-stats article:last-child {
        border-bottom: 0;
    }

    .work-intro-grid {
        gap: 40px;
    }

    .work-intro-copy .work-large-copy {
        font-size: 22px;
    }

    .featured-project {
        padding: 26px;
        border-radius: 22px;
    }

    .project-results {
        grid-template-columns: 1fr;
    }

    .project-browser img {
        min-height: 250px;
    }

    .project-media-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: fit-content;
        margin: 15px 0 0 auto;
    }

    .social-stat-card {
        right: 10px;
        bottom: 18px;
    }

    .seo-result-grid {
        grid-template-columns: 1fr;
    }

    .automation-project-visual {
        min-height: 460px;
        flex-direction: column;
    }

    .automation-project-visual > span {
        transform: rotate(90deg);
    }

    .automation-result { 
        right: 15px;
        bottom: 15px;
    }

    .work-method-layout {
        gap: 42px;
    }

    .work-method-steps article {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

    .work-final-box {
        padding: 40px 25px;
    }
 
    .work-final-box h2 {
        font-size: 38px;
    }

    .work-final-action .btn {
        width: 100%;
    }

}

/* =========================================
   WORK PAGE IMAGE FIX
========================================= */

.project-browser {
    position: relative;
    min-height: 460px;
    background: #eef3fa;
}

.project-browser .project-work-image {
    display: block;
    width: 100%;
    height: 460px;
    min-height: 460px;
    object-fit: cover;
    object-position: top center;
    opacity: 1;
    visibility: visible;
}

/* Tablet */
@media (max-width: 820px) {
    .project-browser,
    .project-browser .project-work-image {
        min-height: 360px;
        height: 360px;
    }
}

/* Mobile */
@media (max-width: 560px) {
    .project-browser,
    .project-browser .project-work-image {
        min-height: 240px;
        height: 240px;
    }
} 

/* ================================================================
   OFFICE MANAGEMENT PROJECT — IMAGE AND LIVE ACTIONS
   Add this block at the very bottom of style.css.
================================================================ */

/* Keeps the full SmartAttend screenshot visible inside its frame. */
.office-browser {
    width: 100%;
    height: 580px;
    min-height: 580px;
    overflow: hidden;
    background: #f5f7fb;
}

.office-browser .project-work-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center top;
    opacity: 1;
    visibility: visible;
}

/* Live system and enquiry buttons. */
.office-project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

@media (max-width: 820px) {
    .office-browser {
        height: 430px;
        min-height: 430px;
    }
}

@media (max-width: 560px) {
    .office-browser {
        height: 250px;
        min-height: 250px;
    }

    .office-project-actions {
        flex-direction: column;
    }

    .office-project-actions .btn {
        width: 100%;
    }
} 
/* =================================================================
   20. FINAL SITE-WIDE RESPONSIVE AUDIT OVERRIDES
   Purpose: definitive shared fixes for typography, header/navigation,
   logos, layout overflow, footer, forms, portfolio and all inner pages.
   Keep this section LAST so legacy duplicate rules cannot override it.
================================================================= */

/* GLOBAL SAFETY AND TYPOGRAPHY */
html { overflow-x: clip; }
body {
  overflow-x: clip;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
h1,h2,h3,h4,h5,h6,strong,.brand,.btn,input,select,textarea,button {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
img,svg,video,iframe { max-width: 100%; }
main { min-width: 0; }
.container { width: min(1380px, calc(100% - 48px)) !important; }
section[id] { scroll-margin-top: 120px; }

/* DESKTOP HEADER AND PROMINENT CROPPED LOGO */
.site-header {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 2000 !important;
  padding: 14px 0 !important;
}
.site-header.scrolled { padding: 8px 0 !important; }
.site-header .nav-shell {
  width: min(1460px, calc(100% - 32px)) !important;
  height: 84px !important;
  min-height: 84px !important;
  padding: 0 18px 0 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 26px !important;
  border-radius: 20px !important;
}
.site-header .brand {
  width: 235px !important;
  min-width: 235px !important;
  height: 72px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}
.site-header .brand img {
  width: 225px !important;
  height: auto !important;
  max-height: 68px !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter: none !important;
  transform: none;
}
.site-header .main-nav {
  display: flex !important;
  align-items: center !important;
  gap: clamp(18px, 1.7vw, 28px) !important;
  margin-left: auto !important;
}
.site-header .main-nav > a,
.site-header .dropdown-toggle {
  white-space: nowrap;
  font-size: 14px !important;
}
.site-header .nav-cta {
  display: inline-flex !important;
  min-height: 52px !important;
  padding: 0 21px !important;
  white-space: nowrap;
}
.mobile-nav-cta { display: none; }

/* DESKTOP SERVICES MEGA MENU */
@media (min-width: 1121px) {
  .site-header .dropdown-menu {
    top: calc(100% + 14px) !important;
    left: 50% !important;
    width: min(1080px, calc(100vw - 64px)) !important;
    max-height: min(690px, calc(100vh - 125px));
    overflow-y: auto;
    padding: 24px !important;
    transform: translate(-50%, 12px) !important;
  }
  .site-header .nav-dropdown:hover .dropdown-menu,
  .site-header .nav-dropdown.open .dropdown-menu {
    transform: translate(-50%, 0) !important;
  }
  .site-header .dropdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }
  .site-header .dropdown-grid a {
    min-width: 0;
    padding: 11px 12px !important;
    font-size: 12px !important;
    line-height: 1.35;
  }
}

/* TABLET AND MOBILE NAVIGATION */
@media (max-width: 1120px) {
  body.menu-open { overflow: hidden !important; }
  .site-header { padding: 10px 0 !important; }
  .site-header.scrolled { padding: 7px 0 !important; }
  .site-header .nav-shell {
    width: min(100% - 24px, 1000px) !important;
    height: 74px !important;
    min-height: 74px !important;
    padding: 0 14px 0 18px !important;
    border-radius: 17px !important;
  }
  .site-header .brand {
    width: 205px !important;
    min-width: 205px !important;
    height: 62px !important;
  }
  .site-header .brand img {
    width: 195px !important;
    max-height: 58px !important;
  }
  .site-header .menu-toggle {
    position: relative !important;
    z-index: 3 !important;
    display: grid !important;
    place-items: center !important;
    width: 48px !important;
    height: 48px !important;
    margin-left: auto !important;
    padding: 12px !important;
    border: 0 !important;
    border-radius: 13px !important;
    background: var(--ink) !important;
  }
  .site-header .menu-toggle span {
    display: block !important;
    width: 23px !important;
    height: 2px !important;
    margin: 2.5px 0 !important;
    border-radius: 5px;
    background: #fff !important;
    transition: transform .25s ease, opacity .2s ease;
  }
  .site-header .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .site-header .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header .nav-cta { display: none !important; }

  .site-header .main-nav {
    position: fixed !important;
    z-index: 2 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(430px, 100%) !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 112px 22px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    overflow-y: auto !important;
    background: #fff !important;
    box-shadow: -24px 0 70px rgba(7,17,31,.18) !important;
    transform: translateX(105%) !important;
    visibility: hidden !important;
    transition: transform .32s ease, visibility .32s ease !important;
  }
  .site-header .main-nav.open {
    transform: translateX(0) !important;
    visibility: visible !important;
  }
  .site-header .main-nav::before {
    content: "Navigation";
    display: block;
    margin-bottom: 14px;
    color: #8b96a8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .site-header .main-nav > a,
  .site-header .dropdown-toggle {
    width: 100% !important;
    min-height: 54px !important;
    padding: 15px 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid var(--line) !important;
    color: var(--ink) !important;
    font-size: 16px !important;
    text-decoration: none !important;
  }
  .site-header .main-nav > a::after,
  .site-header .dropdown-toggle::after { display: none !important; }
  .site-header .nav-dropdown { width: 100% !important; }
  .site-header .dropdown-menu {
    position: static !important;
    width: 100% !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 8px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: max-height .35s ease, padding .35s ease !important;
  }
  .site-header .nav-dropdown.open .dropdown-menu {
    max-height: 1450px !important;
    padding: 10px 8px 18px !important;
  }
  .site-header .dropdown-head {
    padding: 5px 0 12px !important;
    margin: 0 0 7px !important;
  }
  .site-header .dropdown-head > a { font-size: 12px !important; }
  .site-header .dropdown-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }
  .site-header .dropdown-grid a {
    min-width: 0 !important;
    padding: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
  .site-header .dropdown-grid a > span {
    width: 35px !important;
    height: 35px !important;
    flex: 0 0 35px !important;
  }
  .site-header .mobile-nav-cta {
    display: inline-flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 20px !important;
    padding: 15px 20px !important;
    border: 0 !important;
    border-radius: 13px !important;
    background: var(--blue) !important;
    color: #fff !important;
  }
}

/* SMALL MOBILE HEADER */
@media (max-width: 560px) {
  .container { width: min(100% - 30px, 1380px) !important; }
  .section { padding: 78px 0 !important; }
  .site-header .nav-shell { width: calc(100% - 16px) !important; height: 66px !important; min-height: 66px !important; }
  .site-header .brand { width: 168px !important; min-width: 168px !important; height: 55px !important; }
  .site-header .brand img { width: 160px !important; max-height: 50px !important; }
  .site-header .menu-toggle { width: 44px !important; height: 44px !important; }
  .site-header .main-nav { padding: 96px 18px 24px !important; }
  h1 { overflow-wrap: anywhere; }
}

/* COMMON PAGE RESPONSIVENESS AND OVERFLOW PROTECTION */
.hero-layout,.about-top,.section-heading.split,.story-grid,.contact-layout,
.ats-hero-grid,.ats-intro-grid,.ats-benefit-layout,.ats-faq-grid,.ats-final-box,
.about-v2-hero-grid,.about-v2-story-grid,.about-v2-approach-layout,.about-v2-why-grid,.about-v2-final-box,
.work-hero-layout,.work-intro-grid,.featured-project,.work-method-layout,.work-final-box,
.office-project-layout,.ads-project-layout,.footer-content {
  min-width: 0;
}
.hero-layout > *, .about-top > *, .section-heading.split > *, .story-grid > *, .contact-layout > *,
.ats-hero-grid > *, .ats-intro-grid > *, .ats-benefit-layout > *, .ats-faq-grid > *,
.about-v2-hero-grid > *, .about-v2-story-grid > *, .about-v2-approach-layout > *, .about-v2-why-grid > *,
.work-hero-layout > *, .work-intro-grid > *, .featured-project > *, .work-method-layout > *,
.office-project-layout > *, .ads-project-layout > *, .footer-content > * { min-width: 0; }

@media (max-width: 900px) {
  .hero-layout,.about-top,.section-heading.split,.story-grid,.contact-layout,
  .ats-hero-grid,.ats-intro-grid,.ats-benefit-layout,.ats-faq-grid,.ats-final-box,
  .about-v2-hero-grid,.about-v2-story-grid,.about-v2-approach-layout,.about-v2-why-grid,.about-v2-final-box,
  .work-hero-layout,.work-intro-grid,.featured-project,.work-method-layout,.work-final-box,
  .office-project-layout,.ads-project-layout {
    grid-template-columns: 1fr !important;
  }
  .services-grid,.services-list-grid,.ats-service-grid,.ats-process-grid,.ats-benefit-grid,
  .about-v2-capability-grid,.about-v2-values-grid,.about-v2-process-grid,
  .portfolio-grid,.process-grid,.values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .ats-sticky-title,.ats-faq-copy,.about-v2-story-heading,.about-v2-approach-copy,
  .about-v2-why-heading,.work-intro-heading,.work-method-copy { position: static !important; }
}

@media (max-width: 620px) {
  .services-grid,.services-list-grid,.ats-service-grid,.ats-process-grid,.ats-benefit-grid,
  .about-v2-capability-grid,.about-v2-values-grid,.about-v2-process-grid,
  .portfolio-grid,.process-grid,.values-grid,.project-results,.ads-metrics,
  .ats-hero-stats,.about-v2-stats,.work-hero-stats {
    grid-template-columns: 1fr !important;
  }
  .portfolio-card-wide { grid-column: auto !important; }
  .btn { width: 100%; }
  .hero-actions,.ats-hero-actions,.about-v2-hero-actions,.work-hero-actions,
  .office-project-actions { flex-direction: column !important; align-items: stretch !important; }
  .ats-dashboard,.about-v2-visual-card,.work-performance-card { inset: 10px !important; padding: 18px !important; }
  .ats-hero-visual,.about-v2-visual,.work-hero-visual { min-height: 410px !important; }
  .featured-project { padding: 24px !important; }
}

/* PORTFOLIO SCREENSHOTS — full frame, no accidental cropping */
.project-browser { width: 100%; min-width: 0; }
.project-browser .project-work-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  object-fit: contain !important;
  object-position: center top !important;
  background: #f5f7fb;
}
.office-browser { height: auto !important; min-height: 0 !important; }
.office-browser .project-work-image { aspect-ratio: 16 / 9; }

/* CONTACT FORM — prevent inline/cramped fields on narrow screens */
.contact-form,.contact-form-grid,.form-grid { min-width: 0; }
.contact-form input,.contact-form select,.contact-form textarea,
.form-grid input,.form-grid select,.form-grid textarea {
  width: 100% !important;
  max-width: 100% !important;
}
@media (max-width: 760px) {
  .contact-form-grid,.form-grid { grid-template-columns: 1fr !important; }
  .contact-form textarea,.form-grid textarea { min-height: 150px; }
}

/* FOOTER AND FOOTER LOGO */
.site-footer { overflow: hidden; }
.site-footer .footer-content {
  grid-template-columns: minmax(270px, 1.15fr) repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(35px, 5vw, 70px) !important;
}
.site-footer .footer-brand { display: inline-flex !important; width: auto !important; height: auto !important; overflow: visible !important; }
.site-footer .footer-logo {
  display: block !important;
  width: 250px !important;
  height: auto !important;
  max-width: 100% !important;
  filter: none !important;
  object-fit: contain !important;
}
.site-footer .footer-column a,.site-footer .footer-contact-links a { overflow-wrap: anywhere; }
@media (max-width: 1100px) {
  .site-footer .footer-content { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .site-footer .footer-about { grid-column: 1 / -1; max-width: 650px; }
}
@media (max-width: 620px) {
  .site-footer .footer-accent { height: 36px !important; }
  .site-footer .footer-content { grid-template-columns: 1fr !important; padding-top: 50px !important; gap: 34px !important; }
  .site-footer .footer-about { grid-column: auto; }
  .site-footer .footer-logo { width: 215px !important; }
  .site-footer .footer-bottom,.site-footer .footer-contact-links { flex-direction: column !important; align-items: flex-start !important; }
}

/* ACCESSIBILITY */
:focus-visible { outline: 3px solid rgba(23,105,255,.38); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}



/* ================================================================
   FINAL HOSTING LOGO FIX
   Keeps header and footer logos prominent on Hostinger.
================================================================ */

/* Header logo container */
.site-header .brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: 260px !important;
    min-width: 260px !important;
    height: 80px !important;

    flex: 0 0 260px !important;
    overflow: visible !important;
}

/* Header logo image */
.site-header .brand img {
    display: block !important;

    width: 245px !important;
    height: auto !important;
    max-width: none !important;
    max-height: 74px !important;

    object-fit: contain !important;
    object-position: left center !important;

    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Gives the larger logo enough header space */
.site-header .nav-shell {
    min-height: 96px !important;
}

/* Footer logo */
.site-footer .footer-brand {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

.site-footer .footer-logo {
    display: block !important;

    width: 280px !important;
    height: auto !important;
    max-width: none !important;
    max-height: 108px !important;

    object-fit: contain !important;
    object-position: left center !important;

    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Tablet */
@media (max-width: 1120px) {

    .site-header .brand {
        width: 215px !important;
        min-width: 215px !important;
        height: 68px !important;
        flex-basis: 215px !important;
    }

    .site-header .brand img {
        width: 205px !important;
        max-height: 62px !important;
    }

    .site-header .nav-shell {
        min-height: 78px !important;
    }

    .site-footer .footer-logo {
        width: 240px !important;
        max-height: 92px !important;
    }
}

/* Mobile */
@media (max-width: 560px) {

    .site-header .brand {
        width: 178px !important;
        min-width: 178px !important;
        height: 58px !important;
        flex-basis: 178px !important;
    }

    .site-header .brand img {
        width: 170px !important;
        max-height: 52px !important;
    }

    .site-header .nav-shell {
        min-height: 68px !important;
    }

    .site-footer .footer-logo {
        width: 215px !important;
        max-height: 82px !important;
    }
}

