/* ============================================================
   individualService.css — Royal Technologies
   Shared stylesheet for all 8 individual service pages
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --pink: #ed2e72;
  --blue: #009fed;
  --dark-blue: #1561ed;
  --navy: #0f153c;
  --deep-navy: #01062a;
  --accent-blue: #218dc2;
  --green: #60d769;
  --bg: #f8faff;
  --white: #ffffff;
  --black: #000000;
  --text-muted: #918f8f;
  --border: #ededed;

  --gradient-brand: linear-gradient(178.81deg, #ed2e72 0%, rgba(237, 46, 114, 0) 100%),
    linear-gradient(to left, #009fed, #009fed);
  --gradient-icon: linear-gradient(230.92deg, rgba(130, 130, 130, 1) 0%, rgba(0, 0, 0, 1) 100%);
  --gradient-hero: linear-gradient(135deg, #0f153c 0%, #1561ed 60%, #009fed 100%);
  --gradient-cta: linear-gradient(135deg, #ed2e72 0%, #009fed 100%);

  --shadow-card: 0 2px 49.7px rgba(19, 42, 97, 0.11);
  --shadow-soft: 0 4px 44.6px rgba(217, 229, 255, 0.45);
  --shadow-nav: 0 4px 44.6px rgba(217, 229, 255, 0.45);

  --radius-card: 30px;
  --radius-btn: 50px;
  --radius-tag: 20px;

  --pad-x: 80px;
  --max-w: 1440px;

  --font-body: "Space Grotesk", sans-serif;
  --font-bold: "Space Grotesk", sans-serif;
}

/* ============================================================
   2. RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  cursor: pointer;
  background: none;
  font: inherit;
}

input {
  border: none;
  outline: none;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* ============================================================
   3. GOOGLE FONT IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 10px 10px 10px 20px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s, transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn:hover {
  opacity: .92;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.btn__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 5px 29.3px rgba(96, 215, 105, 0.6);
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 5px 20px rgba(237, 46, 114, 0.4);
}

.btn--black {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 26.3px rgba(192, 212, 255, 0.35);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 26.3px rgba(192, 212, 255, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn__wa {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-nav);
  width: 100%;
  animation: navbarSlideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.navbar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100px;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 102px;
  height: 39px;
  overflow: hidden;
}

.navbar__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 45px;
}

.navbar__links a {
  font-size: 16px;
  color: var(--black);
  transition: opacity .2s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links a:hover {
  opacity: .6;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 20px 24px;
  gap: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  border-top: 1px solid #f0f0f0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 16px;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  display: block;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav__cta {
  background: var(--green) !important;
  border-radius: var(--radius-btn) !important;
  padding: 12px 20px !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  border-bottom: none !important;
}

/* ============================================================
   6. SERVICE HERO SECTION
   ============================================================ */
.svc-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  min-height: 520px;
  display: flex;
  align-items: center;
}

.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-background.png') center right / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.svc-hero__blob1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 46, 114, 0.35) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
}

.svc-hero__blob2 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 159, 237, 0.25) 0%, transparent 70%);
  bottom: -100px;
  left: 100px;
  pointer-events: none;
  z-index: 0;
}

.svc-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.svc-hero__content {}

.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.svc-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.svc-hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.svc-hero__title span {
  background: linear-gradient(90deg, #ed2e72, #60d769);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.svc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.svc-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.svc-hero__icon-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 60px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
}

.svc-hero__icon-card svg,
.svc-hero__icon-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ============================================================
   7. SECTION LABELS & TITLES
   ============================================================ */
.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--pink);
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
}

/* ============================================================
   8. APPROACH / PROCESS SECTION
   ============================================================ */
.approach-section {
  padding: 100px 0;
  background: var(--white);
}

.approach-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.approach-section__header {
  max-width: 700px;
  margin-bottom: 60px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-cta);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity .3s;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card__num {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(229, 229, 229, 1) 0%, rgba(249, 249, 249, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.step-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   9. SERVICES / FEATURES GRID
   ============================================================ */
.features-section {
  padding: 100px 0;
  background: var(--bg);
}

.features-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.features-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.features-section__header .section-desc {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 60px rgba(19, 42, 97, 0.16);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--gradient-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12.4px rgba(0, 0, 0, 0.11);
}

.feature-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.feature-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================================
   10. TWO-COLUMN INFO SECTION
   ============================================================ */
.info-section {
  padding: 100px 0;
  background: var(--white);
}

.info-section--alt {
  background: var(--bg);
}

.info-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-section__inner--reverse {
  direction: rtl;
}

.info-section__inner--reverse>* {
  direction: ltr;
}

.info-section__content {}

.info-section__content .section-desc {
  margin-bottom: 32px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.info-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  border-radius: 16px;
  transition: transform .25s, background .25s;
}

.info-section--alt .info-list__item {
  background: var(--white);
}

.info-list__item:hover {
  transform: translateX(4px);
  background: #f0f4ff;
}

.info-list__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-list__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.info-list__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  padding-top: 2px;
}

.info-list__sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.info-section__visual {
  position: relative;
}

.info-visual-card {
  background: var(--gradient-hero);
  border-radius: 40px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.info-visual-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(237, 46, 114, 0.3);
  filter: blur(40px);
}

.info-visual-card__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.info-visual-card__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.info-visual-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 14px 16px;
}

.info-visual-card__item svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.info-visual-card__item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

/* ============================================================
   11. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gradient-hero);
  padding: 60px 0;
}

.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item__num {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__num span {
  color: var(--green);
}

.stat-item__label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   12. TYPES / OFFERINGS SECTION
   ============================================================ */
.types-section {
  padding: 100px 0;
  background: var(--bg);
}

.types-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.types-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.types-section__header .section-desc {
  margin: 0 auto;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.type-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .3s;
  border: 2px solid transparent;
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(19, 42, 97, 0.14);
  border-color: rgba(21, 97, 237, 0.15);
}

.type-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(21, 97, 237, 0.1), rgba(0, 159, 237, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.type-card__icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--dark-blue);
  fill: none;
  stroke-width: 1.5;
}

.type-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.type-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================================================
   13. FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.faq-section__left {}

.faq-section__left .section-desc {
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .25s;
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  transition: transform .3s;
}

.faq-item details[open] .faq-item__icon svg {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================================
   14. CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 46, 114, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 159, 237, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-section__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.cta-section__title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-section__title span {
  color: var(--green);
}

.cta-section__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.wa-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 16px;
  color: var(--white);
  margin-top: 24px;
  transition: background .2s;
}

.wa-strip:hover {
  background: rgba(255, 255, 255, 0.2);
}

.wa-strip img {
  width: 28px;
  height: 28px;
}

/* ============================================================
   15. TECH TAGS
   ============================================================ */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tech-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  transition: all .2s;
}

.tech-tag:hover {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
}

/* ============================================================
   16. BREADCRUMB
   ============================================================ */
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent-blue);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__sep {
  color: var(--border);
}


/* ============================================================
   18. SCROLL ANIMATION CLASSES
   ============================================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-revealed {
  opacity: 1 !important;
  transform: none !important;
}

.anim-delay-1 {
  transition-delay: 0.08s !important;
}

.anim-delay-2 {
  transition-delay: 0.16s !important;
}

.anim-delay-3 {
  transition-delay: 0.24s !important;
}

.anim-delay-4 {
  transition-delay: 0.32s !important;
}

.anim-delay-5 {
  transition-delay: 0.40s !important;
}

/* ============================================================
   19. KEYFRAMES
   ============================================================ */
@keyframes navbarSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ============================================================
   20. RESPONSIVE — TABLET (769–1100px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1100px) {
  :root {
    --pad-x: 40px;
  }

  .navbar__wrap {
    padding: 0 40px;
    height: 88px;
  }

  .navbar__links,
  .navbar__cta {
    display: none !important;
  }

  .navbar__hamburger {
    display: flex !important;
  }

  .mobile-nav {
    top: 88px;
  }

  .svc-hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .svc-hero__visual {
    display: none;
  }

  .svc-hero__title {
    font-size: 44px;
  }

  .svc-hero__desc {
    font-size: 16px;
  }

  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .info-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-section__inner--reverse {
    direction: ltr;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-section__title {
    font-size: 40px;
  }

  .footer__main {
    flex-direction: column;
    gap: 40px;
  }

  .footer__contact-card {
    min-width: 100%;
  }
}

/* ============================================================
   21. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
    --radius-card: 20px;
  }

  body {
    overflow-x: hidden;
  }

  .navbar__wrap {
    padding: 0 20px;
    height: 68px;
  }

  .navbar__links,
  .navbar__cta {
    display: none !important;
  }

  .navbar__hamburger {
    display: flex !important;
  }

  .navbar__logo {
    width: 90px;
  }

  .mobile-nav {
    top: 68px;
  }

  .svc-hero {
    min-height: auto;
  }

  .svc-hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 0;
  }

  .svc-hero__visual {
    display: none;
  }

  .svc-hero__title {
    font-size: 34px;
  }

  .svc-hero__desc {
    font-size: 16px;
    max-width: 100%;
  }

  .svc-hero__actions {
    flex-direction: column;
  }

  .svc-hero__actions .btn {
    justify-content: center;
  }

  .breadcrumb {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .approach-section,
  .features-section,
  .info-section,
  .types-section,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }

  .approach-section__inner,
  .features-section__inner,
  .info-section__inner,
  .types-section__inner,
  .faq-section__inner,
  .cta-section__inner {
    padding: 0 20px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .info-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .info-section__inner--reverse {
    direction: ltr;
  }

  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 30px;
  }

  .cta-section__title {
    font-size: 32px;
  }

  .cta-section__desc {
    font-size: 16px;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .stat-item__num {
    font-size: 36px;
  }

  .step-card {
    padding: 28px 20px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .type-card {
    padding: 24px 16px;
  }

  .type-card__icon {
    width: 56px;
    height: 56px;
  }

  .footer__inner {
    padding: 48px 24px;
    gap: 36px;
  }

  .footer__main {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .footer__logo {
    width: 140px;
  }

  .footer__tagline {
    font-size: 14px;
  }

  .footer__contact-card {
    min-width: unset;
    width: 100%;
  }

  .footer__legal {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer__legal a {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .types-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar__inner {
    grid-template-columns: 1fr;
  }

  .svc-hero__title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }
}

/* ============================================================
   PERFORMANCE: Reduce motion for accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}