/* ============================================================
   ANM ACCOUNTANTS — shared stylesheet
   Used by every public page + admin panel.
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #B41E1E;
  --red-d: #8E1515;
  --red-l: #D43030;
  --red-soft: rgba(180, 30, 30, 0.08);
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark: #2A2A2A;
  --mid: #606060;
  --light: #F4F3F0;
  --off: #FAFAF8;
  --white: #FFFFFF;
  --border: rgba(0, 0, 0, 0.09);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

/* ── NAV ── */
#navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}

/* solid variant for inner pages (no hero behind nav) */
#navbar.solid {
  position: sticky;
  background: var(--black);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.nav-logo-text span.big {
  font-family: var(--ff-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  display: block;
  line-height: 1;
}

.nav-logo-text span.sub {
  font-size: .56rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a.active {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red-l);
  transition: width .3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: .48rem 1.3rem !important;
  background: var(--red) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  letter-spacing: 1px !important;
  font-size: .7rem !important;
  transition: background .25s !important;
}

.nav-cta:hover {
  background: var(--red-d) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  display: block;
  transform-origin: center;
  border-radius: 2px;
}

/* ── MOBILE MENU — professional slide-in drawer (half screen) ── */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(8, 8, 8, .5);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 75%;
  max-width: 330px;
  z-index: 999;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -18px 0 50px rgba(0, 0, 0, .4);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mob-top .mm-brand {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.mob-close {
  background: rgba(255, 255, 255, .06);
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.mob-close:hover {
  background: var(--red);
}

.mob-close svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  font-family: var(--ff-body);
  font-size: .82rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  padding: .85rem .2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu nav a svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, .25);
  transition: fill .2s, transform .2s;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: #fff;
  padding-left: .55rem;
}

.mobile-menu nav a:hover svg,
.mobile-menu nav a.active svg {
  fill: var(--red-l);
  transform: translateX(3px);
}

.mob-cta {
  margin-top: 1.4rem;
  padding: .8rem;
  background: var(--red);
  color: #fff !important;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.mob-cta:hover {
  background: var(--red-d);
}

.mob-foot {
  margin-top: auto;
  padding-top: 1.4rem;
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.8;
}

.mob-foot a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.mob-foot a:hover {
  color: var(--red-l);
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 8, 8, .82) 0%, rgba(8, 8, 8, .48) 55%, rgba(8, 8, 8, .18) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 60px;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .64rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-l);
  font-weight: 600;
  margin-bottom: .9rem;
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red-l);
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: #e88080;
}

.hero p.sub {
  font-size: .92rem;
  color: rgba(255, 255, 255, .7);
  max-width: 480px;
  margin-bottom: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: .72rem 1.9rem;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  transition: all .3s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
}

.btn-outline {
  padding: .72rem 1.9rem;
  background: transparent;
  color: #fff;
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-sm);
  transition: all .3s;
  cursor: pointer;
  display: inline-block;
}

.btn-outline:hover {
  border-color: #fff;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  z-index: 10;
  display: flex;
  gap: 7px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s;
}

.dot.active {
  background: var(--red-l);
  width: 26px;
  border-radius: 4px;
}

.slide-counter {
  position: absolute;
  bottom: 2rem;
  left: 8%;
  z-index: 10;
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  letter-spacing: 2px;
}

.slide-counter strong {
  color: #fff;
  font-size: .9rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 8.5rem 8% 3.8rem;
  background: var(--black);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .68) 60%, rgba(8, 8, 8, .45) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(180, 30, 30, .25) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.page-hero .crumbs {
  font-size: .68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
  margin-bottom: .9rem;
}

.page-hero .crumbs a {
  color: var(--red-l);
  text-decoration: none;
}

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: .7rem;
}

.page-hero h1 em {
  font-style: italic;
  color: #e88080;
}

.page-hero p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .62);
  max-width: 560px;
  line-height: 1.8;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, .07);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}

.stat-num em {
  color: var(--red-l);
  font-style: normal;
}

.stat-label {
  font-size: .64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  font-weight: 600;
  display: block;
  margin-top: 5px;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 5.2rem 8%;
}

.section-tag {
  font-size: .63rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

.section-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--red);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.22;
  margin-bottom: .9rem;
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

.section-desc {
  color: var(--mid);
  max-width: 580px;
  font-size: .92rem;
  line-height: 1.8;
}

/* ── ABOUT ── */
.about {
  background: var(--off);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.about-img-accent {
  position: absolute;
  bottom: -2.2rem;
  right: -2.2rem;
  width: 54%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: var(--radius-sm);
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -1.8rem;
  background: var(--red);
  color: #fff;
  padding: 1.3rem 1.1rem;
  text-align: center;
  width: 108px;
  border-radius: var(--radius-sm);
}

.about-badge span.yr {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-badge span.txt {
  font-size: .56rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  opacity: .85;
}

.about-content {
  padding: 1.5rem 0;
}

.about-points {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.ap-icon {
  width: 34px;
  height: 34px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: var(--radius-sm);
}

.ap-icon svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.ap-text h4 {
  font-size: .83rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.ap-text p {
  font-size: .76rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}

.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  padding: 2.1rem 1.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all .38s;
  cursor: pointer;
}

.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0);
  transition: transform .4s;
}

.svc-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-num {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, .05);
  line-height: 1;
  margin-bottom: .8rem;
}

.svc-card:hover .svc-num {
  color: rgba(180, 30, 30, .1);
}

.svc-icon {
  width: 46px;
  height: 46px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-sm);
  transition: background .38s;
}

.svc-card:hover .svc-icon {
  background: var(--red);
}

.svc-icon svg {
  width: 21px;
  height: 21px;
  fill: var(--mid);
  transition: fill .38s;
}

.svc-card:hover .svc-icon svg {
  fill: #fff;
}

.svc-card h3 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .5rem;
}

.svc-card p {
  font-size: .79rem;
  color: var(--mid);
  line-height: 1.65;
}

.svc-read {
  margin-top: 1rem;
  color: var(--red);
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .32s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  padding: 0;
}

.svc-read svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
  transition: transform .28s;
}

.svc-card:hover .svc-read {
  opacity: 1;
  transform: translateX(0);
}

.svc-card:hover .svc-read svg {
  transform: translateX(4px);
}

/* On touch devices, always show read-more */
@media (hover: none) {
  .svc-read {
    opacity: 1;
    transform: none;
  }
}

/* ── SERVICE POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(3px);
}

.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 660px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
}

.popup-overlay.open .popup {
  transform: translateY(0) scale(1);
}

.popup-hero {
  height: 190px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.popup-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .6));
  border-radius: inherit;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, .4);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.popup-close:hover {
  background: var(--red);
}

.popup-close svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.popup-body {
  padding: 1.8rem 2.1rem 2rem;
}

.popup-tag {
  font-size: .61rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .5rem;
}

.popup-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.popup-desc {
  font-size: .87rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.popup-features h4 {
  font-size: .76rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.popup-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  color: var(--dark);
}

.popup-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--red-soft);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23B41E1E' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ── JURISDICTION TOGGLES (Dubai popup — AFZ-style segmented control) ── */
.juris-block {
  margin-bottom: 1.4rem;
}

.juris-block-hd {
  margin-bottom: 1rem;
}

.juris-block-hd h4 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.juris-sub {
  font-size: .85rem;
  color: var(--mid);
  margin-top: .35rem;
  line-height: 1.55;
  max-width: 46ch;
}

/* segmented toggle */
.juris-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--light);
  padding: 7px;
  border-radius: 14px;
  margin-bottom: 1.3rem;
}

.juris-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: .95rem .5rem;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 9px;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2px;
  color: var(--mid);
  cursor: pointer;
  transition: background .25s, color .25s, box-shadow .25s, transform .15s;
  text-align: center;
}

.juris-tab:hover {
  color: var(--black);
  background: rgba(255, 255, 255, .65);
}

.juris-tab-ico {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(180, 30, 30, .09);
  transition: background .25s;
}

.juris-tab-ico svg {
  width: 17px;
  height: 17px;
  fill: var(--red);
  transition: fill .25s;
}

.juris-tab.active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(180, 30, 30, .26);
}

.juris-tab.active .juris-tab-ico {
  background: rgba(255, 255, 255, .2);
}

.juris-tab.active .juris-tab-ico svg {
  fill: #fff;
}

/* panel */
.juris-panel {
  display: none;
  opacity: 1;
}

.juris-panel.active {
  display: block;
  animation: jfade .32s ease;
}

@keyframes jfade {
  from { transform: translateY(8px); }
  to { transform: translateY(0); }
}

.juris-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.05rem 1.2rem;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 1rem;
}

.juris-head-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--red);
  box-shadow: 0 6px 16px rgba(180, 30, 30, .25);
}

.juris-head-txt {
  flex: 1;
  min-width: 0;
}

.juris-head-ico svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.juris-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}

.juris-tagline {
  display: block;
  font-size: .78rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .2px;
  margin-top: 3px;
}

.juris-blurb {
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.juris-feats-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .8rem;
}

.juris-feats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.4rem;
}

.juris-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--dark);
}

.juris-feats li::before {
  content: '';
  width: 19px;
  height: 19px;
  background: var(--red-soft);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23B41E1E' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .juris-feats { grid-template-columns: 1fr; }
  .juris-tab-name { font-size: .76rem; }
}

.popup-footer {
  padding: 1.2rem 2.1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--off);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.popup-footer p {
  font-size: .8rem;
  color: var(--mid);
}

.btn-red {
  padding: .7rem 1.7rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .25s;
}

.btn-red:hover {
  background: var(--red-d);
}

/* ── WHY US ── */
.why {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 5.6rem 8%;
}

.why::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(180, 30, 30, .22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(180, 30, 30, .14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.why-hdr {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.4rem;
}

.why .section-tag {
  color: #e88080;
}

.why .section-tag::before {
  background: #e88080;
}

.why .section-title {
  color: #fff;
}

.why-lead {
  font-size: .96rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.85;
}

.why-lead strong {
  color: #fff;
  font-weight: 500;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.why-card {
  position: relative;
  padding: 2.3rem 1.8rem 1.9rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.why-card:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(212, 48, 48, .35);
  transform: translateY(-4px);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-num {
  font-family: var(--ff-display);
  font-size: 4.2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: rgba(212, 48, 48, .18);
  position: absolute;
  top: .8rem;
  right: 1.2rem;
  transition: color .35s;
  pointer-events: none;
}

.why-card:hover .why-card-num {
  color: rgba(212, 48, 48, .42);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(180, 30, 30, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 1.4rem;
  transition: background .35s;
  position: relative;
  z-index: 1;
}

.why-card:hover .why-card-icon {
  background: var(--red);
}

.why-card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--red-l);
  transition: fill .35s;
}

.why-card:hover .why-card-icon svg {
  fill: #fff;
}

.why-card h4 {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .55rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.why-strip {
  margin-top: 3.2rem;
  padding: 2rem 2.4rem;
  background: rgba(180, 30, 30, .09);
  border: 1px solid rgba(180, 30, 30, .22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.why-strip-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.why-strip-text em {
  color: #e88080;
  font-style: italic;
  font-weight: 600;
}

/* ── PROCESS ── */
.process {
  background: var(--light);
}

.process-hdr {
  text-align: center;
  margin-bottom: 3.4rem;
}

.process-hdr .section-tag {
  justify-content: center;
}

.process-hdr .section-desc {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 37px;
  left: 13%;
  right: 13%;
  height: 1px;
  background: rgba(0, 0, 0, .1);
  z-index: 0;
}

.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 74px;
  height: 74px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
  position: relative;
  transition: all .35s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.proc-step:hover .step-circle {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 6px 24px rgba(180, 30, 30, .22);
}

.step-circle svg {
  width: 26px;
  height: 26px;
  fill: var(--mid);
  transition: fill .35s;
}

.proc-step:hover .step-circle svg {
  fill: #fff;
}

.step-n {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: .64rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-step h4 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .35rem;
}

.proc-step p {
  font-size: .77rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── GOOGLE REVIEWS ── */
.reviews {
  background: var(--off);
}

.reviews-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.6rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .7rem 1.2rem;
}

.g-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.g-logo svg {
  width: 58px;
  height: 20px;
}

.g-rating {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
}

.g-stars {
  color: #F4B400;
  font-size: .82rem;
  letter-spacing: 1px;
}

.g-count {
  font-size: .68rem;
  color: var(--mid);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: box-shadow .3s;
  position: relative;
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.rev-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 1rem;
}

.rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}

.rev-name {
  font-size: .86rem;
  font-weight: 600;
  color: var(--black);
}

.rev-time {
  font-size: .68rem;
  color: var(--mid);
}

.rev-stars {
  color: #F4B400;
  font-size: .8rem;
  letter-spacing: 1px;
  margin-bottom: .8rem;
}

.rev-text {
  font-size: .83rem;
  color: var(--dark);
  line-height: 1.72;
}

.g-icon-sm {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 18px;
  height: 18px;
  opacity: .25;
}

/* ── SECTORS ── */
.sectors {
  background: #fff;
}

.sectors-hdr {
  text-align: center;
  margin-bottom: 3rem;
}

.sectors-hdr .section-tag {
  justify-content: center;
}

.sectors-hdr .section-desc {
  margin: 0 auto;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.sector-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: .9rem;
  padding: 1.7rem 1rem 1.4rem;
  text-align: center;
  border-radius: var(--radius);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  min-height: 180px;
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
}

.sector-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(13 13 13 / 27%) 0%, rgb(13 13 13 / 46%) 100%);
  z-index: -1;
  transition: background .35s;
}

.sector-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}

.sector-item:hover::before {
  background: linear-gradient(180deg, rgba(180, 30, 30, .35) 0%, rgba(8, 8, 8, .92) 100%);
}

.sect-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all .35s;
}

.sector-item:hover .sect-icon {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

.sect-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  transition: fill .35s;
}

.sector-item span {
  font-size: .81rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .55);
}

/* ── PACKAGES TABLE ── */
.packages {
  background: linear-gradient(180deg, var(--off) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(180, 30, 30, .06) 0%, transparent 70%);
  pointer-events: none;
}

.pkg-hdr {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.pkg-hdr .section-tag {
  justify-content: center;
}

.pkg-hdr .section-desc {
  margin: 0 auto;
}

.pkg-table-wrap {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .07);
  overflow: hidden;
}

.pkg-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pkg-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-family: var(--ff-body);
}

.pkg-table thead th {
  padding: 2.4rem 1.4rem 1.6rem;
  background: var(--off);
  vertical-align: top;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.pkg-table thead th.pkg-th-label {
  width: 28%;
  text-align: left;
  padding: 2.4rem 1.8rem 1.6rem;
  background: #fff;
}

.pkg-th-label .pkg-th-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: .35rem;
}

.pkg-th-label .pkg-th-sub {
  font-size: .79rem;
  color: var(--mid);
  line-height: 1.55;
}

.pkg-table thead th.pkg-col {
  width: 18%;
  border-left: 1px solid var(--border);
}

.pkg-col-tag {
  display: inline-block;
  padding: .25rem .65rem;
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(180, 30, 30, .1);
  border-radius: 100px;
  margin-bottom: .7rem;
}

.pkg-col-name {
  font-family: var(--ff-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--black);
  display: block;
  line-height: 1.25;
  margin-bottom: .8rem;
  min-height: 2.6em;
}

.pkg-col-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: .25rem;
}

.pkg-col-curr {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.pkg-col-price {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.pkg-col-cycle {
  display: block;
  font-size: .62rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 600;
  margin-bottom: .35rem;
}

.pkg-col-was {
  display: block;
  font-size: .7rem;
  color: var(--mid);
  text-decoration: line-through;
  opacity: .7;
  min-height: 1em;
}

.pkg-table thead th.pkg-col.featured {
  background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  border-left: 1px solid var(--red);
  border-right: 1px solid var(--red);
  padding-top: 3rem;
}

.pkg-table thead th.pkg-col.featured .pkg-col-tag {
  background: rgba(232, 128, 128, .18);
  color: #e88080;
}

.pkg-table thead th.pkg-col.featured .pkg-col-name,
.pkg-table thead th.pkg-col.featured .pkg-col-curr,
.pkg-table thead th.pkg-col.featured .pkg-col-price {
  color: #fff;
}

.pkg-table thead th.pkg-col.featured .pkg-col-cycle,
.pkg-table thead th.pkg-col.featured .pkg-col-was {
  color: rgba(255, 255, 255, .55);
}

.pkg-table thead th.pkg-col.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: .9rem;
  left: 50%;
  transform: translateX(-50%);
  padding: .3rem .8rem;
  background: var(--red);
  color: #fff;
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(180, 30, 30, .4);
}

.pkg-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}

.pkg-table tbody tr:not(.pkg-row-header):hover {
  background: rgba(244, 243, 240, .5);
}

.pkg-table tbody td {
  padding: 1rem 1.4rem;
  font-size: .83rem;
  color: var(--dark);
  vertical-align: middle;
  border-left: 1px solid var(--border);
  text-align: center;
}

.pkg-table tbody td:first-child {
  border-left: none;
  text-align: left;
  font-weight: 500;
  color: var(--black);
  padding: 1rem 1.8rem;
}

.pkg-table tbody tr.pkg-row-header td {
  background: var(--charcoal);
  font-family: var(--ff-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: .65rem 1.8rem;
  border-left: none;
  text-align: left;
}

.pkg-table tbody tr.pkg-row-header td .pkg-row-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 9px;
  fill: var(--red-l);
}

.pkg-table tbody td.featured {
  background: rgba(13, 13, 13, .97);
  color: #fff;
  border-left-color: var(--red);
  border-right: 1px solid var(--red);
}

.pkg-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--red-soft);
  border-radius: 50%;
}

.pkg-check svg {
  width: 13px;
  height: 13px;
  fill: var(--red);
}

td.featured .pkg-check {
  background: rgba(232, 128, 128, .22);
}

td.featured .pkg-check svg {
  fill: #e88080;
}

.pkg-dash {
  color: var(--mid);
  opacity: .35;
  font-size: 1.1rem;
  font-weight: 500;
}

td.featured .pkg-dash {
  color: rgba(255, 255, 255, .35);
}

.pkg-cell-note {
  font-size: .73rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .2px;
}

td.featured .pkg-cell-note {
  color: #e88080;
}

.pkg-table tfoot td {
  padding: 1.8rem 1.4rem 2rem;
  border-left: 1px solid var(--border);
  text-align: center;
  background: #fff;
}

.pkg-table tfoot td:first-child {
  border-left: none;
}

.pkg-table tfoot td.featured {
  background: linear-gradient(180deg, #0D0D0D 0%, #000 100%);
  border-left-color: var(--red);
  border-right: 1px solid var(--red);
}

.pkg-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  max-width: 170px;
  padding: .72rem 1rem;
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
}

.pkg-cta-btn:hover {
  background: var(--red);
  color: #fff;
}

.pkg-cta-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform .25s;
}

.pkg-cta-btn:hover svg {
  transform: translateX(3px);
}

td.featured .pkg-cta-btn {
  background: var(--red);
  color: #fff;
}

td.featured .pkg-cta-btn:hover {
  background: var(--red-d);
  border-color: var(--red-d);
}

.pkg-scroll-hint {
  display: none;
  font-size: .73rem;
  color: var(--mid);
  text-align: center;
  margin-top: .8rem;
  font-style: italic;
  letter-spacing: .3px;
}

.pkg-footer-note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: .86rem;
  color: var(--mid);
  position: relative;
  z-index: 1;
}

.pkg-footer-note a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.pkg-footer-note a:hover {
  text-decoration: underline;
}

/* ── FAQ ── */
.faq {
  background: var(--light);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-body);
  font-size: .86rem;
  font-weight: 600;
  color: var(--black);
}

.faq-q svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a-inner {
  padding: 0 1.4rem 1.1rem;
  font-size: .83rem;
  color: var(--mid);
  line-height: 1.75;
}

/* ── INSIGHTS ── */
.insights {
  background: var(--off);
}

.insights-hdr {
  text-align: center;
  margin-bottom: 3rem;
}

.insights-hdr .section-tag {
  justify-content: center;
}

.insights-hdr .section-desc {
  margin: 0 auto;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.insight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.insight-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, .09);
  transform: translateY(-4px);
  border-color: rgba(180, 30, 30, .18);
}

.insight-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.insight-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .35) 100%);
}

.insight-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .38rem .85rem;
  background: var(--red);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 2;
}

.insight-body {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  color: var(--mid);
  margin-bottom: .8rem;
  letter-spacing: .3px;
  font-weight: 500;
  text-transform: uppercase;
}

.insight-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--mid);
  border-radius: 50%;
  opacity: .6;
  flex-shrink: 0;
}

.insight-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: .55rem;
  transition: color .25s;
}

.insight-card:hover .insight-title {
  color: var(--red);
}

.insight-excerpt {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.3rem;
  flex: 1;
}

.insight-link {
  font-size: .68rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.insight-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  transition: transform .25s;
}

.insight-card:hover .insight-link svg {
  transform: translateX(4px);
}

.insights-cta {
  margin-top: 2.6rem;
  text-align: center;
}

/* ── PORTFOLIO GRID ── */
.portfolio-sec {
  background: var(--off);
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.pf-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.pf-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
  border-color: rgba(180, 30, 30, .18);
}

.pf-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-color: var(--light);
  position: relative;
}

.pf-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .4) 100%);
}

.pf-img-empty {
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(255,255,255,0.13)' d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 14H7v-2h5v2zm5-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
  background-size: 56px;
  background-repeat: no-repeat;
  background-position: center;
}

.pf-img-empty::after { display: none; }

.pf-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: .35rem .8rem;
  background: var(--red);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 100px;
}

.pf-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pf-title {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: .5rem;
  transition: color .25s;
}

.pf-card:hover .pf-title {
  color: var(--red);
}

.pf-excerpt {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pf-link {
  font-size: .68rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pf-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  transition: transform .25s;
}

.pf-card:hover .pf-link svg {
  transform: translateX(4px);
}

.pf-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--mid);
  font-size: .92rem;
  grid-column: 1 / -1;
}

/* ── PORTFOLIO DETAIL ── */
.pf-detail {
  background: #fff;
}

.pf-detail-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pf-gallery-main {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--light);
}

.pf-gallery-main img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pf-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
  margin-top: .8rem;
}

.pf-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s, opacity .2s;
  opacity: .7;
}

.pf-thumbs img.active,
.pf-thumbs img:hover {
  border-color: var(--red);
  opacity: 1;
}

.pf-detail-side .pf-cat-static {
  display: inline-block;
  padding: .3rem .8rem;
  background: var(--red-soft);
  color: var(--red);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.pf-detail-side h1 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pf-detail-side .pf-desc {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.6rem;
  white-space: pre-line;
}

.pf-detail-side .pf-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .75rem 1.6rem;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s;
}

.pf-detail-side .pf-visit:hover {
  background: var(--red-d);
}

.pf-detail-side .pf-visit svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.pf-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  margin-bottom: 2rem;
}

.pf-back:hover {
  color: var(--red);
}

.pf-back svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding:4.3rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.22;
  max-width: 520px;
}

.cta-banner h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, .65);
}

.btn-white {
  padding: .76rem 2.1rem;
  background: #fff;
  color: var(--red);
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: var(--radius-sm);
  transition: all .3s;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

/* ── CONTACT ── */
.contact {
  background: var(--light);
  color: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.contact-info {
  padding: 5.2rem 4.5rem;
  border-right: 1px solid var(--border);
}

.contact-info .section-tag {
  color: var(--red);
}

.contact-info .section-tag::before {
  background: var(--red);
}

.contact-info .section-title {
  color: var(--black);
}

.contact-info .section-desc {
  color: var(--mid);
}

.c-details {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.c-icon {
  width: 40px;
  height: 40px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

.c-icon svg {
  width: 17px;
  height: 17px;
  fill: var(--red);
}

.c-item h4 {
  font-size: .64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 3px;
}

.c-item p,
.c-item a {
  font-size: .86rem;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.55;
}

.c-item a:hover {
  color: var(--red);
}

.contact-form {
  padding: 5.2rem 4.5rem;
  background: var(--white);
}

.contact-form h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: .64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off);
  border: 1px solid var(--border);
  color: var(--black);
  padding: .7rem .95rem;
  font-family: var(--ff-body);
  font-size: .84rem;
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color .3s, background .3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9a9a9a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
}

.form-group select option {
  background: var(--white);
  color: var(--black);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  padding: .9rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
}

.btn-submit:hover {
  background: var(--red-d);
}

.form-alert {
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.form-alert.success {
  background: #e7f5ec;
  border: 1px solid #b6e0c4;
  color: #1a6b3a;
}

.form-alert.error {
  background: #fbe9e9;
  border: 1px solid #f0c0c0;
  color: var(--red-d);
}

/* ── FOOTER ── */
footer {
  background: #080808;
  color: rgba(255, 255, 255, .45);
  padding: 3.6rem 8% 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.fb span.big {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.fb span.sub {
  font-size: .56rem;
  letter-spacing: 3px;
  color: var(--red-l);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: .9rem;
}

.fb p {
  font-size: .78rem;
  line-height: 1.75;
  max-width: 270px;
}

.fc h5 {
  font-size: .64rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.fc a {
  display: block;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  font-size: .78rem;
  margin-bottom: .55rem;
  transition: color .25s;
}

.fc a:hover {
  color: var(--red-l);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: .74rem;
  flex-wrap: wrap;
  gap: .9rem;
}

.footer-bottom .fb-links a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  margin-left: 1.2rem;
}

.footer-bottom .fb-links a:hover {
  color: var(--red-l);
}

.socials {
  display: flex;
  gap: .7rem;
}

.soc {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.soc:hover {
  border-color: var(--red);
  background: rgba(180, 30, 30, .2);
}

.soc svg {
  width: 13px;
  height: 13px;
  fill: rgba(255, 255, 255, .38);
  transition: fill .3s;
}

.soc:hover svg {
  fill: #fff;
}

/* ── ABOUT: APPROACH BAND ── */
.approach {
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approach-img {
  position: relative;
}

.approach-img img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.approach-list {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.approach-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.approach-row .ar-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  width: 34px;
  flex-shrink: 0;
}

.approach-row h4 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}

.approach-row p {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ── ABOUT: JOURNEY TIMELINE ── */
.journey {
  background: var(--white);
}

.journey-hdr {
  text-align: center;
  margin-bottom: 3.4rem;
}

.journey-hdr .section-tag {
  justify-content: center;
}

.journey-hdr .section-desc {
  margin: 0 auto;
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.4rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--red), rgba(180, 30, 30, .12));
}

.tl-item {
  position: relative;
  padding-bottom: 2rem;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
}

.tl-year {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: .3rem;
}

.tl-item h4 {
  font-size: .92rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .25rem;
}

.tl-item p {
  font-size: .83rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── ABOUT: CREDENTIALS ── */
.creds {
  background: var(--off);
}

.creds-hdr {
  text-align: center;
  margin-bottom: 3rem;
}

.creds-hdr .section-tag {
  justify-content: center;
}

.creds-hdr .section-desc {
  margin: 0 auto;
}

.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all .3s;
}

.cred-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, .07);
  transform: translateY(-3px);
  border-color: rgba(180, 30, 30, .18);
}

.cred-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto .9rem;
  background: var(--red-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--red);
}

.cred-card h4 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .3rem;
}

.cred-card p {
  font-size: .76rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ── LEGAL / SIMPLE CONTENT PAGES ── */
.legal {
  background: #fff;
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal-inner h2 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin: 2.2rem 0 .8rem;
}

.legal-inner h2:first-child {
  margin-top: 0;
}

.legal-inner p,
.legal-inner li {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: .8rem;
}

.legal-inner ul {
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}

.legal-inner a {
  color: var(--red);
  text-decoration: none;
}

.legal-updated {
  font-size: .78rem;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ── FLOATING BTNS ── */
.float-wa {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: .55rem 1rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-size: .71rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .35);
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}

.float-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
}

.float-wa svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

.float-call {
  position: fixed;
  bottom: 4.4rem;
  left: 1.5rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: .55rem 1rem;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-size: .71rem;
  font-weight: 600;
  box-shadow: 0 0px 5px rgba(180, 30, 30, .35);
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}

.float-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(180, 30, 30, .4);
}

.float-call svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

@media(max-width:600px) {
  .float-wa,
  .float-call {
    padding: .48rem .8rem;
    font-size: .66rem;
  }

  .float-call {
    left: 1.4rem;
    bottom: 4rem;
    box-shadow: none;
  }
}

/* ── AI CHAT ── */
.chat-bubble {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 900;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  background: var(--charcoal);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(0, 0, 0, .3);
  transition: background .3s, transform .25s;
  position: relative;
}

.chat-toggle:hover {
  background: var(--dark);
  transform: scale(1.05);
}

.chat-toggle svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.chat-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 11px;
  height: 11px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .7; }
}

.chat-win {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(0, 0, 0, .18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 500px;
}

.chat-win.open {
  display: flex;
}

.chat-hdr {
  background: var(--charcoal);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

.chat-av {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-av svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.chat-hi h4 {
  font-size: .82rem;
  color: #fff;
  font-weight: 600;
}

.chat-hi p {
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
}

.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  background: #f9f9f8;
  max-height: 300px;
}

.msg {
  max-width: 82%;
  padding: .65rem .85rem;
  border-radius: 10px;
  font-size: .8rem;
  line-height: 1.55;
}

.msg.bot {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--dark);
  align-self: flex-start;
  border-radius: 3px 10px 10px 10px;
}

.msg.user {
  background: var(--charcoal);
  color: #fff;
  align-self: flex-end;
  border-radius: 10px 10px 3px 10px;
}

.msg-t {
  font-size: .62rem;
  color: var(--mid);
  margin-top: 2px;
  display: block;
}

.msg.user .msg-t {
  color: rgba(255, 255, 255, .5);
}

.qr-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: .5rem 1.1rem;
  background: #f9f9f8;
  border-top: 1px solid var(--border);
}

.qr {
  padding: 4px 11px;
  border: 1px solid rgba(180, 30, 30, .22);
  border-radius: 100px;
  font-size: .72rem;
  color: var(--red);
  cursor: pointer;
  background: #fff;
  font-family: var(--ff-body);
  transition: all .2s;
  white-space: nowrap;
}

.qr:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.chat-inp-wrap {
  padding: .8rem 1.1rem;
  display: flex;
  gap: 7px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.chat-inp {
  flex: 1;
  border: 1px solid var(--border);
  padding: .55rem .85rem;
  font-family: var(--ff-body);
  font-size: .8rem;
  outline: none;
  border-radius: var(--radius-sm);
  transition: border-color .3s;
}

.chat-inp:focus {
  border-color: var(--red);
}

.chat-send {
  width: 36px;
  height: 36px;
  background: var(--red);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
  flex-shrink: 0;
}

.chat-send:hover {
  background: var(--red-d);
}

.chat-send svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 13px;
}

.typing span {
  width: 6px;
  height: 6px;
  background: var(--mid);
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}

.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-table { min-width: 820px; }
}

@media(max-width:900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .approach { grid-template-columns: 1fr; gap: 2.5rem; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pkg-scroll-hint { display: block; }
  .about-img-accent,
  .about-badge { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why { padding: 4.5rem 8%; }
  .why-hdr { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 2.6rem; }
  .why-strip { padding: 1.6rem; }
  .why-strip-text { font-size: 1.05rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .contact-info { border-right: none; padding: 4rem 8%; }
  .contact-form { padding: 4rem 8%; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stats-bar .stat-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .pf-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 4rem 6%; }
  .page-hero { padding: 7rem 6% 3.2rem; }
  .chat-win { width: 300px; }
}

@media(max-width:600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .pf-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  section { padding: 3.2rem 5%; }
  .hero-content { padding: 76px 5% 50px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .chat-win { width: calc(100vw - 2.5rem); right: 0; }
  .insights-grid { grid-template-columns: 1fr; }
  .pf-thumbs { grid-template-columns: repeat(4, 1fr); }
  .contact-info, .contact-form { padding: 3.2rem 6%; }
}

/* ============================================================
   ABOUT — extra sections (Promise band + Office locations)
   ============================================================ */
.promise {
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(212, 48, 48, .35), transparent 55%),
    linear-gradient(135deg, var(--charcoal), var(--black));
  color: #fff;
  text-align: center;
}

.promise .section-tag { color: var(--red-l); }

.promise-hdr {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.promise-hdr .section-title { color: #fff; }

.promise-hdr .section-desc { color: rgba(255, 255, 255, .66); }

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  text-align: left;
}

.promise-card {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform .25s, border-color .25s, background .25s;
}

.promise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 48, 48, .55);
  background: rgba(255, 255, 255, .07);
}

.promise-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--red);
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 20px rgba(180, 30, 30, .35);
}

.promise-icon svg { width: 24px; height: 24px; fill: #fff; }

.promise-card h4 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.15;
}

.promise-card p {
  font-size: .86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .64);
}

/* Office locations */
.locations { background: var(--light); }

.locations-hdr {
  max-width: 660px;
  margin-bottom: 2.6rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.loc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}

.loc-card.loc-remote {
  background: var(--black);
  color: #fff;
  justify-content: center;
}

.loc-pin {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--red-soft);
  margin-bottom: 1.2rem;
}

.loc-card.loc-remote .loc-pin { background: rgba(255, 255, 255, .12); }

.loc-pin svg { width: 24px; height: 24px; fill: var(--red); }

.loc-card.loc-remote .loc-pin svg { fill: #fff; }

.loc-card h4 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: .55rem;
  color: var(--black);
}

.loc-card.loc-remote h4 { color: #fff; }

.loc-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 1.1rem;
}

.loc-card.loc-remote p { color: rgba(255, 255, 255, .7); }

.loc-link {
  margin-top: auto;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.loc-card.loc-remote .loc-link { color: #fff; }

.loc-link svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 980px) {
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .promise-grid { grid-template-columns: 1fr; }
}
