/* ==========================================================================
   ASEEL CONSTRUCTIONS - Logo-Based Design System
   Blue: #004AAD | Yellow: #FFE600 | Dark: #0a1628 | BG: #FAFAFA
   Fonts: DM Sans (body), DM Mono (specs)
   ========================================================================== */

:root {
  --primary: #0a1628;
  --accent: #004AAD;
  --accent-dark: #003580;
  --accent-light: #3B82F6;
  --yellow: #FFE600;
  --yellow-dark: #E0CC00;
  --ink: #0a1628;
  --body: #374151;
  --muted: #6b7280;
  --bg: #FAFAFA;
  --bg-alt: #f0f4f8;
  --bg-white: #ffffff;
  --dark: #0a1628;
  --dark-soft: #142240;
  --border: rgba(10, 22, 40, 0.1);
  --border-strong: rgba(10, 22, 40, 0.18);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 74, 173, 0.1);
  --shadow-lg: 0 12px 32px rgba(0, 74, 173, 0.14);
  --container: min(1200px, calc(100% - 2rem));
  --header-h: 72px;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* Container */
.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 74, 173, 0.25);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav links */
.nav-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
}

.nav-menu.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-menu>a,
.nav-dropdown>a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-menu>a:hover,
.nav-menu>a[aria-current="page"],
.nav-dropdown>a:hover {
  color: var(--accent);
  background: rgba(0, 74, 173, 0.08);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown>a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
}

.dropdown-menu {
  display: none;
  padding-left: 1rem;
  flex-direction: column;
  gap: 0.125rem;
}

.dropdown-menu a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(0, 74, 173, 0.06);
}

.nav-dropdown.open .dropdown-menu {
  display: flex;
}

.nav-dropdown.open>a::after {
  transform: rotate(180deg);
}

/* Header CTA */
.header-cta {
  display: none;
  padding: 0.5rem 1.25rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.header-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section--dark .section-eyebrow {
  color: var(--yellow);
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.75);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.section-lead {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.7;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--dark);
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.5) 0%, rgba(10, 22, 40, 0.75) 100%);
}

.hero-content {
  color: #fff;
  max-width: 680px;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(4rem, 10vw, 7rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero h1 .accent {
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

/* Hide stats and contact strip - moved below hero */
.hero-stats,
.hero-contact-strip {
  display: none;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.hero-chip-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  font-weight: 700;
}

.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 230, 0, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
}

.btn--dark:hover {
  background: var(--dark-soft);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--ghost:hover {
  background: rgba(0, 74, 173, 0.08);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.card:hover .card__img img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.5rem;
}

.card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.card__body p {
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.card__link:hover {
  gap: 8px;
}

/* Feature cards (no image) */
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 74, 173, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--body);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ==========================================================================
   GRIDS
   ========================================================================== */
.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

/* ==========================================================================
   TRUST BAR (Client Marquee)
   ========================================================================== */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  overflow: hidden;
}

.trust-bar__label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.trust-marquee {
  overflow: hidden;
  white-space: nowrap;
}

.trust-track {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.trust-track span {
  display: inline-block;
  padding: 0 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner .btn--primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.cta-banner .btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.cta-banner .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-banner .btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cta-banner .btn--dark {
  margin-top: 1.25rem;
}

.cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

/* ==========================================================================
   PAGE HERO (subpages)
   ========================================================================== */
.page-hero {
  padding: clamp(6rem, 12vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--dark);
  color: #fff;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.page-hero .section-eyebrow {
  color: var(--yellow);
}

.page-hero .section-lead {
  color: rgba(255, 255, 255, 0.7);
  max-width: 60ch;
}

.page-hero h1 {
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   SERVICE PAGE SPECIFICS
   ========================================================================== */
.service-intro {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1rem;
}

.service-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--body);
}

.service-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 74, 173, 0.18);
  position: relative;
}

.service-intro__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-intro__image:hover img {
  transform: scale(1.04);
}

.service-intro__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0, 74, 173, 0.15);
  pointer-events: none;
}

@media (min-width: 768px) {
  .service-intro {
    grid-template-columns: 1fr 1fr;
  }

  .service-intro__image img {
    height: 380px;
  }
}

.process-steps {
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 74, 173, 0.1);
  color: var(--accent-dark);
  font-weight: 700;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.process-step p {
  color: var(--body);
  font-size: 0.92rem;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-top: 1rem;
}

.specs-table th,
.specs-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.specs-table th {
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-alt);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.specs-table td {
  color: var(--body);
}

/* Applications grid */
.apps-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.app-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.app-item:hover {
  border-color: rgba(0, 74, 173, 0.3);
  box-shadow: var(--shadow-sm);
}

.app-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.app-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.app-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.app-item__text {
  display: grid;
  gap: 0;
}

/* Related services */
.related-services {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.related-service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s;
}

.related-service-link:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.related-service-link::after {
  content: '\2192';
  margin-left: auto;
  color: var(--accent-dark);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  margin-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item strong {
  font-size: 0.85rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.contact-item a,
.contact-item span {
  color: var(--body);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--accent-dark);
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  padding: 0.75rem 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  color: #065f46;
  font-size: 0.9rem;
}

.form-error-msg {
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #991b1b;
  font-size: 0.9rem;
}

.response-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.error {
  color: #dc2626;
  font-size: 0.82rem;
  min-height: 1em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 36ch;
  line-height: 1.6;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-heading {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 0.2rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-info {
  display: grid;
  gap: 0.5rem;
}

.footer-contact-info a,
.footer-contact-info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-contact-info a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid {
  margin-top: 1.5rem;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.blog-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.blog-card__body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Blog post */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-family: var(--font-mono);
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-top: 0.75rem;
  color: var(--body);
  line-height: 1.8;
  font-size: 1.02rem;
}

.prose ul,
.prose ol {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-top: 0.35rem;
  color: var(--body);
  line-height: 1.7;
}

.prose strong {
  color: var(--ink);
}

.prose a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.prose a:hover {
  color: var(--accent);
}

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.project-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.project-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.project-card__client {
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
}

.project-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.project-card__tag {
  padding: 0.25rem 0.6rem;
  background: var(--bg-alt);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* Client pill list */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill-list li {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.08);
  border: 1px solid rgba(0, 74, 173, 0.2);
  font-size: 0.88rem;
  color: var(--accent-dark);
  font-weight: 500;
}

.section--dark .pill-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Back to top */
#backToTop {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--dark);
  color: var(--yellow);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s;
  box-shadow: var(--shadow-md);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--yellow);
  color: var(--ink);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* Staggered reveal for grid children */
.grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.grid .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.grid .reveal:nth-child(6) {
  transition-delay: 0.4s;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-content {
  max-width: 80ch;
}

.about-content p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-box__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}

.stat-box__label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ==========================================================================
   IMAGE GRID
   ========================================================================== */
.image-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.image-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* ==========================================================================
   RTL SUPPORT (Arabic)
   ========================================================================== */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu {
  text-align: right;
}

[dir="rtl"] .app-item::before {
  content: '\2190';
}

[dir="rtl"] .related-service-link::after {
  content: '\2190';
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .related-service-link:hover {
  transform: translateX(-4px);
}

[dir="rtl"] .dropdown-menu {
  padding-left: 0;
  padding-right: 1rem;
}

[dir="rtl"] .process-step {
  direction: rtl;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* 480px+ */
@media (min-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 640px+ */
@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px+ */
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
  }

  .cta-inner {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }

  .blog-grid.grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-menu>a,
  .nav-dropdown>a {
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
  }

  .header-cta {
    display: inline-flex;
  }

  /* Dropdown desktop */
  .nav-dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(10, 22, 40, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    z-index: 100;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    display: flex;
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }

  .blog-grid.grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .related-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1280px+ */
@media (min-width: 1280px) {
  :root {
    --container: min(1240px, calc(100% - 3rem));
  }
}

/* ==========================================================================
   ICONS
   ========================================================================== */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box--blue {
  background: rgba(0, 74, 173, 0.1);
  color: var(--accent);
}

.icon-box--yellow {
  background: rgba(255, 230, 0, 0.15);
  color: #8a6d00;
}

.icon-box--dark {
  background: var(--dark);
  color: #fff;
}

/* ==========================================================================
   SECTION-CTA (alias for cta-banner)
   ========================================================================== */
.section-cta {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
}

.section-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.section-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
}

.cta-wrap {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-cta .btn--primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.section-cta .btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.section-cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.section-cta .btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (min-width: 768px) {
  .cta-wrap {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* ==========================================================================
   SCAN-STYLE CHECK LIST
   ========================================================================== */
.check-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.5;
}

.check-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   ICON CARDS (feature cards with icons)
   ========================================================================== */
.icon-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.icon-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 74, 173, 0.2);
}

.icon-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.icon-card__body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-intro {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
}

.about-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 74, 173, 0.18);
}

.about-intro__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-intro__image:hover img {
  transform: scale(1.03);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}

.stat-strip__item {
  background: var(--bg-white);
  padding: 1.25rem;
  text-align: center;
}

.stat-strip__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
  line-height: 1;
}

.stat-strip__label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 480px) {
  .stat-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s, color 0.2s;
}

.read-more:hover {
  gap: 8px;
  color: var(--accent-dark);
}

.blog-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card {
  overflow: hidden;
}

/* ==========================================================================
   STICKY QUOTE BUTTON
   ========================================================================== */
.quote-float {
  position: fixed;
  left: 1rem;
  bottom: 5rem;
  z-index: 1090;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(255, 230, 0, 0.4);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.quote-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(255, 230, 0, 0.5);
}

.quote-float svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 1024px) {
  .quote-float {
    left: 1.5rem;
    bottom: 6rem;
  }
}

/* ==========================================================================
   PAGE HERO image variant
   ========================================================================== */
.page-hero--img {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.65), rgba(10, 22, 40, 0.85));
  z-index: -1;
}

.page-hero--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Print */
@media print {

  .site-header,
  .site-footer,
  .whatsapp-float,
  #backToTop,
  .nav-toggle {
    display: none;
  }

  .section {
    padding: 1rem 0;
  }

  body {
    color: #000;
    background: #fff;
  }
}

/* ==========================================================================
   HOMEPAGE / SERVICES MISSING COMPONENTS INJECTED
   ========================================================================== */

/* Section Modifiers */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-alt);
  padding: 5rem 0;
}

.section--dark {
  background: var(--dark);
  padding: 5rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.section--dark .section-title {
  color: #fff;
}

.section-eyebrow {
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section--dark .section-eyebrow {
  color: var(--yellow);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.section-lead {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 800px;
  margin-bottom: 3rem;
}

.section--dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Video Section */
.hero.video-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  /* Dark overlay */
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 4rem 1rem;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-eyebrow__dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-h1__line1,
.hero-h1__line2 {
  display: block;
}

.hero-h1__em {
  color: var(--yellow);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: all 0.3s ease;
}

.hero-btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.hero-btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.hero-trustline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-15px) translateX(-50%);
  }

  60% {
    transform: translateY(-7px) translateX(-50%);
  }
}

/* Trust Bar Marquee aliases */
.trust-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-inner {
  padding: 1rem;
}

/* Grid columns for missing media queries */
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    display: grid;
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    display: grid;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    display: grid;
  }
}

@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
  }
}

/* Feature & Service Cards Aliases */
.cards,
.services-grid {
  margin-top: 3rem;
}

.feature-icon,
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 74, 173, 0.1);
  color: var(--accent);
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 1.2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.service-card img,
.service-card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--body);
  margin-bottom: 2rem;
  flex: 1;
}

/* `.btn--ghost` logic for bottom sticky */
.service-card .btn--ghost {
  margin-top: auto;
  align-self: flex-start;
  color: var(--accent);
  border-color: var(--border-strong);
}

.service-card .btn--ghost:hover {
  background: var(--bg-alt);
  color: var(--accent-dark);
}

/* Contact Section & Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a,
.contact-item span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 1.5rem;
}

.contact-form .btn--primary {
  width: 100%;
  justify-content: center;
}

.response-badge {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  font-family: var(--font-mono);
}

/* Homepage: Safe Execution section */
.safe-execution-home .section-lead {
  max-width: 62ch;
}

.safe-execution-home .process-steps {
  margin-top: 3.25rem;
}

.safe-execution-home .process-step {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(0, 74, 173, 0.14);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.safe-execution-home .process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(10, 22, 40, 0.13);
  border-color: rgba(0, 74, 173, 0.28);
}

.safe-execution-home .process-step h3 {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

/* --- Homepage: Contact Redesign --- */
.contact-redesign {
  background-color: var(--bg-alt);
  padding: 6rem 0;
  position: relative;
}

.contact-redesign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--primary);
  z-index: 0;
}

.contact-redesign .container {
  position: relative;
  z-index: 1;
}

.contact-redesign__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .contact-redesign__wrapper {
    grid-template-columns: 1fr;
  }
}

.contact-redesign__info {
  background: var(--primary);
  color: #fff;
  padding: 4.5rem 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-redesign__info::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(255, 230, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.contact-title {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 1;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}

a.contact-method:hover {
  transform: translateX(6px);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--yellow);
  transition: background 0.2s ease, transform 0.2s ease;
}

a.contact-method:hover .method-icon {
  background: var(--yellow);
  color: var(--primary);
  border-color: var(--yellow);
  transform: scale(1.05);
}

.method-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.method-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.method-value {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

.contact-decoration {
  position: absolute;
  top: 2rem;
  right: 2rem;
  pointer-events: none;
}

.contact-redesign__form-wrapper {
  padding: 4.5rem;
  background: #ffffff;
}

@media (max-width: 600px) {
  .contact-redesign__info,
  .contact-redesign__form-wrapper {
    padding: 3rem 2rem;
  }
}

.form-title {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.contact-redesign__form .input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.contact-redesign__form .input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--body);
  margin-bottom: 0.5rem;
}

.contact-redesign__form .input-group input,
.contact-redesign__form .input-group select,
.contact-redesign__form .input-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--primary);
  background: #f8fafc;
  transition: all 0.2s ease;
  font-family: inherit;
}

.contact-redesign__form .input-group input:focus,
.contact-redesign__form .input-group select:focus,
.contact-redesign__form .input-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

.contact-redesign__form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-redesign__form .input-group textarea::placeholder,
.contact-redesign__form .input-group input::placeholder {
  color: #94a3b8;
}

.contact-redesign__form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: var(--yellow);
  color: var(--primary);
  border: none;
  padding: 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
}

.contact-redesign__form .btn-submit:hover {
  background: #e6cc00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 230, 0, 0.2);
}

.contact-redesign__form .error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.35rem;
}

/* About Grid Stats */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item strong {
  display: block;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.stat-item span {
  color: var(--body);
  font-weight: 500;
  font-size: 1.1rem;
}

/* CTA Section Banner */
.section-cta {
  background: var(--dark-soft);
  padding: 5rem 0;
  color: #fff;
}

.section-cta .section-title {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .cta-wrap {
    flex-direction: column;
    text-align: center;
  }
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* Pill list in Section Dark */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pill-list li {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   SERVICE INTERNAL PAGES COMPONENTS
   ========================================================================== */

/* Service Intro */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .service-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.service-intro__text p {
  font-size: 1.1rem;
  color: var(--body);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  cursor: pointer;
}

.service-intro__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-intro__image:hover img {
  transform: scale(1.02);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  display: block;
  background: var(--bg-white);
  padding: 3rem 2rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process-step__num {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 74, 173, 0.3);
}

.process-step h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  color: var(--ink);
}

.process-step p {
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Applications Grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.app-item {
  background: var(--bg-white);
  padding: 3rem 2rem 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
  box-shadow: var(--shadow-sm);
}

.app-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: var(--ink);
}

.app-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.specs-table th,
.specs-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.specs-table th {
  background: rgba(0, 74, 173, 0.05);
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td {
  color: var(--body);
  font-size: 1rem;
}

.specs-table td:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 30%;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(0, 74, 173, 0.02);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Global overrides for images to trigger Lightbox */
.service-intro__image::before {
  content: 'View Gallery';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 74, 173, 0.9);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
  pointer-events: none;
}

.service-intro__image:hover::before {
  opacity: 1;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--yellow);
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.lightbox-next {
  right: 0;
  border-radius: 0 3px 3px 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--accent);
}

/* Ensure related services flex properly */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.related-service-link {
  display: block;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.related-service-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.related-service-link h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.related-service-link p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   SERVICE DETAIL ARTICLES (services.html - What Each Service Covers)
   ========================================================================== */
.service-detail-article {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.service-detail-article:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-article:last-child {
  margin-bottom: 0;
}

.service-detail-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.service-detail-header h2 {
  font-size: 1.5rem;
  color: var(--ink);
}

.service-detail-article h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.service-detail-article p {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-detail-article ul {
  margin: 1rem 0 0.5rem 1.5rem;
  padding: 0;
  list-style: disc;
}

.service-detail-article ul li {
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.service-detail-article ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-detail-article {
    padding: 1.75rem 1.5rem;
  }
}