:root {
  --navy: #101828;
  --navy-deep: #0B1220;
  --navy-soft: #1E2A44;
  --orange: #FF5722;
  --orange-dark: #E44715;
  --orange-glow: rgba(255, 87, 34, .35);
  --orange-soft: rgba(255, 87, 34, .12);
  --cyan-soft: rgba(113, 201, 222, .16);
  --canvas: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F6F7F9;
  --text: #101828;
  --text-muted: #5B6575;
  --border: #E4E7EC;
  --shadow-sm: 0 4px 14px rgba(16, 24, 40, .06);
  --shadow: 0 14px 34px rgba(16, 24, 40, .10);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, .16);
  --nav-bg: rgba(16, 24, 40, .96);
  --radius: 16px;
  --nav-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--canvas);
  color: var(--text);
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  transition: background .4s ease, color .4s ease;
}

body.no-scroll {
  overflow: hidden
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit
}

input,
select,
textarea {
  font: inherit;
  color: inherit
}

section[id] {
  scroll-margin-top: calc(var(--nav-h) + 6px)
}

::selection {
  background: var(--orange);
  color: #fff
}

::-webkit-scrollbar {
  width: 11px
}

::-webkit-scrollbar-track {
  background: var(--surface-2)
}

::-webkit-scrollbar-thumb {
  background: #3b4a63;
  border-radius: 6px;
  border: 2px solid var(--surface-2)
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange)
}

:focus-visible {
  outline: 2px dashed var(--orange);
  outline-offset: 3px
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 2000;
  background: var(--orange);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 10px;
  transition: top .3s;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto
}

.text-orange {
  background: linear-gradient(92deg, #FF5722 10%, #FF8A50 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section {
  padding: 104px 0
}

.section-tint {
  background: var(--surface-2);
  border-block: 1px solid var(--border)
}

.section-head {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center
}

.section-head p,
.lead {
  color: var(--text-muted);
  font-size: 1.05rem
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--text);
  margin-top: .4rem
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--orange);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex: none
}

.section-head p {
  margin-top: 1rem
}

.lead {
  margin-top: 1.1rem;
  max-width: 520px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.7rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 1.02rem 1.95rem;
  font-size: 1.03rem
}

.btn-block {
  width: 100%
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 8px 22px var(--orange-glow);
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--orange-glow)
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .05)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  transform: translateY(-2px)
}

.btn-outline {
  color: var(--orange);
  border-color: var(--orange);
  background: transparent
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--orange-glow)
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 1.15rem;
  transition: background .3s, color .3s, border-color .3s;
}

.icon-btn:hover {
  background: var(--orange);
  border-color: var(--orange)
}

.icon-btn.active {
  background: var(--orange);
  border-color: var(--orange)
}

.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: height .3s ease, box-shadow .3s ease, background .3s ease;
}

.navbar.scrolled {
  height: 64px;
  box-shadow: 0 10px 30px rgba(6, 10, 18, .35)
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 16px var(--orange-glow);
  flex-shrink: 0;
  transition: transform .3s ease;
}

.brand:hover .brand-icon {
  transform: rotate(-6deg) scale(1.05)
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: .1rem
}

.brand-text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.1
}

.brand-text .accent {
  color: var(--orange)
}

.brand-sub {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  line-height: 1;
  display: none
}

.drawer-head .brand-text {
  color: var(--text)
}

.drawer-head .brand-sub {
  color: var(--text-muted)
}

.nav-links {
  display: none
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  font-size: .95rem;
  padding: .45rem 0;
  position: relative;
  transition: color .3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s
}

.nav-link:hover,
.nav-link.active {
  color: #fff
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1)
}

.drop-caret {
  transition: transform .3s;
  font-size: .68rem
}

.dropdown.active .drop-caret {
  transform: rotate(180deg)
}

.dropdown {
  position: relative
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 170px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: .45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .28s, transform .28s, visibility .28s;
  z-index: 50;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 26px;
  width: 12px;
  height: 12px;
  background: var(--surface);
  border-inline: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg)
}

.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .85rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: .93rem;
  transition: background .25s, color .25s, transform .2s;
}

.dropdown-link i {
  font-size: 1.15rem;
  color: var(--orange);
  flex-shrink: 0
}

.dropdown-link:hover,
.dropdown-link.active {
  background: var(--orange-soft);
  color: var(--orange);
  transform: translateX(3px)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .55rem
}

.nav-quote {
  display: none
}

.nav-auth {
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.btn-auth {
  height: 42px;
  padding: 0 1.15rem;
  font-size: .88rem;
  border-radius: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-auth-login {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}

.btn-auth-login:hover,
.btn-auth-login.active {
  background: rgba(255, 255, 255, .18);
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-auth-signup {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
  box-shadow: 0 4px 14px var(--orange-glow);
}

.btn-auth-signup:hover,
.btn-auth-signup.active {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--orange-glow);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 42px;
  padding: 8px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: background .3s
}

.hamburger:hover {
  background: var(--orange)
}

.hamburger span {
  height: 2.5px;
  border-radius: 3px;
  background: #fff;
  transition: transform .3s, opacity .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(6, 10, 18, .6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

.overlay.show {
  opacity: 1;
  visibility: visible
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: min(340px, 88vw);
  background: var(--surface);
  color: var(--text);
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  transform: translateX(105%);
  transition: transform .38s cubic-bezier(.22, .9, .3, 1), visibility .38s ease;
  box-shadow: -18px 0 50px rgba(6, 10, 18, .3);
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer.open {
  transform: translateX(0) !important;
  visibility: visible;
  pointer-events: auto
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0
}

.drawer-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1
}

.drawer-close {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text)
}

.drawer-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

.drawer-nav {
  margin-top: 1.1rem;
  flex: 1
}

.drawer-nav li {
  border-bottom: 1px solid var(--border)
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem .2rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  transition: color .25s, padding-inline-start .25s;
}

.drawer-nav a i {
  color: var(--orange);
  font-size: 1.1rem
}

.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--orange);
  padding-inline-start: .75rem
}

.drawer-cta {
  margin-top: .85rem;
  width: 100%;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.drawer-foot {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .84rem;
  color: var(--text-muted);
  text-align: center;
  flex-shrink: 0
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, #17233D 0%, #101828 45%, #0C141F 100%);
  padding: calc(var(--nav-h) + 76px) 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  display: block;
}

.hero-bg-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 24, 40, 0.74) 0%, rgba(12, 20, 31, 0.84) 100%);
  z-index: 2;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5
}

.hero-glow-1 {
  width: 460px;
  height: 460px;
  top: -180px;
  inset-inline-end: -110px;
  background: radial-gradient(circle, #FF5722 0%, transparent 70%)
}

.hero-glow-2 {
  width: 420px;
  height: 420px;
  bottom: -220px;
  inset-inline-start: -120px;
  background: radial-gradient(circle, rgba(50, 130, 150, .5) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite alternate
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 3rem;
  align-items: center
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 87, 34, .13);
  border: 1px solid rgba(255, 87, 34, .42);
  color: #FFC9B5;
  font-weight: 600;
  font-size: .86rem;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  animation: fadeUp .7s ease both;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
  margin-top: 1.25rem;
  word-break: break-word;
  overflow-wrap: break-word;
  animation: fadeUp .7s .12s ease both;
}

.hero-sub {
  margin-top: 1.25rem;
  max-width: 540px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.1rem;
  animation: fadeUp .7s .24s ease both
}

.hero-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.8rem;
  margin-top: 1.5rem;
  animation: fadeUp .7s .34s ease both
}

.hero-ticks span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  font-size: .95rem
}

.hero-ticks i {
  color: #FF8A50
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeUp .7s .44s ease both
}

.hero-visual {
  position: relative;
  height: 520px;
  animation: fadeUp .7s .28s ease both
}

.shot {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 30px 70px rgba(4, 8, 16, .5)
}

.shot-lg {
  width: 78%;
  height: 86%;
  top: 0;
  inset-inline-end: 0
}

.shot-sm {
  width: 46%;
  height: 42%;
  bottom: 0;
  inset-inline-start: -6px;
  border: 5px solid #101828
}

.shot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.shot:hover .shot-img {
  transform: scale(1.04)
}

.shot-tag {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .5rem .95rem;
  border-radius: 999px;
  background: rgba(255, 87, 34, .92);
  color: #fff;
  box-shadow: 0 8px 18px rgba(6, 10, 18, .35);
}

.shot-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .8rem
}

.shot-art::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(8, 12, 20, .55))
}

.shot-art i {
  font-size: 6.5rem;
  color: rgba(255, 255, 255, .35);
  opacity: .9
}

.art-a {
  background: radial-gradient(circle at 78% 18%, rgba(255, 87, 34, .30), transparent 46%), linear-gradient(155deg, #22314F, #0F1830)
}

.art-b {
  background: radial-gradient(circle at 22% 20%, rgba(80, 170, 190, .28), transparent 46%), linear-gradient(155deg, #1C2B47, #0C1526)
}

.hero-stats-bar {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 44px;
  padding: 2.15rem 0 2.4rem
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-inline-start: 1.4rem;
  border-inline-start: 1px solid rgba(255, 255, 255, .16)
}

.stat:first-of-type {
  border-inline-start: 0;
  padding-inline-start: 0
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(92deg, #FF8A50, #FF5722);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-label {
  font-size: .86rem;
  color: rgba(255, 255, 255, .62);
  font-weight: 500
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 3rem;
  align-items: center
}

.compare-info h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.checklist {
  margin: 1.6rem 0 1.9rem;
  display: flex;
  flex-direction: column;
  gap: .85rem
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-weight: 600;
  color: var(--text)
}

.checklist i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: .1rem
}

.cmp-wrap {
  min-width: 0
}

.cmp {
  position: relative;
  aspect-ratio: 4/2.85;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #cfc8ba;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}

.cmp-painter {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.cmp-before {
  z-index: 1
}

.cmp-after {
  z-index: 2;
  clip-path: inset(0 0 0 var(--pos, 50%))
}

.cmp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none
}

.room {
  position: absolute;
  inset: 0
}

.room-before {
  background: radial-gradient(circle at 30% 24%, rgba(120, 100, 70, .16), transparent 42%), linear-gradient(135deg, #EFE8D8, #D9D0BD)
}

.room-after {
  background: radial-gradient(circle at 78% 18%, rgba(255, 87, 34, .2), transparent 46%), linear-gradient(135deg, #1E2A44, #101828)
}

.rm-stain {
  position: absolute;
  top: 12%;
  inset-inline-start: 40%;
  width: 34%;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(90, 72, 44, .4), transparent 70%);
  filter: blur(2px)
}

.rm-stain-hidden {
  display: none
}

.rm-accent {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  width: 16%;
  background: linear-gradient(180deg, #FF8A50, #FF5722);
  opacity: .92;
  clip-path: polygon(0 0, 100% 100%, 100% 0)
}

.rm-accent-hidden {
  display: none
}

.rm-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16%;
  background: linear-gradient(#8C8364, #615A43)
}

.rm-sofa {
  position: absolute;
  left: 7%;
  bottom: 10%;
  width: 54%;
  height: 14%;
  border-radius: 14px 14px 6px 6px;
  background: #3A4557;
  box-shadow: inset 0 -14px 0 rgba(0, 0, 0, .18)
}

.room-after .rm-sofa {
  background: #93A2B8;
  box-shadow: inset 0 -14px 0 rgba(0, 0, 0, .22)
}

.rm-frame {
  position: absolute;
  top: 12%;
  inset-inline-start: 8%;
  width: 24%;
  aspect-ratio: .85;
  border-radius: 4px;
  background: rgba(255, 255, 255, .14);
  border: 6px solid rgba(16, 24, 40, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.room-after .rm-frame {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 138, 80, .16)
}

.cmp-tag {
  position: absolute;
  top: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.tag-before {
  inset-inline-start: 20px;
  background: rgba(16, 24, 40, .72);
  color: #fff
}

.tag-before::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5722
}

.tag-after {
  inset-inline-end: 20px;
  background: var(--orange);
  color: #fff
}

.cmp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 4px;
  z-index: 5;
  background: var(--orange);
  transform: translateX(-2px);
  box-shadow: 0 0 18px rgba(255, 87, 34, .5);
}

.cmp-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 26px rgba(6, 10, 18, .4);
}

.cmp-handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--orange);
  font-size: 1.3rem;
  z-index: 1
}

.cmp-caption {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .92rem
}

.cmp-caption i {
  color: var(--orange);
  margin-inline-end: .2rem
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  position: relative
}

.am-main {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.am-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.am-main:hover .am-img {
  transform: scale(1.03)
}

.am-main::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(8, 12, 20, .6))
}

.am-swatches {
  position: absolute;
  inset-inline-start: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: .55rem
}

.am-swatches i {
  position: static;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid rgba(255, 255, 255, .55);
  font-size: 0
}

.about-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.about-copy .checklist {
  max-width: 520px
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.9rem
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .6rem .55rem .2rem;
  border-radius: 14px;
  font-weight: 700;
  color: var(--text);
  border: 1px solid transparent;
  transition: border-color .3s, background .3s;
}

.call-ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: background .3s, color .3s, border-color .3s;
}

.btn-call:hover {
  border-color: var(--border);
  background: var(--surface)
}

.btn-call:hover .call-ico {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange)
}

.btn-call small {
  display: block;
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.3
}

.btn-call strong {
  font-size: .98rem;
  line-height: 1.3
}

.t-slider {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 64px
}

.t-viewport {
  overflow: hidden;
  border-radius: 24px;
  width: 100%
}

.t-track {
  display: flex;
  width: 100%;
  transition: transform .55s cubic-bezier(.3, .7, .25, 1);
  will-change: transform
}

.t-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: .4rem
}

.t-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.7rem 3rem 2.4rem;
  box-shadow: var(--shadow-sm);
}

.t-quote-mark {
  position: absolute;
  top: -14px;
  inset-inline-start: 22px;
  font-size: 7.5rem;
  line-height: 1;
  color: var(--orange-soft);
  z-index: 0
}

.t-stars {
  position: relative;
  display: inline-flex;
  gap: .25rem;
  color: var(--orange);
  font-size: 1.05rem
}

.t-text {
  position: relative;
  margin: 1.15rem auto 1.7rem;
  max-width: 640px;
  font-size: 1.13rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 500;
}

.t-person {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem
}

.t-avatar {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #FF8A50, #FF5722);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.02rem;
  border: 2.5px solid var(--orange);
  box-shadow: 0 8px 18px var(--orange-glow);
}

.t-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.t-person div {
  text-align: start
}

.t-person strong {
  display: block;
  font-size: .98rem;
  line-height: 1.3
}

.t-person span {
  font-size: .83rem;
  color: var(--text-muted)
}

.t-nav {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.t-prev {
  inset-inline-start: 0
}

.t-next {
  inset-inline-end: 0
}

.t-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.6rem
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--border);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  transition: width .3s, background .3s, border-color .3s;
}

.t-dot.active {
  width: 28px;
  background: var(--orange);
  border-color: var(--orange)
}

.section-cta {
  text-align: center;
  margin-top: 2.7rem
}

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

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-soft)
}

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

.svc-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-inline-end: 2.2rem
}

.svc-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 1.45rem;
  border: 1px solid transparent;
  transition: background .35s, color .35s, border-color .35s, transform .35s;
}

.service-card:hover .svc-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-5deg)
}

.svc-head h3 {
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25
}

.svc-sub {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .05em
}

.service-card p {
  margin-top: 1.15rem;
  color: var(--text-muted);
  font-size: .94rem;
  flex: 1
}

.svc-feats {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--border)
}

.svc-feats li {
  position: relative;
  padding-inline-start: 1.2rem;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500
}

.svc-feats li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange)
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.3rem;
  color: var(--orange);
  font-weight: 700;
  font-size: .92rem;
}

.svc-link i {
  transition: transform .3s
}

.svc-link:hover i {
  transform: translateX(4px)
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2.9rem;
  padding: 2.2rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm)
}

.proc-step {
  position: relative;
  text-align: center;
  padding: 0 .4rem
}

.proc-num {
  width: 50px;
  height: 50px;
  margin-inline: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--orange);
  border: 2px solid var(--orange);
  background: var(--surface);
  box-shadow: 0 8px 20px var(--orange-soft);
}

.proc-step h4 {
  margin-top: .85rem;
  font-size: .95rem;
  font-weight: 700
}

.proc-step p {
  margin-top: .3rem;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.5
}

.proc-arrow {
  color: var(--orange);
  font-size: 1.2rem;
  align-self: center;
  padding-top: 1.4rem
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 2.6rem
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .62rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background .3s, color .3s, border-color .3s, transform .3s, box-shadow .3s;
}

.filter-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px)
}

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px var(--orange-glow)
}

.filter-btn i {
  font-size: .95rem
}

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

.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.05;
  cursor: pointer;
  animation: popIn .55s cubic-bezier(.2, .8, .3, 1) both
}

.g-item.hide {
  display: none
}

.g-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2, .8, .3, 1)
}

.g-item:hover .g-img {
  transform: scale(1.08)
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 20, .88) 0%, rgba(8, 12, 20, .32) 45%, transparent 80%);
  pointer-events: none;
  transition: background .4s ease;
}

.g-item:hover::after {
  background: linear-gradient(to top, rgba(8, 12, 20, .95) 0%, rgba(8, 12, 20, .45) 50%, rgba(8, 12, 20, .12) 80%);
}

.g-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s ease
}

.g-art i {
  font-size: 3.6rem;
  opacity: .5;
  color: rgba(255, 255, 255, .85);
  transition: transform .6s
}

.g-art::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(transparent, rgba(8, 12, 20, .55))
}

.g-item:hover .g-art {
  transform: scale(1.1)
}

.g-item:hover .g-art i {
  transform: scale(1.12)
}

.art-1 {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .25), transparent 40%), linear-gradient(140deg, #FF8A50, #FF5722)
}

.art-2 {
  background: radial-gradient(circle at 70% 30%, rgba(255, 87, 34, .35), transparent 45%), linear-gradient(140deg, #20304F, #101828)
}

.art-3 {
  background: radial-gradient(rgba(255, 255, 255, .16) 3px, transparent 3.5px) 0 0/22px 22px, linear-gradient(140deg, #F2E9DA, #D8CCB8)
}

.art-3 i {
  color: var(--navy)
}

.art-4 {
  background: radial-gradient(circle at 80% 20%, rgba(255, 138, 80, .3), transparent 42%), linear-gradient(140deg, #1E2A44, #16213A)
}

.art-5 {
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, .22), transparent 38%), linear-gradient(140deg, #FF6A3D, #C93D12)
}

.art-6 {
  background: linear-gradient(135deg, #101828 0 45%, #FF5722 45% 100%)
}

.art-6 i {
  color: #101828
}

.art-7 {
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .2), transparent 40%), linear-gradient(140deg, #FF5722, #7A1E0A)
}

.art-8 {
  background: linear-gradient(140deg, #2C3E61, #0B1220)
}

.g-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.15rem 1.2rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  transition: transform .45s ease;
}

.g-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem
}

.g-tag {
  color: #FF5722;
}

.g-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-align: start;
  line-height: 1.28;
  margin: 0
}

.g-zoom {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.75);
  opacity: .85;
  transition: transform .4s, opacity .4s, background .3s;
}

.g-item:hover .g-zoom {
  transform: scale(1);
  opacity: 1;
  background: #FF8A50
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
  align-items: start
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.3rem 2rem;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .02em
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .15rem;
  margin: 1.05rem 0 .3rem
}

.price .cur {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  align-self: flex-start;
  margin-top: .4rem
}

.price .amt {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -.03em
}

.price .per {
  color: var(--text-muted);
  font-weight: 600;
  font-size: .95rem
}

.price-ideal {
  color: var(--text-muted);
  font-size: .93rem
}

.price-feats {
  margin: 1.5rem 0 1.7rem;
  text-align: start
}

.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .52rem 0;
  color: var(--text);
  font-size: .95rem
}

.price-feats i {
  color: var(--orange);
  margin-top: .2rem
}

.price-card .btn {
  width: 100%
}

.price-card.featured {
  background: linear-gradient(165deg, #1E2A44, #101828);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 26px 60px rgba(16, 24, 40, .35);
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-8px)
}

.price-card.featured .price .amt,
.price-card.featured h3 {
  color: #fff
}

.price-card.featured .price-ideal,
.price-card.featured .per {
  color: rgba(255, 255, 255, .65)
}

.price-card.featured .price-feats li {
  color: rgba(255, 255, 255, .92)
}

.price-card.featured .price-feats i {
  color: #FF8A50
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .45rem 1.05rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px var(--orange-glow);
  white-space: nowrap;
}

.price-meta {
  margin-top: 1.7rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 680px;
  margin-inline: auto
}

.price-meta i {
  color: var(--orange);
  margin-inline-end: .3rem
}

.contact-wrap {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 2.2rem;
  align-items: stretch
}

.contact-info {
  position: relative;
  border-radius: 22px;
  padding: 2.6rem 2.3rem;
  overflow: hidden;
  background: linear-gradient(160deg, #1E2A44, #101828);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0 30%, transparent 30%);
}

.contact-info .section-head h2 {
  color: #fff
}

.contact-info .section-head p {
  color: rgba(255, 255, 255, .7)
}

.contact-info .section-head {
  margin-bottom: 1.8rem
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.05rem
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem
}

.ci-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 87, 34, .16);
  border: 1px solid rgba(255, 87, 34, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.15rem;
}

.contact-list div {
  display: flex;
  flex-direction: column
}

.contact-list strong {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6)
}

.contact-list span,
.contact-list a {
  font-size: .98rem;
  color: #fff;
  font-weight: 600
}

.contact-list a {
  transition: color .25s
}

.contact-list a:hover {
  color: #FF8A50
}

.contact-social {
  display: flex;
  gap: .7rem;
  margin-top: 2rem
}

.contact-social a,
.f-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.05rem;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.contact-social a:hover,
.f-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px)
}

.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-sm);
}

.quote-form h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.01em
}

.qf-note {
  margin: .35rem 0 1.5rem;
  color: var(--text-muted);
  font-size: .9rem
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.05rem
}

.field label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text);
  transition: border-color .3s, box-shadow .3s, background .3s;
}

.field textarea {
  resize: vertical;
  min-height: 108px
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--orange-soft);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%), linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-inline-end: 2.4rem
}

.field ::placeholder {
  color: var(--text-muted);
  opacity: .7
}

.form-success {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: 12px;
  background: rgba(46, 196, 120, .12);
  border: 1px solid rgba(46, 196, 120, .4);
  color: #2AA867;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.form-success i {
  font-size: 1.2rem
}

.form-success[hidden] {
  display: none
}

.footer {
  background: linear-gradient(180deg, #0E1726, #0B1220);
  color: rgba(255, 255, 255, .72);
  padding: 70px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.6rem;
  padding-bottom: 3rem
}

.f-brand p {
  margin-top: 1rem;
  max-width: 300px;
  font-size: .95rem
}

.f-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.4rem
}

.f-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .07)
}

.f-col h4 {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .6rem
}

.f-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange)
}

.f-col ul li {
  margin-bottom: .7rem
}

.f-col ul a {
  transition: color .25s, padding-inline-start .25s
}

.f-col ul a:hover {
  color: var(--orange);
  padding-inline-start: .45rem
}

.f-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .93rem;
  line-height: 1.55
}

.f-contact i {
  color: var(--orange);
  margin-top: .22rem
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .88rem;
}

.f-links {
  display: flex;
  gap: 1.4rem
}

.f-links a {
  transition: color .25s
}

.f-links a:hover {
  color: var(--orange)
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2, .7, .3, 1), transform .8s cubic-bezier(.2, .7, .3, 1)
}

.reveal.in-view {
  opacity: 1;
  transform: none
}

.reveal.reveal-l {
  transform: translateX(-44px)
}

.reveal.reveal-r {
  transform: translateX(44px)
}

.reveal.reveal-l.in-view,
.reveal.reveal-r.in-view {
  transform: none
}

.spinner-border {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.93)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes glowPulse {
  from {
    opacity: .35
  }

  to {
    opacity: .6
  }
}

@media (max-width:1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .price-card.featured {
    transform: none
  }

  .price-card.featured:hover {
    transform: translateY(-8px)
  }

  .contact-wrap {
    grid-template-columns: 1fr
  }
}

@media (max-width:1024px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .navbar.scrolled {
    height: var(--nav-h)
  }

  .navbar:not(.auth-navbar) .nav-actions #theme-toggle,
  .navbar:not(.auth-navbar) .nav-actions #rtlToggle,
  .navbar:not(.auth-navbar) .nav-actions .nav-auth {
    display: none !important;
  }

  .auth-navbar .nav-actions,
  body.auth-page .nav-actions {
    display: flex !important;
    align-items: center !important;
  }

  .auth-navbar .nav-actions #theme-toggle,
  .auth-navbar .nav-actions #rtlToggle,
  body.auth-page .navbar .nav-actions #theme-toggle,
  body.auth-page .navbar .nav-actions #rtlToggle,
  body.auth-page #theme-toggle,
  body.auth-page #rtlToggle,
  body:has(.auth-page-bg) .navbar .nav-actions #theme-toggle,
  body:has(.auth-page-bg) .navbar .nav-actions #rtlToggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (min-width:1025px) {
  .hamburger {
    display: none
  }

  .nav-links {
    display: block
  }
}

@media (min-width:1025px) and (max-width:1200px) {
  .nav-list {
    gap: 0.85rem;
  }

  .nav-link {
    font-size: 0.88rem;
    padding: .35rem 0;
  }

  .nav-actions {
    gap: .4rem;
  }

  .btn-auth {
    height: 38px;
    padding: 0 .85rem;
    font-size: 0.82rem;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }
}

/* Auth Navbar Minimal Header - Logo placed in corner */
.auth-navbar .nav-links,
.auth-navbar .hamburger,
.auth-navbar .nav-quote,
.auth-navbar .nav-auth {
  display: none !important;
}

.auth-navbar .container,
.auth-navbar .nav-wrap,
.auth-nav-wrap,
body.auth-page .navbar .container,
body.auth-page .navbar .nav-wrap,
body:has(.auth-page-bg) .navbar .container,
body:has(.auth-page-bg) .navbar .nav-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

.auth-navbar .brand,
body.auth-page .navbar .brand {
  flex-shrink: 0 !important;
}

.auth-navbar .nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: .55rem !important;
  flex-shrink: 0 !important;
}

.auth-navbar .nav-actions #theme-toggle,
.auth-navbar .nav-actions #rtlToggle,
body.auth-page #theme-toggle,
body.auth-page #rtlToggle {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.drawer-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: 1.1rem;
}

.drawer-controls .icon-btn {
  width: 100%;
  height: 42px;
  border-radius: 12px;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 700;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0 .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.drawer-controls .icon-btn:hover,
.drawer-controls .icon-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.drawer-controls .icon-btn i {
  font-size: 1.15rem
}

.drawer-auth {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.drawer-auth .btn-auth {
  width: 100%;
  height: 42px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 0 .75rem !important;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}

.drawer-auth .btn-auth i {
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.drawer-auth .btn-auth span {
  line-height: 1;
  display: inline-block;
}

.drawer-auth .btn-auth-login {
  background: var(--surface);
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: 0 2px 8px rgba(255, 87, 34, .12);
  transition: all .25s ease;
}

.drawer-auth .btn-auth-login i {
  color: var(--orange) !important;
  transition: color .25s ease;
}

.drawer-auth .btn-auth-login:hover,
.drawer-auth .btn-auth-login:active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px var(--orange-glow);
  transform: translateY(-1px);
}

.drawer-auth .btn-auth-login:hover i,
.drawer-auth .btn-auth-login:active i {
  color: #fff !important;
}

.drawer-auth .btn-auth-signup {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 14px var(--orange-glow);
  transition: all .25s ease;
}

.drawer-auth .btn-auth-signup i {
  color: #fff !important;
  transition: color .25s ease;
}

.drawer-auth .btn-auth-signup:hover,
.drawer-auth .btn-auth-signup:active {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  box-shadow: 0 6px 18px var(--orange-glow);
  transform: translateY(-1px);
}

.drawer-auth .btn-auth-signup:hover i,
.drawer-auth .btn-auth-signup:active i {
  color: #fff !important;
}

/* Drawer Dropdown */
.drawer-dropdown {
  border-bottom: 1px solid var(--border)
}

.drawer-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem .2rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .25s;
}

.drawer-dropdown-btn span {
  display: inline-flex;
  align-items: center;
  gap: .7rem
}

.drawer-dropdown-btn span i {
  color: var(--orange);
  font-size: 1.1rem
}

.drawer-dropdown-btn .drawer-caret {
  font-size: .82rem;
  color: var(--text-muted);
  transition: transform .3s ease, color .25s
}

.drawer-dropdown-btn.open .drawer-caret {
  transform: rotate(180deg);
  color: var(--orange)
}

.drawer-dropdown-btn:hover {
  color: var(--orange)
}

.drawer-submenu {
  display: none;
  flex-direction: column;
  padding: .3rem .5rem .5rem 1.2rem;
  background: var(--surface-2);
  border-radius: 12px;
  margin-bottom: .75rem;
  gap: .25rem;
}

.drawer-submenu.show {
  display: flex
}

.drawer-sublink {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .65rem !important;
  font-size: .95rem !important;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: all .2s ease;
}

.drawer-sublink i {
  color: var(--orange);
  font-size: 1rem
}

.drawer-sublink:hover,
.drawer-sublink.active {
  color: var(--orange);
  background: rgba(255, 87, 34, .08)
}

@media (max-width:992px) {
  .section {
    padding: 75px 0
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem
  }

  .hero {
    padding-top: calc(var(--nav-h) + 32px)
  }

  .hero-visual {
    position: relative;
    height: 380px;
    max-width: 540px;
    margin-inline: auto;
    width: 100%;
  }

  .shot {
    position: absolute
  }

  .shot-lg {
    width: 80%;
    height: 86%;
    top: 0;
    inset-inline-end: 0
  }

  .shot-sm {
    width: 48%;
    height: 44%;
    bottom: 0;
    inset-inline-start: -4px;
    border-width: 4px
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1rem
  }

  .hero-stats .stat:nth-child(2n+1) {
    border-inline-start: 0;
    padding-inline-start: 0
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem
  }

  .about-media {
    max-width: 100%;
    margin-inline: auto;
    width: 100%
  }

  .am-main {
    height: 380px;
    width: 100%
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto
  }

  .price-card.featured {
    transform: none
  }

  .price-card.featured:hover {
    transform: translateY(-6px)
  }

  .process {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 1.2rem
  }

  .proc-arrow {
    display: none
  }

  .t-slider {
    padding-inline: 44px
  }

  .t-card {
    padding: 2.4rem 2rem 2.2rem
  }
}

@media (max-width:640px) {
  .section {
    padding: 55px 0
  }

  .container {
    width: min(100% - 32px, 1200px)
  }

  .hero {
    padding-top: calc(var(--nav-h) + 20px);
    padding-bottom: 32px
  }

  .hero-eyebrow {
    font-size: .76rem;
    padding: .45rem .85rem;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35
  }

  .hero-title {
    font-size: clamp(1.85rem, 6.2vw, 2.5rem);
    margin-top: .9rem
  }

  .hero-sub {
    font-size: 1rem;
    margin-top: .9rem;
    line-height: 1.6
  }

  .hero-ticks {
    gap: .6rem 1.2rem;
    margin-top: 1.2rem
  }

  .hero-ticks span {
    font-size: .88rem
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    gap: .75rem;
    margin-top: 1.5rem;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: .92rem 1.4rem;
    font-size: .98rem;
    box-sizing: border-box;
  }

  .hero-visual {
    height: 285px;
    max-width: 100%
  }

  .shot {
    border-radius: 16px
  }

  .shot-tag {
    font-size: .72rem;
    padding: .38rem .75rem;
    top: 12px;
    inset-inline-start: 12px
  }

  .hero-stats-bar {
    margin-top: 32px;
    padding: 1.6rem 0 1.8rem
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem .75rem
  }

  .stat-num {
    font-size: 1.85rem
  }

  .stat-label {
    font-size: .8rem
  }

  .services-grid,
  .gallery-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem
  }

  .about-media {
    min-height: 0;
    max-width: 100%
  }

  .am-main {
    height: 280px;
    border-radius: 18px
  }

  .am-swatches {
    bottom: 14px;
    inset-inline-start: 14px;
    gap: .4rem
  }

  .am-swatches i {
    width: 24px;
    height: 24px
  }

  .checklist {
    margin: 1.3rem 0 1.6rem;
    gap: .75rem
  }

  .checklist li {
    font-size: .92rem
  }

  .cmp {
    aspect-ratio: 4/3;
    border-radius: 16px;
    min-height: 0
  }

  .cmp-handle::after {
    width: 44px;
    height: 44px
  }

  .cmp-handle i {
    font-size: 1.1rem
  }

  .cmp-tag {
    font-size: .68rem;
    padding: .35rem .75rem;
    top: 12px
  }

  .tag-before {
    inset-inline-start: 12px
  }

  .tag-after {
    inset-inline-end: 12px
  }

  .cmp-caption {
    font-size: .84rem
  }

  .t-slider {
    padding-inline: 0
  }

  .t-card {
    padding: 2rem 1.25rem 1.75rem;
    border-radius: 18px
  }

  .t-quote-mark {
    font-size: 5rem;
    top: -10px;
    inset-inline-start: 12px
  }

  .t-text {
    font-size: 1rem;
    line-height: 1.65;
    margin: .85rem auto 1.35rem
  }

  .t-person {
    flex-direction: column;
    text-align: center;
    gap: .6rem
  }

  .t-person div {
    text-align: center
  }

  .t-avatar {
    width: 52px;
    height: 52px
  }

  .t-nav {
    display: none
  }

  .t-dots {
    margin-top: 1.2rem
  }

  .process {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.6rem 1.2rem
  }

  .proc-step {
    padding: 0
  }

  .proc-num {
    width: 44px;
    height: 44px;
    font-size: .95rem
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .contact-info,
  .quote-form {
    padding: 2rem 1.4rem
  }

  .reveal.reveal-l,
  .reveal.reveal-r {
    transform: translateY(20px)
  }
}

@media (max-width:460px) {
  .hero {
    padding-top: calc(var(--nav-h) + 16px)
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.2rem)
  }

  .hero-cta {
    flex-direction: column;
    width: 100%
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center
  }

  .hero-visual {
    height: 235px
  }

  .stat-num {
    font-size: 1.75rem
  }

  .stat-label {
    font-size: .78rem
  }

  .hero-stats {
    gap: 1.1rem .5rem
  }

  .about-cta {
    flex-direction: column;
    width: 100%;
    gap: .85rem
  }

  .about-cta .btn,
  .about-cta .btn-call {
    width: 100%;
    justify-content: center
  }

  .am-main {
    height: 225px
  }

  .filter-btn {
    font-size: .82rem;
    padding: .48rem .95rem
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem
  }

  .footer-bottom {
    flex-direction: column;
    gap: .8rem;
    text-align: center;
    justify-content: center
  }
}

/* =========================================================
   AUTH MODAL (LOGIN & SIGNUP)
   ========================================================= */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(6, 10, 18, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.auth-modal.show {
  opacity: 1;
  visibility: visible
}

.auth-modal-dialog {
  position: relative;
  width: min(470px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(6, 10, 18, .4);
  padding: 2.2rem 2rem;
  transform: translateY(24px) scale(.96);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1);
  max-height: 92vh;
  overflow-y: auto;
}

.auth-modal.show .auth-modal-dialog {
  transform: translateY(0) scale(1)
}

.auth-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 1.1rem;
  transition: all .25s ease;
}

.auth-modal-close:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange)
}

.auth-header {
  text-align: center;
  margin-bottom: 1.6rem
}

.auth-header .brand {
  margin-bottom: .8rem
}

.auth-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text)
}

.auth-header p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: .25rem
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
  background: var(--surface-2);
  padding: .35rem;
  border-radius: 14px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--border);
}

.auth-tab-btn {
  padding: .65rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-muted);
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}

.auth-tab-btn.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px var(--orange-glow);
}

.auth-role-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.2rem;
}

.auth-role-btn {
  padding: .6rem .5rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  transition: all .2s;
}

.auth-role-btn.active {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange);
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: .9rem
}

.auth-form.active {
  display: flex
}

.auth-form .field {
  margin-bottom: 0
}

.auth-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

.auth-extra a {
  color: var(--orange);
  font-weight: 600
}

.auth-extra a:hover {
  text-decoration: underline
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer
}

.auth-check input {
  accent-color: var(--orange);
  cursor: pointer
}

.auth-footer-text {
  margin-top: 1.2rem;
  text-align: center;
  font-size: .84rem;
  color: var(--text-muted);
}

.auth-footer-text button {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline
}

/* =========================================================
   PAGE HERO (FOR SUB-PAGES)
   ========================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, #17233D 0%, #101828 50%, #0C141F 100%);
  padding: calc(var(--nav-h) + 60px) 0 64px;
  text-align: center;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 820px
}

.page-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-top: .8rem;
}

.page-hero-sub {
  margin: 1.1rem auto 0;
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  max-width: 640px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .07);
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: #fff;
  transition: color .2s
}

.breadcrumb a:hover {
  color: var(--orange)
}

.breadcrumb i {
  font-size: .7rem;
  opacity: .7
}

/* =========================================================
   CALCULATOR PAGE STYLES
   ========================================================= */
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2.4rem;
  align-items: start;
}

.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
}

.calc-summary {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: var(--shadow);
}

.preset-wrap {
  margin-bottom: 1.5rem
}

.preset-label {
  font-size: .86rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .55rem;
  display: block
}

.preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem
}

.preset-chip {
  padding: .5rem .95rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all .25s ease;
}

.preset-chip:hover {
  border-color: var(--orange);
  color: var(--orange)
}

.preset-chip.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px var(--orange-glow);
}

.calc-res-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  margin-bottom: 1.6rem;
  text-align: center;
}

.calc-total-label {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted)
}

.calc-total-amt {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  margin: .35rem 0 .25rem;
}

.calc-range-note {
  font-size: .84rem;
  color: var(--text-muted)
}

.calc-breakdown {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .92rem
}

.calc-row span:first-child {
  color: var(--text-muted)
}

.calc-row span:last-child {
  font-weight: 700;
  color: var(--text)
}

/* =========================================================
   FAQ ACCORDION STYLES
   ========================================================= */
.faq-wrap {
  max-width: 840px;
  margin-inline: auto
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .9rem
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item.active {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(16, 24, 40, .06)
}

.faq-trigger {
  width: 100%;
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  text-align: start;
  cursor: pointer;
}

.faq-trigger i {
  font-size: 1.1rem;
  color: var(--orange);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg)
}

.faq-body {
  display: none;
  padding: 0 1.6rem 1.4rem;
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.65;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
  display: block;
  border-top-color: var(--border);
  padding-top: 1rem
}

/* =========================================================
   VALUES, TEAM & COMMERCIAL MATRIX STYLES
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: all .3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.val-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.value-card p {
  color: var(--text-muted);
  font-size: .92rem
}

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

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding: 1.8rem 1.4rem;
  transition: all .3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, #243247, #101828);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  border: 3px solid var(--orange);
}

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text)
}

.team-role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: .2rem
}

.team-exp {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .4rem
}

@media (max-width:960px) {
  .calc-grid {
    grid-template-columns: 1fr
  }

  .values-grid {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:600px) {

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr
  }

  .calc-card,
  .calc-summary {
    padding: 1.6rem
  }
}

/* =========================================================
   STANDALONE AUTH PAGES (LOGIN & SIGNUP)
   ========================================================= */
.auth-page-section,
.auth-page-bg {
  min-height: calc(100vh - var(--nav-h) - 60px);
  padding: calc(var(--nav-h) + 40px) 1.25rem 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 12%, rgba(255, 87, 34, .09), transparent 60%);
}

.max-w-lg {
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
}

.form-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: box-shadow .3s ease, border-color .3s ease;
}

.form-card:hover {
  border-color: rgba(255, 87, 34, .3);
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all .25s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--orange-soft);
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper .form-input {
  padding-inline-end: 2.85rem;
}

.password-toggle {
  position: absolute;
  inset-inline-end: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color .2s ease;
}

.password-toggle:hover {
  color: var(--orange);
}

.form-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
  border-radius: 4px;
}

.btn-login,
.btn-signup {
  width: 100%;
  height: 48px;
  background: var(--orange);
  color: #fff;
  border: 1.5px solid var(--orange);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all .3s ease;
  box-shadow: 0 8px 22px var(--orange-glow);
}

.btn-login:hover,
.btn-signup:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--orange-glow);
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-social {
  flex: 1;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}

.btn-social:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange);
  transform: translateY(-2px);
}

.link-brown {
  color: var(--orange);
  text-decoration: none;
  transition: color .2s ease;
}

.link-brown:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* Auth utilities */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.flex-row {
  flex-direction: row;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

.px-4 {
  padding-inline: 1rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.hidden {
  display: none !important;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.text-xs {
  font-size: 0.78rem;
}

.text-sm {
  font-size: 0.88rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 800;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.select-none {
  user-select: none;
}

.cursor-pointer {
  cursor: pointer;
}

.text-red-500 {
  color: #EF4444;
}

/* Auth Pages — Mobile Fixed / Non-Scrollable App-like Experience */
@media (max-width: 768px) {

  html.auth-page-html,
  html:has(body.auth-page) {
    height: 100% !important;
    overflow: hidden !important;
  }

  body.auth-page,
  body:has(.auth-page-bg) {
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    position: fixed !important;
    inset: 0 !important;
  }

  /* Auth navbar — same height & logo size as all other pages */
  body.auth-page .navbar,
  body:has(.auth-page-bg) .navbar,
  .auth-navbar {
    height: var(--nav-h) !important;
    position: relative !important;
    flex-shrink: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }

  /* Auth navbar — full width so logo is placed in the corner */
  body.auth-page .navbar .container,
  body:has(.auth-page-bg) .navbar .container,
  .auth-navbar .container,
  body.auth-page .nav-wrap,
  body:has(.auth-page-bg) .nav-wrap,
  .auth-navbar .nav-wrap,
  .auth-nav-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: 100% !important;
    padding: 0 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }

  /* Logo icon — same 42px as all other navbars */
  .auth-navbar .brand-icon,
  body.auth-page .brand-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.25rem !important;
    border-radius: 12px !important;
  }

  /* Logo text — same weight & size as all other navbars */
  .auth-navbar .brand-text,
  body.auth-page .navbar .brand-text {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
  }

  .auth-navbar .brand,
  body.auth-page .brand {
    gap: 0.75rem !important;
    flex-shrink: 0 !important;
  }

  .auth-navbar .brand-sub {
    display: none !important;
  }

  .auth-navbar .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    flex-shrink: 0 !important;
  }

  .auth-navbar .nav-actions #theme-toggle,
  .auth-navbar .nav-actions #rtlToggle,
  body.auth-page #theme-toggle,
  body.auth-page #rtlToggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 1.15rem !important;
    border-radius: 11px !important;
    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    color: #fff !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.dark .auth-navbar .nav-actions #theme-toggle,
  body.dark .auth-navbar .nav-actions #rtlToggle,
  body.dark.auth-page #theme-toggle,
  body.dark.auth-page #rtlToggle {
    background: rgba(255, 255, 255, .07) !important;
    border-color: rgba(255, 255, 255, .15) !important;
    color: #fff !important;
  }

  /* Content area fills remaining viewport after navbar */
  body.auth-page .auth-page-bg,
  body:has(.auth-page-bg) .auth-page-bg {
    flex: 1 !important;
    min-height: 0 !important;
    height: calc(100dvh - var(--nav-h)) !important;
    max-height: calc(100dvh - var(--nav-h)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    padding: 0.6rem 0.9rem 0.6rem !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  body.auth-page .max-w-lg,
  body:has(.auth-page-bg) .max-w-lg {
    max-width: 420px !important;
    width: 100% !important;
    margin: auto !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
  }

  /* Title section — compact but readable */
  body.auth-page .text-center.mb-8,
  body:has(.auth-page-bg) .text-center.mb-8 {
    margin-bottom: 0.65rem !important;
  }

  body.auth-page .text-center.mb-8 h2,
  body:has(.auth-page-bg) .text-center.mb-8 h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.18rem !important;
    line-height: 1.2 !important;
  }

  body.auth-page .text-center.mb-8 p,
  body:has(.auth-page-bg) .text-center.mb-8 p {
    font-size: 0.82rem !important;
    margin-top: 0.1rem !important;
    line-height: 1.3 !important;
  }

  /* Form card — full natural padding, not squeezed */
  body.auth-page .form-card,
  body:has(.auth-page-bg) .form-card {
    padding: 1.2rem 1.1rem !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    margin-bottom: 0 !important;
  }

  /* Natural-sized form elements */
  body.auth-page .form-label,
  body:has(.auth-page-bg) .form-label {
    font-size: 0.8rem !important;
    margin-bottom: 0.22rem !important;
    line-height: 1.2 !important;
  }

  body.auth-page .form-input,
  body:has(.auth-page-bg) .form-input {
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 0.85rem !important;
    font-size: 0.88rem !important;
    border-radius: 10px !important;
  }

  body.auth-page .password-toggle,
  body:has(.auth-page-bg) .password-toggle {
    font-size: 1rem !important;
    height: 40px !important;
  }

  /* Spacing between form groups */
  body.auth-page .mb-4,
  body:has(.auth-page-bg) .mb-4 {
    margin-bottom: 0.65rem !important;
  }

  body.auth-page .mb-5,
  body:has(.auth-page-bg) .mb-5 {
    margin-bottom: 0.75rem !important;
  }

  body.auth-page .mb-6,
  body:has(.auth-page-bg) .mb-6 {
    margin-bottom: 0.65rem !important;
  }

  body.auth-page .form-checkbox,
  body:has(.auth-page-bg) .form-checkbox {
    width: 14px !important;
    height: 14px !important;
    margin-top: 1px !important;
  }

  body.auth-page .btn-login,
  body.auth-page .btn-signup,
  body:has(.auth-page-bg) .btn-login,
  body:has(.auth-page-bg) .btn-signup {
    height: 42px !important;
    font-size: 0.92rem !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    border: 2px solid var(--orange) !important;
  }

  body.auth-page .divider,
  body:has(.auth-page-bg) .divider {
    margin: 0.65rem 0 !important;
    font-size: 0.73rem !important;
  }

  body.auth-page .btn-social,
  body:has(.auth-page-bg) .btn-social {
    height: 38px !important;
    font-size: 0.8rem !important;
    gap: 0.35rem !important;
    border-radius: 10px !important;
    padding: 0 0.7rem !important;
  }

  body.auth-page .btn-social svg,
  body:has(.auth-page-bg) .btn-social svg {
    width: 15px !important;
    height: 15px !important;
  }

  body.auth-page .btn-social i,
  body:has(.auth-page-bg) .btn-social i {
    font-size: 1rem !important;
  }

  body.auth-page .mt-5,
  body.auth-page .mt-6,
  body:has(.auth-page-bg) .mt-5,
  body:has(.auth-page-bg) .mt-6 {
    margin-top: 0.65rem !important;
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }

  body.auth-page .mt-3,
  body:has(.auth-page-bg) .mt-3 {
    margin-top: 0.45rem !important;
    font-size: 0.77rem !important;
  }

  /* Fallback: Landscape orientation or small physical height — allow scroll */
  @media (max-height: 520px) {

    html.auth-page-html,
    html:has(body.auth-page) {
      height: auto !important;
      overflow-y: auto !important;
    }

    body.auth-page,
    body:has(.auth-page-bg) {
      position: relative !important;
      height: auto !important;
      min-height: 100vh !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch;
    }

    body.auth-page .auth-page-bg,
    body:has(.auth-page-bg) .auth-page-bg {
      height: auto !important;
      max-height: none !important;
      overflow-y: visible !important;
      padding: 1rem 0.85rem !important;
      align-items: flex-start !important;
    }

    body.auth-page .max-w-lg,
    body:has(.auth-page-bg) .max-w-lg {
      height: auto !important;
      max-height: none !important;
      margin: 0 auto !important;
    }
  }
}

/* Legacy auth-card-standalone compatibility */
.auth-card-standalone {
  width: min(490px, 100%);
  margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 26px;
  padding: 2.8rem 2.4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.auth-card-standalone .auth-header {
  margin-bottom: 1.8rem;
  text-align: center;
}

.auth-card-standalone .auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.auth-switch-note {
  text-align: center;
  font-size: .92rem;
  color: var(--text-muted);
  margin-top: 1.6rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.auth-switch-note a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  margin-inline-start: .35rem;
}

.auth-switch-note a:hover {
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.3rem 0;
  color: var(--text-muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-social-btn {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
  transition: all .25s ease;
}

.auth-social-btn:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange);
}

/* =========================================================
   CALL TO ACTION (CTA) BANNER SECTION
   ========================================================= */
.cta-section {
  padding: 90px 0
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, #182642 0%, #101828 50%, #090F1C 100%);
  border: 1px solid rgba(255, 87, 34, .35);
  box-shadow: 0 24px 60px rgba(8, 14, 24, .35);
  padding: 4.2rem 3rem;
  color: #fff;
  text-align: center;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .45;
  pointer-events: none;
}

.cta-glow-1 {
  width: 380px;
  height: 380px;
  top: -120px;
  inset-inline-end: -80px;
  background: radial-gradient(circle, #FF5722 0%, transparent 70%);
}

.cta-glow-2 {
  width: 360px;
  height: 360px;
  bottom: -140px;
  inset-inline-start: -80px;
  background: radial-gradient(circle, rgba(50, 140, 170, .5) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 87, 34, .14);
  border: 1px solid rgba(255, 87, 34, .4);
  color: #FFC9B5;
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: 1.4rem;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
}

.cta-desc {
  margin-top: 1.2rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  max-width: 640px;
  margin-inline: auto;
}

.cta-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.2rem;
  margin-top: 1.8rem;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.cta-pill i {
  color: var(--orange)
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

.cta-hotline {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
  transition: color .2s;
}

.cta-phone-link:hover {
  color: #fff
}

/* =========================================================
   HOME 2 — SHOT RATING & TAG DARK
   ========================================================= */
.shot-rating {
  position: absolute;
  bottom: 16px;
  inset-inline-end: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .5rem .95rem;
  border-radius: 999px;
  background: rgba(42, 168, 103, .92);
  color: #fff;
  box-shadow: 0 8px 18px rgba(6, 10, 18, .35);
}

.tag-dark {
  background: rgba(16, 24, 40, .85) !important
}

@media (max-width:992px) {
  .cta-section {
    padding: 75px 0
  }

  .cta-banner {
    padding: 3.4rem 2.2rem
  }
}

@media (max-width:640px) {
  .cta-section {
    padding: 50px 0
  }

  .cta-banner {
    padding: 2.4rem 1.25rem;
    border-radius: 20px
  }

  .cta-btn-group {
    flex-direction: column;
    width: 100%
  }

  .cta-btn-group .btn {
    width: 100%;
    justify-content: center
  }

  .cta-hotline {
    flex-direction: column;
    gap: .35rem;
    text-align: center
  }

  .cta-highlights {
    flex-direction: column;
    align-items: center;
    gap: .6rem
  }
}

/* =========================================================
   HOME 2 — COMPLETELY NEW DESIGN SYSTEM
   Distinct sections: immersive hero, logo marquee, feature
   grid, bento showcase, journey timeline, team grid,
   split CTA with quote form.
   ========================================================= */

.h2-section {
  position: relative;
  overflow: hidden
}

.h2-section-dark {
  background: linear-gradient(180deg, #0B1220, #101828)
}

.h2-section-tint {
  background: var(--surface-2)
}

.h2-head {
  max-width: 680px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.4rem);
  text-align: center
}

.h2-head.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.1rem;
  max-width: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange)
}

.h2-head.kicker::before,
.h2-head.kicker::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px
}

.h2-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .5rem
}

.h2-head p {
  margin-top: .9rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7
}

.h2-head p.text-light {
  color: rgba(255, 255, 255, .72)
}

/* ---------- 1. IMMERSIVE HERO ---------- */
.h2-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 78% 12%, rgba(255, 138, 80, .22), transparent 55%),
    radial-gradient(ellipse 55% 55% at 12% 88%, rgba(60, 140, 165, .24), transparent 55%),
    linear-gradient(162deg, #182742 0%, #101828 46%, #080E19 100%);
}

.h2-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 15%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 20%, #000 15%, transparent 72%);
}

.h2-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  pointer-events: none
}

.h2-hero-orb-1 {
  width: 520px;
  height: 520px;
  top: -160px;
  inset-inline-end: -120px;
  background: radial-gradient(circle, #FF5722, transparent 68%);
  animation: h2Glow 9s ease-in-out infinite alternate
}

.h2-hero-orb-2 {
  width: 460px;
  height: 460px;
  bottom: -200px;
  inset-inline-start: -140px;
  background: radial-gradient(circle, #3E8BA6, transparent 70%);
  animation: h2Glow 11s 1.5s ease-in-out infinite alternate
}

.h2-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  width: min(1200px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 70px;
}

.h2-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #FFC9B5;
  font-weight: 600;
  font-size: .84rem;
  backdrop-filter: blur(6px);
  animation: h2FadeUp .8s .05s ease both;
}

.h2-hero-chip i {
  color: #FF8A50
}

.h2-hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 1.3rem 0 1.2rem;
  animation: h2FadeUp .8s .15s ease both;
}

.h2-hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .55);
}

.h2-hero h1 .stroke.accent-line {
  -webkit-text-stroke-color: #FF8A50
}

.h2-hero p.lead-in {
  max-width: 540px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.12rem;
  line-height: 1.75;
  animation: h2FadeUp .8s .25s ease both;
}

.h2-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  animation: h2FadeUp .8s .35s ease both
}

.h2-hero-card {
  position: relative;
  animation: h2FloatIn 1s .3s ease both;
}

.h2-hero-visual {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 40px 90px rgba(4, 8, 16, .55);
}

.h2-hero-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block
}

.h2-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 20, .55), transparent 40%)
}

.h2-visual-tag {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 87, 34, .92);
  color: #fff;
}


/* hero bottom ticker */
.h2-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.05rem 0;
  white-space: nowrap;
}

.h2-ticker-track {
  display: inline-flex;
  gap: 2.6rem;
  animation: h2Scroll 30s linear infinite;
  will-change: transform
}

.h2-ticker span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
  font-size: .95rem
}

.h2-ticker i {
  color: #FF8A50
}

/* ---------- 2. CLIENT LOGO MARQUEE ---------- */
.h2-logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent)
}

.h2-logo-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: h2Scroll 38s linear infinite;
  will-change: transform
}

.h2-logo-track:hover {
  animation-play-state: paused
}

.h2-logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 1.02rem;
  color: var(--text);
  white-space: nowrap;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.h2-logo i {
  font-size: 1.35rem;
  color: var(--orange)
}

.h2-logo small {
  font-weight: 600;
  color: var(--text-muted);
  font-size: .8rem
}

.h2-logo:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

/* ---------- 3. FEATURE ICON GRID ---------- */
.h2-features {
  padding: 104px 0
}

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

.h2-feat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.4rem 2rem;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.h2-feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #FF8A50);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease
}

.h2-feat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .25)
}

.h2-feat-card:hover::before {
  transform: scaleX(1)
}

.h2-feat-num {
  position: absolute;
  top: 1.3rem;
  inset-inline-end: 1.5rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--border)
}

.h2-feat-ico {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  box-shadow: 0 12px 26px var(--orange-glow);
  transition: transform .35s;
}

.h2-feat-ico.one {
  background: linear-gradient(135deg, #FF5722, #FF8A50)
}

.h2-feat-ico.two {
  background: linear-gradient(135deg, #2B6F87, #71C9DE)
}

.h2-feat-ico.thr {
  background: linear-gradient(135deg, #2AA867, #5BD08B)
}

.h2-feat-ico.fou {
  background: linear-gradient(135deg, #6C4BD5, #9B7BF5)
}

.h2-feat-ico.fiv {
  background: linear-gradient(135deg, #E44715, #FF7A45)
}

.h2-feat-ico.six {
  background: linear-gradient(135deg, #101828, #34456B)
}

.h2-feat-card:hover .h2-feat-ico {
  transform: scale(1.08) rotate(-6deg)
}

.h2-feat-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -.01em
}

.h2-feat-card p {
  margin-top: .6rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.65
}

.h2-feat-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.2rem;
  color: var(--orange);
  font-weight: 700;
  font-size: .92rem
}

.h2-feat-link i {
  transition: transform .3s
}

.h2-feat-link:hover i {
  transform: translateX(5px)
}

/* ---------- 4. BENTO SHOWCASE ---------- */
.h2-bento {
  padding: 104px 0
}

.h2-bento-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 1.4rem;
}

.h2-bento-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border)
}

.h2-bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .8, .3, 1)
}

.h2-bento-item:hover img {
  transform: scale(1.06)
}

.h2-bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 20, .88), transparent 55%)
}

.h2-bento-info {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.5rem;
  z-index: 2;
  color: #fff
}

.h2-bento-cat {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FF8A50;
  background: rgba(16, 24, 40, .7);
  padding: .28rem .7rem;
  border-radius: 6px;
  display: inline-block;
  backdrop-filter: blur(6px)
}

.h2-bento-info h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  margin-top: .6rem
}

.h2-bento-big {
  grid-row: span 2
}

.h2-bento-big .h2-bento-info {
  padding: 2rem
}

/* ---------- 5. JOURNEY TIMELINE ---------- */
.h2-journey {
  padding: 104px 0
}

.h2-journey .h2-head {
  margin-bottom: clamp(2.6rem, 5vw, 4rem)
}

.h2-timeline {
  position: relative;
  max-width: 1060px;
  margin-inline: auto
}

.h2-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--orange), rgba(255, 138, 80, .25));
  border-radius: 3px
}

.h2-milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem;
  padding: 1.2rem 0;
  align-items: center
}

.h2-milestone-dot {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--orange);
  box-shadow: 0 0 0 8px var(--orange-soft);
  transition: transform .35s ease, box-shadow .35s ease
}

.h2-milestone:hover .h2-milestone-dot {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 10px rgba(255, 87, 34, .28), 0 10px 24px rgba(255, 87, 34, .3)
}

.h2-milestone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s
}

.h2-milestone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.h2-milestone-item:nth-child(odd) .h2-milestone-card {
  grid-column: 1;
  text-align: end;
  margin-inline-end: 1.4rem
}

.h2-milestone-item:nth-child(even) .h2-milestone-card {
  grid-column: 2;
  text-align: start;
  margin-inline-start: 1.4rem
}

.h2-milestone-card h4 {
  font-size: 1.1rem;
  font-weight: 700
}

.h2-milestone-card p {
  margin-top: .5rem;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.6
}

.h2-milestone-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem
}

.h2-milestone-tag i {
  font-size: .9rem
}

/* ---------- 6. TEAM GRID ---------- */
.h2-team {
  padding: 104px 0;
  color: #fff
}

.h2-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem
}

.h2-member {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 1.8rem 1.4rem;
  background: linear-gradient(160deg, #182642 0%, #101828 60%, #0A0F1A 100%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 18px 45px rgba(4, 8, 16, .45);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .4s cubic-bezier(.2, .8, .3, 1), border-color .35s, box-shadow .4s;
}

.h2-member::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #FF8A50);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
}

.h2-member:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 87, 34, .45);
  box-shadow: 0 24px 60px rgba(255, 87, 34, .18), 0 20px 45px rgba(4, 8, 16, .6);
}

.h2-member:hover::before {
  transform: scaleX(1)
}

.h2-member-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.h2-member-exp {
  color: rgba(255, 255, 255, .65);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.h2-member-cert {
  color: #FF8A50;
  background: rgba(255, 87, 34, .14);
  border: 1px solid rgba(255, 87, 34, .3);
  padding: .25rem .55rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.h2-member-avatar-wrap {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  padding: 4px;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  box-shadow: 0 12px 28px var(--orange-glow);
}

.h2-member-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #101828;
}

.h2-status-dot {
  position: absolute;
  bottom: 4px;
  inset-inline-end: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2AA867;
  border: 2.5px solid #101828;
  box-shadow: 0 0 8px rgba(42, 168, 103, .8);
}

.h2-member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%
}

.h2-member-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0
}

.h2-member-role {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #FF8A50;
  margin-top: .35rem;
  line-height: 1.3;
}

.h2-member-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  margin: 1rem 0 .9rem;
}

.h2-member-tags span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: .22rem .55rem;
  border-radius: 6px;
}

.h2-member-bio {
  font-size: .85rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.h2-member-social {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: auto
}

.h2-member-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .85);
  font-size: .92rem;
  transition: all .25s;
}

.h2-member-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- 7. COMMERCIAL CASE REVIEWS ---------- */
.h2-reviews {
  padding: 104px 0
}

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

.h2-rev-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.3rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}

.h2-rev-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .3);
}

.h2-rev-scope {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-soft);
  padding: .3rem .75rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.h2-rev-stars {
  color: var(--orange);
  font-size: .95rem;
  margin-bottom: .9rem;
  display: flex;
  gap: .25rem
}

.h2-rev-quote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 1.5rem;
  flex: 1;
}

.h2-rev-client {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border)
}

.h2-rev-avatar {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 18px var(--orange-glow);
}

.h2-rev-client strong {
  display: block;
  font-size: .96rem;
  line-height: 1.3;
  color: var(--text)
}

.h2-rev-client span {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .15rem
}

/* ---------- 8. TURNKEY CONSULTATION CTA BANNER ---------- */
.h2-cta {
  padding: 100px 0
}

.h2-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, #182642 0%, #101828 50%, #090F1C 100%);
  border: 1px solid rgba(255, 87, 34, .35);
  box-shadow: 0 24px 60px rgba(8, 14, 24, .35);
  padding: 4.2rem 3.2rem;
  color: #fff;
  text-align: center;
}

.h2-cta-banner::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 160px;
  background: radial-gradient(ellipse at 50% 120%, rgba(255, 87, 34, .32), transparent 70%);
  pointer-events: none;
}

.h2-cta-banner .kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 87, 34, .14);
  border: 1px solid rgba(255, 87, 34, .4);
  color: #FFC9B5;
  font-weight: 700;
  font-size: .82rem;
  margin-bottom: 1.4rem;
}

.h2-cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 820px;
  margin-inline: auto;
}

.h2-cta-banner p {
  margin-top: 1.1rem;
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  max-width: 640px;
  margin-inline: auto;
}

.h2-cta-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem 1.4rem;
  margin: 1.8rem 0;
}

.h2-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.h2-cta-pill i {
  color: var(--orange)
}

.h2-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.h2-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.h2-cta-links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
  font-weight: 600;
  transition: color .25s;
}

.h2-cta-links a:hover {
  color: var(--orange)
}

/* ---------- 6B. CREW — simple compact ---------- */
.h2-crew {
  padding: 96px 0
}

.h2-crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1080px;
  margin-inline: auto
}

.h2-crew-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.2rem 1.8rem;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}

.h2-crew-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #FF8A50);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease;
}

.h2-crew-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .35);
}

.h2-crew-card:hover::before {
  transform: scaleX(1)
}

.h2-crew-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.15rem;
  animation: h2Float 5s ease-in-out infinite;
}

.h2-crew-card:nth-child(2) .h2-crew-photo-wrap {
  animation-delay: .7s
}

.h2-crew-card:nth-child(3) .h2-crew-photo-wrap {
  animation-delay: 1.4s
}

.h2-crew-card:nth-child(4) .h2-crew-photo-wrap {
  animation-delay: 2.1s
}

.h2-crew-photo {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  padding: 3px;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  box-shadow: 0 10px 24px var(--orange-glow);
}

.h2-crew-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--surface);
  transition: transform .45s ease;
}

.h2-crew-card:hover .h2-crew-photo img {
  transform: scale(1.12)
}

.h2-crew-photo-wrap .h2-status-dot {
  position: absolute;
  bottom: 3px;
  inset-inline-end: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2AA867;
  border: 3px solid var(--surface);
  box-shadow: 0 0 10px rgba(42, 168, 103, .85);
  z-index: 3;
}

.h2-crew-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin: 0
}

.h2-crew-role {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: .4rem;
}

.h2-crew-cred {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  font-weight: 700;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-top: .85rem;
}

.h2-crew-cred i {
  color: var(--orange)
}

.h2-crew-card:nth-child(2) {
  transition-delay: .1s
}

.h2-crew-card:nth-child(3) {
  transition-delay: .2s
}

.h2-crew-card:nth-child(4) {
  transition-delay: .3s
}

/* ---------- 7B. CLIENT WORDS — simple ---------- */
.h2-client {
  padding: 96px 0
}

.h2-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1100px;
  margin-inline: auto
}

.h2-client-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.2, .8, .3, 1), box-shadow .4s cubic-bezier(.2, .8, .3, 1), border-color .35s ease;
  overflow: hidden;
}

.h2-client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 88% 12%, rgba(255, 87, 34, .14) 0%, transparent 62%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.h2-client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 87, 34, .45);
  box-shadow: 0 22px 46px -12px rgba(255, 87, 34, .18), 0 12px 28px -6px rgba(0, 0, 0, .08);
}

.h2-client-card:hover::before {
  opacity: 1
}

.h2-client-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1
}



.h2-client-card:hover {
  color: var(--orange);
  border-color: rgba(255, 87, 34, .32);
  background: var(--orange-soft);
}

.h2-client-card:hover {
  transform: scale(1.15)
}

.h2-client-qmark {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
}

.h2-client-card:hover .h2-client-qmark {
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  color: #fff;
  transform: translateY(-3px) rotate(8deg) scale(1.1);
  box-shadow: 0 8px 20px var(--orange-glow);
}

.h2-client-stars {
  color: var(--orange);
  font-size: .92rem;
  display: flex;
  gap: .25rem;
  margin-bottom: .95rem;
  transition: transform .3s ease;
  position: relative;
  z-index: 1;
}

.h2-client-card:hover .h2-client-stars {
  transform: translateX(3px)
}

.h2-client-quote {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 1.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.h2-client-foot {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.h2-client-ava {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  color: #fff;
  display: inline-block;
  box-shadow: 0 4px 14px var(--orange-glow);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
}

.h2-client-card:hover .h2-client-ava {
  transform: scale(1.08);
  box-shadow: 0 0 0 4px var(--orange-soft), 0 10px 22px var(--orange-glow);
}

.h2-client-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--surface);
}

.h2-client-verified {
  color: #2AA867;
  font-size: .88rem;
  margin-inline-start: .2rem;
  display: inline-block;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.h2-client-card:hover .h2-client-verified {
  transform: scale(1.25)
}

.h2-client-foot strong {
  display: block;
  font-size: .95rem;
  line-height: 1.3;
  color: var(--text)
}

.h2-client-foot span {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .12rem
}

.h2-client-card:nth-child(2) {
  transition-delay: .08s
}

.h2-client-card:nth-child(3) {
  transition-delay: .16s
}

/* ---------- 8B. SIMPLE CTA ---------- */
.h2-mini {
  padding: 96px 0
}

.h2-mini-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, #182642, #101828 55%, #0B1220);
  border: 1px solid rgba(255, 87, 34, .35);
  box-shadow: 0 24px 60px rgba(8, 14, 24, .35);
  padding: 3.6rem 2.4rem;
  text-align: center;
  color: #fff
}

.h2-mini-box::before {
  content: "";
  position: absolute;
  inset-inline: -30%;
  top: -80px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(255, 87, 34, .42), transparent 60%);
  pointer-events: none;
  animation: h2Drift 9s ease-in-out infinite alternate
}

.h2-mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FF8A50
}

.h2-mini-title {
  position: relative;
  max-width: 680px;
  margin: 1rem auto 0;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: #fff
}

.h2-mini-sub {
  position: relative;
  max-width: 520px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  line-height: 1.7
}

.h2-mini-actions {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.1rem
}

.h2-mini-actions .btn-orange {
  animation: h2Pulse 2.6s ease-in-out infinite
}

.h2-mini-phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-weight: 700;
  transition: color .25s
}

.h2-mini-phone i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 87, 34, .16);
  border: 1px solid rgba(255, 87, 34, .4);
  color: #FF8A50
}

.h2-mini-phone:hover {
  color: #FF8A50
}

.h2-mini-phone:hover i {
  background: var(--orange);
  color: #fff
}

.h2-mini-trust {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.2rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.h2-mini-trust span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85)
}

.h2-mini-trust i {
  color: var(--orange)
}

@keyframes h2Drift {
  from {
    transform: translateX(-6%) scale(.95)
  }

  to {
    transform: translateX(6%) scale(1.1)
  }
}

@keyframes h2Float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

@keyframes h2Pulse {

  0%,
  100% {
    box-shadow: 0 8px 24px var(--orange-glow)
  }

  50% {
    box-shadow: 0 10px 36px rgba(255, 87, 34, .55)
  }
}

/* Reveal helpers for new sections */
.h2-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s cubic-bezier(.2, .7, .3, 1), transform .85s cubic-bezier(.2, .7, .3, 1)
}

.h2-reveal.in-view {
  opacity: 1;
  transform: none
}

.h2-reveal.d-l {
  transform: translateX(-46px)
}

.h2-reveal.d-r {
  transform: translateX(46px)
}

.h2-reveal.d-l.in-view,
.h2-reveal.d-r.in-view {
  transform: none
}

@keyframes h2FadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes h2FloatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(.96)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes h2Scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes h2Glow {
  from {
    opacity: .32
  }

  to {
    opacity: .6
  }
}

/* shared scroll-observe (main.js handles .h2-reveal) */
@media (prefers-reduced-motion:reduce) {

  .h2-ticker-track,
  .h2-logo-track {
    animation: none
  }

  .h2-hero-orbs,
  .h2-hero-grid {
    animation: none
  }
}

/* ---------- HOME 2 responsive ---------- */
@media (max-width:992px) {
  .h2-hero-inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    padding-top: calc(var(--nav-h) + 30px)
  }

  .h2-hero-visual img {
    height: 380px
  }

  .h2-float-card--top {
    top: -18px;
    inset-inline-end: 12px
  }

  .h2-float-card--bottom {
    bottom: -22px;
    inset-inline-start: 12px
  }

  .h2-features,
  .h2-bento,
  .h2-journey,
  .h2-team,
  .h2-reviews,
  .h2-cta,
  .h2-crew,
  .h2-client,
  .h2-mini {
    padding: 76px 0
  }

  .h2-feat-grid {
    grid-template-columns: 1fr 1fr
  }

  .h2-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none
  }

  .h2-bento-big {
    grid-row: span 1
  }

  .h2-team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem
  }

  .h2-crew-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
    max-width: 680px;
    margin-inline: auto
  }

  .h2-reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    max-width: 620px;
    margin-inline: auto
  }

  .h2-client-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 620px;
    margin-inline: auto
  }

  .h2-mini-box {
    padding: 3rem 2rem
  }

  .h2-timeline::before {
    inset-inline-start: 20px;
    transform: none
  }

  .h2-milestone {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-inline-start: 64px
  }

  .h2-milestone-dot {
    inset-inline-start: 20px;
    transform: translateX(-50%);
    width: 46px;
    height: 46px
  }

  .h2-milestone-item:nth-child(odd) .h2-milestone-card,
  .h2-milestone-item:nth-child(even) .h2-milestone-card {
    grid-column: 1;
    text-align: start;
    margin-inline: 0
  }

  .h2-cta-banner {
    padding: 3.2rem 2.2rem
  }
}

@media (max-width:640px) {
  .h2-hero {
    min-height: auto
  }

  .h2-hero-inner {
    padding-top: calc(var(--nav-h) + 20px);
    gap: 2.6rem
  }

  .h2-hero-visual img {
    height: 290px
  }

  .h2-hero-note {
    flex-wrap: wrap
  }

  .h2-clients {
    padding: 44px 0 48px
  }

  .h2-features,
  .h2-bento,
  .h2-journey,
  .h2-team,
  .h2-reviews,
  .h2-cta,
  .h2-crew,
  .h2-client,
  .h2-mini {
    padding: 58px 0
  }

  .h2-feat-grid {
    grid-template-columns: 1fr
  }

  .h2-bento-grid {
    grid-template-columns: 1fr
  }

  .h2-bento-item {
    min-height: 210px
  }

  .h2-team-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem
  }

  .h2-member {
    padding: 1.6rem 1.2rem
  }

  .h2-reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem
  }

  .h2-rev-card {
    padding: 1.8rem 1.4rem
  }

  .h2-crew-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }

  .h2-crew-card {
    padding: 1.5rem .9rem
  }

  .h2-crew-photo-wrap {
    width: 84px;
    height: 84px;
    margin-bottom: .9rem
  }

  .h2-crew-photo {
    width: 84px;
    height: 84px
  }

  .h2-client-card {
    padding: 1.8rem 1.4rem
  }

  .h2-mini-box {
    padding: 2.4rem 1.4rem;
    border-radius: 20px
  }

  .h2-mini-actions {
    flex-direction: column;
    gap: 1rem
  }

  .h2-hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    gap: .75rem;
  }

  .h2-hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: .92rem 1.4rem;
    font-size: .98rem;
    box-sizing: border-box
  }

  .h2-cta-banner {
    padding: 2.6rem 1.4rem;
    border-radius: 20px
  }

  .h2-cta-pills {
    flex-direction: column;
    align-items: center;
    gap: .6rem
  }

  .h2-cta-btns {
    flex-direction: column;
    width: 100%
  }

  .h2-cta-btns .btn {
    width: 100%;
    justify-content: center
  }

  .h2-cta-links {
    flex-direction: column;
    align-items: center;
    gap: .75rem
  }

  .h2-reveal.d-l,
  .h2-reveal.d-r {
    transform: translateY(24px)
  }
}

@media (max-width:460px) {
  .h2-crew-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto
  }

  .h2-cta-banner h2 {
    font-size: 1.8rem
  }
}

/* =========================================================
   ABOUT PAGE — NEW PROFESSIONAL DESIGN
   Sections: immersive hero, journey story, milestone numbers
   band, core specialties, principles, certifications,
   leadership team, and consultation CTA.
   ========================================================= */

.ab-section {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.ab-section-dark {
  background: linear-gradient(180deg, #0B1220, #101828)
}

.ab-section-tint {
  background: var(--surface-2)
}

.ab-head {
  max-width: 660px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
  text-align: center
}

.ab-head .eyebrow {
  margin-bottom: 0
}

.ab-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .5rem
}

.ab-head p {
  margin-top: .9rem;
  color: var(--text-muted);
  font-size: 1.05rem
}

/* ---------- 1. ABOUT HERO ---------- */
.ab-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-color: #0B1220;
  background-image:
    linear-gradient(180deg, rgba(14, 23, 42, 0.45) 0%, rgba(10, 16, 28, 0.72) 100%),
    url('../images/about-painting.jpg');
  background-image:
    linear-gradient(180deg, rgba(14, 23, 42, 0.45) 0%, rgba(10, 16, 28, 0.72) 100%),
    url('../images/aboutbg.avif');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: calc(var(--nav-h) + 68px) 1.5rem 96px;
}

.ab-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  width: 100%
}

.ab-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem
}

/* ---------- 2. JOURNEY / STORY ---------- */
.ab-journey {
  padding: 104px 0
}

.ab-journey-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 3.4rem;
  align-items: center
}

.ab-media {
  position: relative
}

.ab-media-main {
  position: relative;
  height: 470px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg)
}

.ab-media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ab-media-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 20, .55), transparent 40%)
}

.ab-media-badge {
  position: absolute;
  z-index: 2;
  bottom: -24px;
  inset-inline-start: 24px;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(150deg, #1E2A44, #101828);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(4, 8, 16, .4);
}

.ab-media-badge .mb-ico {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem
}

.ab-media-badge strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25
}

.ab-media-badge span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .72);
  font-weight: 600
}

.ab-media-tag {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 87, 34, .92);
  color: #fff
}

.ab-story h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.ab-story .lead {
  margin-top: 1.1rem
}

.ab-story .para {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.7
}

/* ---------- 2B. MILESTONE TIMELINE (vertical alternating) ---------- */
.tml {
  padding: 96px 0
}

.tml-head {
  max-width: 640px;
  margin: 0 auto 3.8rem;
  text-align: center
}

.tml-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.tml-head>p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.7
}

.tml-wrap {
  position: relative;
  max-width: 1060px;
  margin-inline: auto
}

.tml-line {
  position: absolute;
  z-index: 1;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 138, 80, .22));
}

.tml-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  z-index: 2
}

.tml-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7.2rem;
  align-items: center;
}

.tml-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 3.5px solid var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 87, 34, .14), 0 8px 22px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  transition: transform .35s ease, box-shadow .35s ease;
}

.tml-item:hover .tml-dot {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 10px rgba(255, 87, 34, .25), 0 12px 28px rgba(255, 87, 34, .3);
}

.tml-item.right .tml-card,
.tml-item:nth-child(odd) .tml-card {
  grid-column: 2;
  text-align: start;
  margin-inline-start: 1.6rem;
}

.tml-item.left .tml-card,
.tml-item:nth-child(even) .tml-card {
  grid-column: 1;
  text-align: start;
  margin-inline-end: 1.6rem;
}

.tml-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}

.tml-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF8A50);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.tml-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .3);
}

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

.tml-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text)
}

.tml-card p {
  margin-top: .55rem;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65
}

/* ---------- 3. NUMBERS BAND ---------- */
.ab-numbers {
  padding: 84px 0;
  color: #fff
}

.ab-num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1060px;
  margin-inline: auto
}

.ab-num-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .35s, background .35s, border-color .35s
}

.ab-num-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 87, 34, .5)
}

.ab-num-item .ni-ico {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, #FF5722, #FF8A50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 24px var(--orange-glow)
}

.ab-num-item .ni-ico.alt {
  background: linear-gradient(135deg, #2B6F87, #71C9DE)
}

.ab-num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(92deg, #FF8A50, #FF5722);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent
}

.ab-num-item .ni-label {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  max-width: 180px
}

/* ---------- 4. CORE SPECIALTIES ---------- */
.ab-core {
  padding: 104px 0
}

.ab-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.ab-core-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.1rem 1.7rem;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  display: flex;
  flex-direction: column
}

.ab-core-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #FF8A50);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s
}

.ab-core-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .25)
}

.ab-core-card:hover::before {
  transform: scaleX(1)
}

.ab-core-top {
  display: flex;
  align-items: center;
  gap: 1rem
}

.ab-core-ico {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem
}

.ab-core-top h3 {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25
}

.ab-core-top small {
  font-size: .76rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .05em
}

.ab-core-card p {
  margin-top: 1.1rem;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.65;
  flex: 1
}

.ab-core-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border)
}

.ab-guarantee {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-muted)
}

.ab-guarantee i {
  color: #2AA867
}

.ab-core-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-weight: 700;
  font-size: .88rem
}

.ab-core-link i {
  transition: transform .3s
}

.ab-core-link:hover i {
  transform: translateX(4px)
}

/* ---------- 5. PRINCIPLES ---------- */
.ab-principles {
  padding: 104px 0
}

.ab-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.ab-principle {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem 1.7rem;
  transition: transform .35s, box-shadow .35s
}

.ab-principle:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.ab-p-num {
  position: absolute;
  top: 1.3rem;
  inset-inline-end: 1.4rem;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--border);
  transition: color .3s
}

.ab-principle:hover .ab-p-num {
  color: var(--orange-soft)
}

.ab-p-ico {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.15rem
}

.ab-p-ico.green {
  background: rgba(42, 168, 103, .12);
  color: #2AA867
}

.ab-p-ico.blue {
  background: var(--cyan-soft);
  color: #2B6F87
}

.ab-p-ico.purple {
  background: rgba(108, 75, 213, .12);
  color: #6C4BD5
}

.ab-principle h3 {
  font-size: 1.15rem;
  font-weight: 700
}

.ab-principle p {
  margin-top: .55rem;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.65
}

/* ---------- 6. CERTIFICATIONS ---------- */
.ab-cert {
  padding: 90px 0
}

.ab-cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem
}

.ab-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.ab-badge .bd-ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}

.ab-badge strong {
  display: block;
  font-size: .95rem;
  line-height: 1.2
}

.ab-badge span {
  font-size: .76rem;
  color: var(--text-muted);
  font-weight: 600
}

/* ---------- 7. LEADERSHIP TEAM (horizontal profile cards) ---------- */
.ab-team {
  padding: 104px 0
}

.ab-team .ab-head>p {
  max-width: 560px;
  margin-inline: auto
}

.ab-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1060px;
  margin: 0 auto
}

.ab-member {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}

.ab-member::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF8A50);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease;
}

.ab-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .35);
}

.ab-member:hover::after {
  transform: scaleX(1)
}

.ab-member-photo {
  flex: none;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  padding: 3px;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  box-shadow: 0 8px 22px var(--orange-glow);
}

.ab-member-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2.5px solid var(--surface);
  transition: transform .4s ease;
}

.ab-member:hover .ab-member-photo img {
  transform: scale(1.08)
}

.ab-member-info {
  flex: 1;
  min-width: 0
}

.ab-member-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2
}

.ab-member-role {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: .35rem
}

.ab-member-bio {
  margin-top: .65rem;
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.6
}

.ab-member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .85rem
}

.ab-member-tags span {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .28rem .68rem;
  letter-spacing: .02em
}

.ab-member-social {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.05rem
}

.ab-member-social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .9rem;
  transition: all .25s
}

.ab-member-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

/* ---------- 8. CONSULTATION CTA ---------- */
.ab-cta {
  padding: 96px 0
}

.ab-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, #182642 0%, #101828 50%, #090F1C 100%);
  border: 1px solid rgba(255, 87, 34, .35);
  box-shadow: 0 24px 60px rgba(8, 14, 24, .35);
  padding: 3.6rem 3rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.4rem;
  align-items: center
}

.ab-cta-banner::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -40px;
  height: 140px;
  background: radial-gradient(ellipse at 20% 120%, rgba(255, 87, 34, .28), transparent 65%);
  pointer-events: none
}

.ab-cta-copy {
  position: relative;
  z-index: 1
}

.ab-cta-banner .kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FF8A50
}

.ab-cta-banner h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: .8rem 0 1rem
}

.ab-cta-banner p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 520px
}

.ab-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start
}

.ab-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem
}

.ab-cta-phone .ring {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px var(--orange-glow)
}

.ab-cta-phone small {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
  letter-spacing: .06em
}

.ab-cta-phone:hover .ring {
  background: var(--orange-dark)
}

/* ---------- ABOUT responsive ---------- */
@media (max-width:1080px) {
  .tml {
    padding: 76px 0
  }

  .ab-core-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ab-principles-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ab-team-grid {
    gap: 1.1rem
  }

  .ab-member {
    padding: 1.6rem;
    gap: 1.1rem
  }

  .ab-member-photo {
    width: 96px;
    height: 96px
  }
}

@media (max-width:992px) {
  .ab-journey {
    padding: 76px 0
  }

  .tml {
    padding: 68px 0
  }

  .ab-core,
  .ab-principles,
  .ab-team,
  .ab-cta {
    padding: 76px 0
  }

  .ab-journey-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem
  }

  .ab-media-main {
    height: 380px
  }

  .ab-num-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ab-num {
    font-size: 2.2rem
  }

  .ab-cta-banner {
    grid-template-columns: 1fr;
    padding: 2.8rem 2.2rem
  }
}

@media (max-width:768px) {
  .tml-line {
    left: 36px;
    transform: none
  }

  .tml-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 82px;
    gap: 0
  }

  .tml-dot {
    left: 36px;
    top: 28px;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    font-size: .86rem;
    box-shadow: 0 0 0 6px rgba(255, 87, 34, .14)
  }

  .tml-item:hover .tml-dot {
    transform: translateX(-50%) scale(1.06)
  }

  .tml-item.right .tml-card,
  .tml-item.left .tml-card,
  .tml-item:nth-child(odd) .tml-card,
  .tml-item:nth-child(even) .tml-card {
    width: 100%;
    text-align: start;
    grid-column: 1;
    margin-inline: 0;
  }
}

@media (max-width:640px) {
  .ab-hero {
    padding: calc(var(--nav-h) + 34px) 1.25rem 60px
  }

  .ab-hero-inner {
    width: 100%;
    max-width: 100%
  }

  .ab-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
    gap: .75rem;
    margin-top: 1.6rem;
  }

  .ab-hero-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: .92rem 1.4rem;
    font-size: .98rem;
    box-sizing: border-box;
  }

  .ab-hero-watermark {
    top: calc(var(--nav-h) + 14px)
  }

  .ab-chips {
    gap: .6rem;
    margin-top: 1.8rem
  }

  .ab-chip {
    font-size: .8rem;
    padding: .5rem .95rem
  }

  .ab-journey {
    padding: 58px 0
  }

  .tml {
    padding: 52px 0
  }

  .tml-head {
    margin-bottom: 2.5rem
  }

  .tml-card {
    padding: 1.4rem 1.3rem
  }

  .tml-card h4 {
    font-size: 1.05rem
  }

  .tml-card p {
    font-size: .88rem
  }

  .ab-core,
  .ab-principles,
  .ab-team,
  .ab-cta {
    padding: 58px 0
  }

  .ab-media-main {
    height: 280px
  }

  .ab-media-badge {
    bottom: -20px;
    inset-inline-start: 14px;
    padding: .85rem 1.1rem;
    gap: .8rem
  }

  .ab-media-badge .mb-ico {
    width: 40px;
    height: 40px;
    font-size: 1.1rem
  }

  .ab-core-grid,
  .ab-principles-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem
  }

  .ab-num-grid {
    gap: 1rem
  }

  .ab-num-item {
    padding: 1.4rem .8rem
  }

  .ab-num {
    font-size: 2rem
  }

  .ab-team-grid {
    grid-template-columns: 1fr
  }

  .ab-member {
    padding: 1.5rem;
    gap: 1.1rem
  }

  .ab-member-photo {
    width: 90px;
    height: 90px
  }

  .ab-member-tags span {
    font-size: .66rem;
    padding: .26rem .6rem
  }

  .ab-badge {
    width: 100%;
    justify-content: flex-start
  }

  .ab-cta-banner {
    padding: 2.2rem 1.4rem;
    border-radius: 20px
  }

  .ab-cta-actions {
    width: 100%
  }

  .ab-cta-actions .btn {
    width: 100%
  }
}

@media (max-width:460px) {
  .ab-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem
  }

  .ab-member-tags {
    justify-content: center
  }

  .ab-member-social {
    justify-content: center
  }

  .ab-member-photo {
    width: 84px;
    height: 84px
  }

  .ab-member-bio {
    font-size: .84rem
  }

  .ab-chips {
    flex-direction: column;
    align-items: center
  }

  .ab-num-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* ============================================================
   SERVICES PAGE  (.sv-*)  —  crafted from scratch
   ============================================================ */

/* ---------- shared section head ---------- */
.sv-head {
  max-width: 640px;
  margin: 0 auto 3.2rem;
  text-align: center
}

.sv-head .sv-eyebrow {
  margin-inline: auto
}

.sv-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .4rem;
  color: var(--text)
}

.sv-head>p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.7
}

.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  border: 1px solid rgba(255, 87, 34, .25);
  padding: .45rem 1rem;
  border-radius: 999px
}

/* ---------- 1. HERO ---------- */
.sv-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--nav-h) + 70px) 0 96px;
  background-color: #0B1220;
  background-image:
    linear-gradient(160deg, rgba(13, 21, 38, 0.72) 0%, rgba(16, 24, 40, 0.86) 55%, rgba(10, 15, 28, 0.94) 100%),
    url('../images/servicebg.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sv-hero .sv-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 35% 25%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 35% 25%, #000 20%, transparent 75%);
  pointer-events: none
}

.sv-hero .sv-glow {
  position: absolute;
  inset-inline-end: -150px;
  top: -130px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, .3), transparent 65%);
  pointer-events: none;
  animation: svDrift 10s ease-in-out infinite alternate
}

.sv-hero .sv-watermark {
  position: absolute;
  inset-inline-start: -8px;
  bottom: 10px;
  font-size: clamp(4rem, 10vw, 7.4rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  color: rgba(255, 255, 255, .032);
  white-space: nowrap;
  pointer-events: none;
  user-select: none
}

.sv-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 3.4rem;
  align-items: center
}

.sv-hero-left {
  z-index: 1
}

.sv-hero-left .breadcrumb {
  color: rgba(255, 255, 255, .72)
}

.sv-eyebrow.invert {
  color: #FFC9B5;
  background: rgba(255, 87, 34, .14);
  border-color: rgba(255, 87, 34, .4)
}

.sv-hero-left h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-top: 1.2rem
}

.sv-hero-left h1 .outline {
  color: var(--orange);
  -webkit-text-stroke: 0
}

.sv-hero-sub {
  max-width: 540px;
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
  line-height: 1.75
}

.sv-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem
}

.sv-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 1.6rem;
  margin-top: 2.3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.sv-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .88)
}

.sv-hero-trust i {
  color: var(--orange);
  font-size: 1.05rem
}

/* hero right — service stack card */
.sv-hero-visual {
  position: relative;
  z-index: 1
}

.sv-float-badge {
  position: absolute;
  top: -20px;
  inset-inline-end: -8px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(4, 8, 16, .45);
  animation: svFloat 4.5s ease-in-out infinite
}

.sv-float-badge b {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1
}

.sv-float-badge span {
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3
}

.sv-stack {
  position: relative;
  border-radius: 26px;
  padding: 1.3rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px rgba(3, 7, 15, .5)
}

.sv-stack-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  margin-top: .8rem;
  transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
  text-decoration: none;
  color: inherit
}

.sv-stack-item:first-child {
  margin-top: 0
}

.sv-stack-item:hover {
  transform: translateX(-6px);
  background: rgba(255, 87, 34, .14);
  border-color: rgba(255, 87, 34, .45);
  box-shadow: 0 8px 24px rgba(255, 87, 34, .2)
}

.sv-stack-ico {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF5722, #FF8A50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff
}

.sv-stack-info {
  flex: 1;
  min-width: 0
}

.sv-stack-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff
}

.sv-stack-info span {
  display: block;
  font-size: .76rem;
  color: rgba(255, 255, 255, .62);
  font-weight: 600;
  margin-top: .15rem
}

.sv-stack-tag {
  flex: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #FF8A50;
  background: rgba(255, 87, 34, .14);
  border: 1px solid rgba(255, 87, 34, .35);
  padding: .3rem .6rem;
  border-radius: 6px
}

/* ---------- 2. SERVICES GRID ---------- */
.sv-lines {
  padding: 104px 0
}

.sv-lines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem
}

.sv-line-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0 0 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.sv-line-card::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange), #FF8A50);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 3;
}

.sv-line-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .3)
}

.sv-line-card:hover::before {
  opacity: 1
}

.sv-line-media {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
}

.sv-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

.sv-line-card:hover .sv-line-media img {
  transform: scale(1.06)
}

.sv-line-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 16, 28, .6) 100%);
  pointer-events: none;
}

.sv-line-media .sv-line-num {
  position: absolute;
  top: .9rem;
  inset-inline-end: 1.2rem;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .5);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
  transition: color .3s ease, transform .35s ease;
  z-index: 2;
  user-select: none;
}

.sv-line-card:hover .sv-line-num {
  color: rgba(255, 87, 34, .8);
  -webkit-text-stroke-color: #FF8A50;
  transform: translateY(-3px);
}

.sv-line-body {
  padding: 1.7rem 2rem 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sv-line-head {
  display: flex;
  align-items: center;
  gap: 1.1rem
}

.sv-line-ico {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem
}

.sv-line-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.01em
}

.sv-line-head small {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .25rem
}

.sv-line-body>p {
  margin-top: 1.1rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.68;
  flex: 1
}

.sv-line-feats {
  display: grid;
  gap: .55rem;
  margin-top: 1.25rem
}

.sv-line-feats li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500
}

.sv-line-feats i {
  color: var(--orange);
  margin-top: .18rem
}

.sv-line-foot {
  margin-top: 1.7rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap
}

.sv-line-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  padding: .45rem .9rem;
  border-radius: 999px
}

.sv-line-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 800;
  font-size: .9rem;
  color: var(--orange)
}

.sv-line-link i {
  transition: transform .25s
}

.sv-line-link:hover i {
  transform: translateX(4px)
}

/* ---------- 3. PROCESS (HOW WE DELIVER) ---------- */
.sv-process {
  padding: 104px 0;
  color: #fff;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 87, 34, .12), transparent 60%), linear-gradient(180deg, #090F1B 0%, #0F1728 50%, #0B1220 100%);
  position: relative;
  overflow: hidden;
}

.sv-process .sv-head h2 {
  color: #fff
}

.sv-process .sv-head>p {
  color: rgba(255, 255, 255, .75)
}

.sv-timeline-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto
}

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

.sv-steps-flow::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 87, 34, .3) 50%, var(--orange));
  z-index: 0;
  opacity: .4;
}

@media (min-width:993px) {
  .sv-step-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -1.05rem;
    top: 1.85rem;
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    z-index: 3;
    filter: drop-shadow(0 0 8px var(--orange-glow));
    pointer-events: none;
  }
}

@media (max-width:992px) {
  .sv-steps-flow::before {
    display: none
  }
}

.sv-step-card {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  padding: 1.8rem 1.4rem 1.6rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}

.sv-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 87, 34, .5);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 20px 45px rgba(255, 87, 34, .2);
}

.sv-step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
  position: relative;
  z-index: 2
}

.sv-step-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, #FF5722, #FF8A50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 8px 20px var(--orange-glow);
}

.sv-step-time {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .35rem .75rem;
  border-radius: 999px;
}

.sv-step-phase {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #FF8A50;
  text-transform: uppercase;
  margin-bottom: .4rem;
  display: block;
}

.sv-step-title-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .65rem
}

.sv-step-mini-icon {
  color: var(--orange);
  font-size: 1.1rem;
  display: flex;
  align-items: center
}

.sv-step-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.01em
}

.sv-step-card>p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin-bottom: 1.1rem
}

.sv-step-deliverables {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  gap: .55rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1rem;
}

.sv-step-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .88);
  font-weight: 600;
  line-height: 1.45;
}

.sv-step-deliverables i {
  color: #FF8A50;
  font-size: .92rem;
  margin-top: .08rem;
  flex: none
}

/* ---------- 4. SPECS / COATING SYSTEMS ---------- */
.sv-specs {
  padding: 104px 0
}

.sys-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin: 0 auto 2.8rem;
  max-width: 900px;
}

.sys-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
  box-shadow: var(--shadow-sm);
}

.sys-filter-btn i {
  color: var(--orange);
  font-size: .95rem
}

.sys-filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.sys-filter-btn.active {
  background: linear-gradient(135deg, #FF5722, #FF8A50);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px var(--orange-glow);
}

.sys-filter-btn.active i {
  color: #fff
}

.sv-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  max-width: 1160px;
  margin-inline: auto;
}

.sv-specs-grid.single-mode {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.sv-spec {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, opacity .3s ease;
  display: flex;
  flex-direction: column;
}

.sv-spec.hide {
  display: none !important
}

.sv-spec:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 87, 34, .35);
  box-shadow: var(--shadow-lg);
}

.sv-spec-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem
}

.sv-spec-tagline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .3rem;
}

.sv-spec-name {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.015em;
  line-height: 1.2
}

.sv-spec-chem {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: .3rem
}

.sv-spec-top .war {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  padding: .45rem .85rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px var(--orange-glow);
}

.sys-substrates {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.4rem
}

.sub-pill {
  font-size: .74rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: .25rem .65rem;
  border-radius: 8px;
}

.sv-meters {
  display: grid;
  gap: 1.05rem;
  margin-bottom: 1.4rem
}

.sv-meter label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .45rem;
}

.sv-meter label span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--text)
}

.sv-meter label span i {
  color: var(--orange)
}

.sv-meter label b {
  font-size: .76rem;
  font-weight: 800;
  color: var(--orange);
  background: var(--orange-soft);
  padding: .2rem .55rem;
  border-radius: 6px
}

.sv-meter-track {
  height: 10px;
  border-radius: 99px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.sv-meter-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #FF5722, #FF8A50);
  box-shadow: 0 0 10px rgba(255, 87, 34, .4);
  transition: width 1.2s cubic-bezier(.2, .7, .3, 1);
}

.sv-spec:hover .sv-meter-fill {
  filter: brightness(1.15);
  box-shadow: 0 0 14px rgba(255, 87, 34, .6);
}

.sys-specs-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  padding: 1rem .8rem;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: 1.3rem;
  text-align: center;
}

.spec-col small {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: .05em
}

.spec-col strong {
  display: block;
  font-size: .84rem;
  font-weight: 800;
  color: var(--text);
  margin-top: .2rem
}

.sys-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end
}

@keyframes svSpecIn {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ---------- 5. WHY COATCRAFT ---------- */
.sv-why {
  padding: 104px 0
}

.sv-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6rem;
  align-items: center
}

.sv-why-media {
  position: relative
}

.sv-why-media .img {
  position: relative;
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.sv-why-media .img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.sv-why-media .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(10, 15, 28, .45))
}

.sv-why-badge {
  position: absolute;
  bottom: -20px;
  inset-inline-start: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: #fff;
  border-radius: 18px;
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
  animation: svFloat 5s ease-in-out infinite
}

.sv-why-badge .ring {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff
}

.sv-why-badge strong {
  display: block;
  font-size: .95rem;
  line-height: 1.2
}

.sv-why-badge span {
  display: block;
  font-size: .76rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: .12rem
}

.sv-why-title {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .4rem;
  color: var(--text)
}

.sv-why-desc {
  margin-top: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7
}

.sv-why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem
}

.sv-why-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1.1rem 1.05rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .3s, border-color .3s
}

.sv-why-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 87, 34, .3)
}

.sv-why-item i {
  flex: none;
  font-size: 1.25rem;
  color: var(--orange);
  margin-top: .1rem
}

.sv-why-item strong {
  display: block;
  font-size: .95rem;
  color: var(--text)
}

.sv-why-item span {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .2rem;
  line-height: 1.5
}

/* ---------- 6. ADD-ON SERVICES ---------- */
.sv-addons {
  padding: 96px 0
}

.sv-addons-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  max-width: 1000px;
  margin-inline: auto
}

.sv-addon {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, border-color .3s, color .3s
}

.sv-addon i {
  flex: none;
  color: var(--orange);
  font-size: 1.05rem
}

.sv-addon:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 87, 34, .45);
  color: var(--orange)
}

/* ---------- 7. CTA (booking banner) ---------- */
.sv-cta {
  padding: 96px 0
}

.sv-cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(150deg, #1A2A4A, #101828 55%, #0B1220);
  border: 1px solid rgba(255, 87, 34, .35);
  box-shadow: 0 24px 60px rgba(8, 14, 24, .35);
  padding: 3.2rem 3rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.4rem;
  align-items: center
}

.sv-cta-banner::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -70px;
  height: 210px;
  background: radial-gradient(ellipse at 88% 0, rgba(255, 87, 34, .32), transparent 65%);
  pointer-events: none
}

.sv-cta-copy {
  position: relative;
  z-index: 1
}

.sv-cta-banner .kicker {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #FF8A50
}

.sv-cta-banner h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.16;
  margin: .8rem 0 1rem;
  letter-spacing: -.02em
}

.sv-cta-banner p {
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 460px
}

.sv-cta-phone {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 1.4rem
}

.sv-cta-phone .ring {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px var(--orange-glow)
}

.sv-cta-phone small {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
  letter-spacing: .05em
}

.sv-cta-phone:hover .ring {
  background: var(--orange-dark)
}

.sv-cta-panel {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  background: linear-gradient(150deg, #FF6A35, #E44715);
  padding: 2rem 1.9rem;
  color: #fff;
  box-shadow: 0 18px 40px rgba(228, 71, 21, .35)
}

.sv-cta-panel .ap-kicker {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFE7DB
}

.sv-cta-panel .ap-price {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  font-size: 1.9rem;
  font-weight: 800;
  margin-top: .5rem;
  line-height: 1
}

.sv-cta-panel .ap-price small {
  font-size: .8rem;
  font-weight: 700;
  color: #FFE7DB
}

.sv-cta-panel hr {
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, .5);
  margin: 1.25rem 0
}

.sv-cta-panel ul {
  display: grid;
  gap: .6rem;
  font-size: .92rem;
  font-weight: 600
}

.sv-cta-panel ul i {
  margin-inline-end: .4rem
}

.sv-cta-panel .btn {
  width: 100%;
  margin-top: 1.4rem;
  background: #fff;
  color: #E44715;
  box-shadow: 0 10px 24px rgba(90, 20, 0, .3)
}

.sv-cta-panel .btn:hover {
  background: #FFF3EE
}

@keyframes svFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes svDrift {
  from {
    transform: translate(0, 0) scale(1)
  }

  to {
    transform: translate(-40px, 24px) scale(1.12)
  }
}

@keyframes svPulse {

  0%,
  100% {
    box-shadow: 0 8px 24px var(--orange-glow)
  }

  50% {
    box-shadow: 0 12px 38px rgba(255, 87, 34, .55)
  }
}

/* ---------- SERVICES responsive ---------- */
@media (max-width:1080px) {
  .sv-hero-trust {
    gap: 1rem 1.2rem
  }

  .sv-specs-grid {
    grid-template-columns: 1fr
  }

  .sv-cta-banner {
    padding: 2.8rem 2.2rem
  }
}

@media (max-width:992px) {
  .sv-hero {
    padding: calc(var(--nav-h) + 50px) 0 76px
  }

  .sv-hero-inner {
    grid-template-columns: 1fr;
    gap: 3.4rem
  }

  .sv-hero-visual {
    max-width: 560px
  }

  .sv-float-badge {
    inset-inline-end: 10px
  }

  .sv-lines,
  .sv-process,
  .sv-specs,
  .sv-why {
    padding: 76px 0
  }

  .sv-lines-grid {
    grid-template-columns: 1fr
  }

  .sv-steps-flow {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem
  }

  .sv-why-grid {
    grid-template-columns: 1fr;
    gap: 3.6rem
  }

  .sv-why-list {
    grid-template-columns: 1fr 1fr
  }

  .sv-cta-banner {
    grid-template-columns: 1fr;
    padding: 2.8rem 2rem
  }

  .sv-cta-panel {
    max-width: 520px
  }
}

@media (max-width:768px) {
  .sys-specs-strip {
    grid-template-columns: 1fr 1fr;
    gap: .8rem
  }

  .sys-filter-nav {
    gap: .45rem
  }

  .sys-filter-btn {
    padding: .5rem 1rem;
    font-size: .82rem
  }
}

@media (max-width:640px) {
  .sv-hero {
    padding: calc(var(--nav-h) + 40px) 0 60px
  }

  .sv-hero-sub {
    font-size: .98rem
  }

  .sv-hero-cta {
    flex-direction: column;
    width: 100%
  }

  .sv-hero-cta .btn {
    width: 100%;
    justify-content: center
  }

  .sv-hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: .7rem
  }

  .sv-lines,
  .sv-process,
  .sv-specs,
  .sv-why,
  .sv-addons,
  .sv-cta {
    padding: 58px 0
  }

  .sv-head {
    margin-bottom: 2.4rem
  }

  .sv-line-body {
    padding: 1.4rem 1.3rem 0
  }

  .sv-steps-flow {
    grid-template-columns: 1fr;
    gap: 1.1rem
  }

  .sv-step-card {
    padding: 1.5rem 1.2rem
  }

  .sv-spec {
    padding: 1.5rem 1.2rem
  }

  .sv-spec-top {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .sv-spec-top>div {
    width: 100%;
  }

  .sv-spec-top .war {
    align-self: flex-start;
  }

  .sv-spec-name {
    font-size: 1.24rem;
    line-height: 1.25;
  }

  .sys-specs-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 0.5rem;
    padding: 0.85rem 0.65rem;
  }

  .sys-specs-strip .spec-col {
    padding: 0.45rem 0.35rem;
    background: var(--surface);
    border-radius: 10px;
    border: 1px solid var(--border);
  }

  .sv-why-grid {
    gap: 2.8rem
  }

  .sv-why-media .img {
    height: 380px
  }

  .sv-why-badge {
    bottom: -16px;
    inset-inline-start: 14px;
    padding: .75rem 1rem
  }

  .sv-why-list {
    grid-template-columns: 1fr;
    gap: .8rem
  }

  .sv-addons-cloud {
    gap: .7rem
  }

  .sv-cta-banner {
    padding: 2.2rem 1.4rem;
    border-radius: 20px
  }

  .sv-cta-panel {
    padding: 1.7rem 1.4rem
  }
}

@media (max-width:460px) {
  .sv-float-badge {
    top: -16px;
    padding: .7rem .9rem
  }

  .sv-stack-tag {
    display: none
  }

  .sv-spec {
    padding: 1.25rem 1rem;
    border-radius: 18px;
  }

  .sv-spec-name {
    font-size: 1.15rem;
  }

  .sv-spec-chem {
    font-size: 0.78rem;
  }

  .sv-meter label {
    font-size: 0.76rem;
    gap: 0.35rem;
  }

  .sv-meter label b {
    font-size: 0.7rem;
    padding: 0.15rem 0.45rem;
    white-space: nowrap;
  }

  .sys-specs-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.4rem;
    padding: 0.75rem 0.5rem;
  }

  .sys-specs-strip .spec-col {
    padding: 0.4rem 0.25rem;
  }

  .spec-col small {
    font-size: 0.64rem;
  }

  .spec-col strong {
    font-size: 0.78rem;
  }

  .sys-foot {
    justify-content: flex-end;
  }
}

/* ============================================================
   GALLERY V2 — image-centric professional sections
   ============================================================ */
.gl-section {
  padding: 92px 0
}

.gl-section-tint {
  background: var(--tint, #F3F5F7)
}

body.dark .gl-section-tint {
  background: var(--tint, #0A0E16)
}

.gl-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem
}

.gl-head .eyebrow {
  justify-content: center
}

.gl-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.gl-head p {
  color: var(--text-muted);
  margin-top: .8rem;
  font-size: 1.02rem
}

/* 2 · Featured showcase */
.gl-show-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr;
  gap: 3.4rem;
  align-items: center
}

.gl-show-media {
  position: relative;
  padding: 0 0 2rem
}

.gl-show-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

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

.gl-show-tag {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .5rem .95rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px var(--orange-glow);
  z-index: 2
}

.gl-show-badge {
  position: absolute;
  bottom: 6px;
  inset-inline-start: 16px;
  background: #101828;
  color: #fff;
  border-radius: 16px;
  padding: .85rem 1.05rem;
  display: flex;
  gap: .65rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 2
}

.gl-show-badge b {
  font-size: 1.45rem;
  color: #FF8A50
}

.gl-show-badge span {
  font-size: .72rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .9
}

.gl-show-info h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.gl-show-info .lead {
  margin-top: .9rem
}

.gl-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0 1.7rem
}

.gl-fact {
  display: flex;
  gap: .85rem;
  align-items: center;
  background: #fff;
  border: 1px solid #E7EBF1;
  border-radius: 16px;
  padding: 1rem 1.1rem
}

body.dark .gl-fact {
  background: #0E1420;
  border-color: #1F2937
}

.gl-fact .fi-ico {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  background: rgba(255, 87, 34, .13);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.25rem
}

.gl-fact .fi-ico.alt {
  background: rgba(16, 24, 40, .08);
  color: #101828
}

body.dark .gl-fact .fi-ico.alt {
  background: rgba(255, 255, 255, .09);
  color: #fff
}

.gl-fact b {
  display: block;
  font-size: 1.06rem;
  line-height: 1.2
}

.gl-fact div span {
  font-size: .8rem;
  color: var(--text-muted)
}

/* 3 · Filterable work grid */
.gl-work {
  padding-bottom: 72px
}

.gl-filter {
  margin-bottom: 2.5rem
}

.gl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 185px;
  gap: 1.15rem
}

.g-item.gl-tile {
  aspect-ratio: auto;
  border-radius: 18px;
  overflow: hidden
}

.g-item.gl-big {
  grid-column: span 2;
  grid-row: span 2
}

.g-item.gl-wide {
  grid-column: span 2;
  grid-row: span 1
}

/* Minimal, uncluttered ribbons & overlays */
.gl-ribbon {
  position: absolute;
  top: 11px;
  inset-inline-start: 11px;
  z-index: 4;
  background: rgba(12, 18, 30, .72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .26rem .65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  transition: all .3s ease;
}

.gl-tile:hover .gl-ribbon {
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  border-color: transparent;
  box-shadow: 0 4px 14px var(--orange-glow);
}

body.dark .gl-ribbon {
  background: rgba(18, 25, 38, .78);
  border-color: rgba(255, 255, 255, .12);
}

.gl-tile .g-overlay {
  padding: .75rem .95rem;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 20, .82) 100%);
  gap: .65rem;
  align-items: flex-end;
}

.gl-tile:not(.gl-big):not(.gl-wide) .g-tag {
  display: none;
  /* Keep small images clean with minimal words */
}

.gl-tile .g-title {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

.gl-big .g-title {
  font-size: 1.24rem;
  line-height: 1.22;
  white-space: normal;
}

.gl-wide .g-title {
  font-size: 1.06rem;
  line-height: 1.25;
  white-space: normal;
}

.gl-tile .g-zoom {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  font-size: .95rem;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .25);
}

.gl-tile:hover .g-zoom {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}

.gl-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 2.4rem;
  color: var(--text-muted);
  font-size: .93rem
}

.gl-note i {
  color: var(--orange);
  font-size: 1.15rem
}

.gl-note p {
  margin: 0
}

/* 4 · Before & after band */
.gl-ba-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.6rem
}

.gl-ba-head .eyebrow {
  justify-content: center
}

.gl-ba-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.gl-ba-head p {
  color: var(--text-muted);
  margin-top: .8rem
}

.gl-ba-wrap {
  max-width: 880px;
  margin: 0 auto
}

.gl-ba-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin: 2.7rem auto 0;
  max-width: 960px
}

.gl-ba-chip {
  background: #fff;
  border: 1px solid #E7EBF1;
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  text-align: center
}

body.dark .gl-ba-chip {
  background: #0E1420;
  border-color: #1F2937
}

.gl-ba-chip .bc-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 87, 34, .13);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: .45rem
}

.gl-ba-chip b {
  font-size: 1.45rem;
  font-weight: 800
}

.gl-ba-chip span {
  font-size: .83rem;
  color: var(--text-muted)
}

/* 5 · Snap rail */
.gl-snap-head {
  margin-bottom: 2.6rem
}

.gl-snap-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.05rem
}

.gl-snap-rail {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  scrollbar-color: var(--orange) transparent;
  scrollbar-width: thin
}

.gl-snap-rail::-webkit-scrollbar {
  height: 8px
}

.gl-snap-rail::-webkit-scrollbar-track {
  background: transparent
}

.gl-snap-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 87, 34, .45);
  border-radius: 999px
}

.gl-snap-card {
  position: relative;
  flex: 0 0 240px;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease
}

.gl-snap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.gl-snap-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2, .8, .3, 1)
}

.gl-snap-card:hover img {
  transform: scale(1.08)
}

.gl-snap-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 28, 0) 35%, rgba(10, 16, 28, .87) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff
}

.gl-snap-over i {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
  font-size: .9rem;
  backdrop-filter: blur(4px)
}

.gl-snap-over b {
  font-size: 1.02rem;
  font-weight: 700
}

.gl-snap-over small {
  font-size: .78rem;
  opacity: .85
}

.gl-snap-btn {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #E3E8EE;
  background: #fff;
  color: #101828;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 6px 16px rgba(16, 24, 40, .06)
}

body.dark .gl-snap-btn {
  background: #0E1420;
  border-color: #243042;
  color: #fff
}

.gl-snap-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px)
}

/* 6 · Numbers band */
.gl-band {
  padding: 84px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed
}

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

.gl-band-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 1.9rem 1rem;
  backdrop-filter: blur(4px)
}

.gl-band-item .ni-ico {
  font-size: 1.7rem;
  color: #FF8A50;
  display: block;
  margin-bottom: .7rem
}

.gl-band-item .stat-num {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  display: block
}

.gl-band-item .ni-label {
  display: block;
  margin-top: .45rem;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem
}

/* 7 · CTA banner */
.gl-cta {
  padding-top: 64px;
  margin-top: 2.5rem
}

.gl-cta-banner {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 2rem;
  align-items: center;
  border-radius: 24px;
  padding: 3.2rem 3rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg)
}

.gl-cta-copy {
  position: relative;
  z-index: 1
}

.gl-cta-copy .kicker {
  color: #FF8A50;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.gl-cta-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin: .7rem 0 1rem
}

.gl-cta-copy p {
  color: rgba(255, 255, 255, .86);
  max-width: 520px;
  margin-bottom: 1.6rem
}

.gl-cta-stack {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(255, 87, 34, .94);
  border-radius: 18px;
  padding: 1.9rem 1.4rem;
  box-shadow: 0 12px 30px rgba(255, 87, 34, .35)
}

.gl-cta-stack .ap-kicker {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-bottom: .6rem
}

.gl-cta-stack strong {
  display: block;
  font-size: 2rem;
  margin-bottom: .2rem
}

.gl-cta-stack span {
  font-size: .85rem;
  opacity: .92
}

/* Lightbox */
.gl-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, .94);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease
}

.gl-lightbox.open {
  opacity: 1;
  visibility: visible
}

body.lb-lock {
  overflow: hidden
}

.gl-lb-stage {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  text-align: center
}

.gl-lb-stage img {
  max-width: 100%;
  max-height: 74vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  display: block;
  margin: 0 auto
}

.gl-lb-stage figcaption {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem
}

.gl-lb-stage figcaption b {
  color: #fff;
  font-size: 1.15rem
}

.gl-lb-stage figcaption span {
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em
}

.gl-lb-close {
  position: absolute;
  top: 20px;
  inset-inline-end: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 0;
  font-size: 1.2rem;
  cursor: pointer;
  transition: .25s ease;
  z-index: 5
}

.gl-lb-close:hover {
  background: var(--orange)
}

.gl-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 0;
  font-size: 1.3rem;
  cursor: pointer;
  transition: .25s ease;
  z-index: 5
}

.gl-lb-nav.prev {
  inset-inline-start: 20px
}

.gl-lb-nav.next {
  inset-inline-end: 20px
}

.gl-lb-nav:hover {
  background: var(--orange)
}

/* Gallery V2 responsive */
@media (max-width:1024px) {
  .gl-grid {
    grid-auto-rows: 150px
  }

  .gl-snap-btn {
    display: none
  }
}

@media (max-width:900px) {
  .gl-section {
    padding: 72px 0
  }

  .gl-show-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .gl-show-media {
    padding: 0 0 2.6rem
  }

  .gl-facts {
    grid-template-columns: repeat(2, 1fr)
  }

  .gl-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px
  }

  .gl-band {
    background-attachment: scroll
  }
}

@media (max-width:640px) {
  .gl-section {
    padding: 56px 0
  }

  .gl-head {
    margin-bottom: 2.2rem
  }

  .gl-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 138px;
    gap: .85rem
  }

  .g-item.gl-big {
    grid-column: span 2;
    grid-row: span 2
  }

  .g-item.gl-wide {
    grid-column: span 2;
    grid-row: span 1
  }

  .gl-ribbon {
    display: none
  }

  .gl-show-thumb {
    width: 120px
  }

  .gl-show-thumb img {
    height: 88px
  }

  .gl-show-badge {
    padding: .7rem .85rem
  }

  .gl-facts {
    grid-template-columns: 1fr;
    gap: .85rem
  }

  .gl-ba-chips {
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem
  }

  .gl-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }

  .gl-cta-banner {
    grid-template-columns: 1fr;
    padding: 2.4rem 1.5rem;
    gap: 1.6rem
  }

  .gl-lb-nav {
    width: 42px;
    height: 42px
  }

  .gl-lb-nav.prev {
    inset-inline-start: 8px
  }

  .gl-lb-nav.next {
    inset-inline-end: 8px
  }

  .gl-lb-close {
    top: 12px;
    inset-inline-end: 14px
  }
}

/* ============================================================
   PRICING — professional, image-anchored sections
   ============================================================ */
.pc-section {
  padding: 92px 0
}

.pc-section-tint {
  background: var(--tint, #F3F5F7)
}

body.dark .pc-section-tint {
  background: var(--tint, #0A0E16)
}

.pc-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem
}

.pc-head .eyebrow {
  justify-content: center
}

.pc-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.pc-head p {
  color: var(--text-muted);
  margin-top: .8rem;
  font-size: 1.02rem
}

/* 2 · Rate finder tabs */
.pc-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 2.3rem
}

.pp-tab {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .72rem 1.35rem;
  border-radius: 999px;
  border: 1px solid #E3E8EE;
  background: var(--bg, #fff);
  color: var(--text);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: all .28s cubic-bezier(.2, .7, .3, 1);
  font-family: inherit
}

body.dark .pp-tab {
  background: #0E1420;
  border-color: #243042
}

.pp-tab i {
  transition: transform .25s ease
}

.pp-tab:hover:not(.active) {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 87, 34, .08);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 87, 34, .16)
}

.pp-tab:hover i {
  transform: scale(1.18)
}

.pp-tab.active {
  background: linear-gradient(135deg, var(--orange), #FF7043);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px var(--orange-glow);
  transform: translateY(-1px)
}

.pc-panel {
  display: none;
  max-width: 880px;
  margin: 0 auto;
  animation: pcFade .35s ease
}

.pc-panel.active {
  display: block
}

@keyframes pcFade {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.pc-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  background: var(--bg, #fff);
  border: 1px solid #E7EBF1;
  border-radius: 16px;
  padding: 1.05rem 1.35rem;
  margin-bottom: .9rem;
  cursor: pointer;
  transition: all .28s cubic-bezier(.2, .7, .3, 1);
  overflow: hidden;
}

.pc-row::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity .25s ease, transform .25s ease;
}

body.dark .pc-row {
  background: #0E1420;
  border-color: #1F2937;
}

.pc-row:hover {
  border-color: rgba(255, 87, 34, .45);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 87, 34, .12), 0 3px 10px rgba(16, 24, 40, .06);
  z-index: 2;
}

.pc-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

body.dark .pc-row:hover {
  background: #121A28;
  border-color: rgba(255, 87, 34, .5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45), 0 0 16px rgba(255, 87, 34, .18);
  z-index: 2;
}

.pc-ico {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 13px;
  background: rgba(255, 87, 34, .12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: all .28s cubic-bezier(.2, .7, .3, 1);
}

.pc-row:hover .pc-ico {
  background: linear-gradient(135deg, var(--orange), #FF7043);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(255, 87, 34, .28);
}

.pc-name-wrap b {
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
  transition: color .25s ease;
}

.pc-row:hover .pc-name-wrap b {
  color: var(--orange);
}

.pc-name-wrap span {
  color: var(--text-muted);
  font-size: .85rem;
}

.pc-rate-wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: .5rem;
  text-align: end;
  white-space: nowrap;
}

.pc-rate-wrap b {
  display: inline-block;
  font-size: 1.18rem;
  color: var(--orange);
  letter-spacing: -.01em;
  transition: color .25s ease;
  white-space: nowrap;
  transform: none;
}

.pc-row:hover .pc-rate-wrap b {
  color: #E64A19;
  transform: none;
}

body.dark .pc-row:hover .pc-rate-wrap b {
  color: #FF8A50;
  transform: none;
}

.pc-rate-wrap span {
  color: var(--text-muted);
  font-size: .82rem;
  white-space: nowrap;
}

.pc-foot {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  align-items: center;
  max-width: 880px;
  margin: 1.7rem auto 0;
  color: var(--text-muted);
  font-size: .92rem;
  text-align: center
}

.pc-foot i {
  color: var(--orange);
  font-size: 1.05rem
}

/* 3 · Packages */
.pc-packages {
  padding-top: 0
}

.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
  align-items: stretch;
  padding-top: 18px
}

.pp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg, #fff);
  border: 1px solid #E7EBF1;
  border-radius: 22px;
  padding: 2.3rem 1.9rem 1.9rem;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

body.dark .pp-card {
  background: #0E1420;
  border-color: #1F2937
}

.pp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .3)
}

.pp-card.pp-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 18px 44px var(--orange-glow)
}

.pp-pop {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), #FF7043);
  color: #fff !important;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .42rem 1.25rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(255, 87, 34, .45);
  border: 2px solid #fff;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  line-height: 1
}

body.dark .pp-pop {
  border-color: #0E1420;
  box-shadow: 0 8px 24px rgba(255, 87, 34, .55)
}

html[dir="rtl"] .pp-pop {
  left: auto;
  right: 50%;
  transform: translateX(50%)
}

.pp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: 1.3rem
}

.pp-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--orange);
  background: rgba(255, 87, 34, .12);
  padding: .36rem .7rem;
  border-radius: 999px;
  white-space: nowrap
}

.pp-save {
  font-size: .72rem;
  font-weight: 700;
  color: #16A34A;
  background: rgba(22, 163, 74, .12);
  padding: .32rem .62rem;
  border-radius: 999px;
  white-space: nowrap
}

.pp-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0
}

.pp-ideal {
  color: var(--text-muted);
  font-size: .9rem;
  margin: .25rem 0 0
}

.pp-price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin: 1.4rem 0 1.2rem
}

.pp-price .pp-cur {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange)
}

.pp-price .pp-num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1
}

.pp-price .pp-per {
  color: var(--text-muted);
  font-weight: 500
}

.pp-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  flex: 1
}

.pp-feats li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.4
}

.pp-feats i {
  color: var(--orange);
  margin-top: .12rem
}

.pp-cta {
  margin-top: 1.3rem
}

.pp-guarantee {
  display: flex;
  gap: .55rem;
  align-items: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 1.3rem;
  padding-top: 1.15rem;
  border-top: 1px dashed #E2E7EE
}

.pp-guarantee i {
  color: var(--orange)
}

/* 4 · Included band */
.pc-perks {
  background: #101828;
  border-radius: 26px;
  padding: 3rem 2.4rem;
  color: #fff
}

.pc-perks-head {
  margin-bottom: 2.2rem
}

.pc-perks-head .eyebrow.invert {
  color: #FF8A50;
  justify-content: center
}

.pc-perks-head h2 {
  color: #fff
}

.pc-perks-head p {
  color: rgba(255, 255, 255, .72)
}

.pc-perk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem
}

.pc-perk {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  text-align: center
}

.pc-perk .pp-ico {
  width: 50px;
  height: 50px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 22px rgba(255, 87, 34, .4)
}

.pc-perk b {
  display: block;
  font-size: 1.05rem
}

.pc-perk p {
  margin: .4rem 0 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .72)
}

/* 5 · Estimator */
.pc-est-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.7rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto
}

.pc-calc {
  background: var(--bg, #fff);
  border: 1px solid #E7EBF1;
  border-radius: 22px;
  padding: 2.15rem;
  box-shadow: 0 8px 22px rgba(16, 24, 40, .05)
}

body.dark .pc-calc {
  background: #0E1420;
  border-color: #1F2937
}

.pc-calc-field {
  margin-bottom: 1.8rem
}

.pc-calc-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  font-weight: 700;
  font-size: .96rem
}

.pc-calc-field label b {
  color: var(--orange);
  font-weight: 800
}

#pcSqft {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  outline: none;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--orange) 50%, #E7EBF1 50%)
}

#pcSqft::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, .18);
  cursor: pointer
}

#pcSqft::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, .18);
  cursor: pointer
}

#pcType {
  width: 100%;
  padding: .88rem 1rem;
  border: 1px solid #E3E8EE;
  border-radius: 12px;
  background: var(--bg, #fff);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  margin-top: .55rem;
  outline: none;
  cursor: pointer
}

body.dark #pcType {
  background: #0E1420;
  border-color: #243042
}

#pcType:focus {
  border-color: var(--orange)
}

.pc-calc-note {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .86rem;
  color: var(--text-muted)
}

.pc-calc-note i {
  color: var(--orange);
  font-size: 1rem
}

.pc-summary {
  background: linear-gradient(135deg, #101828, #1E2A44);
  color: #fff;
  border-radius: 22px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-lg)
}

.pc-summary .kicker {
  color: #FF8A50;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.pc-total {
  margin: 1rem 0 1.15rem
}

.pc-total b {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1
}

.pc-total span {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem
}

.pc-sum-list {
  list-style: none;
  margin: 0 0 2.3rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .92rem
}

.pc-sum-list li {
  display: flex;
  gap: .55rem;
  align-items: center
}

.pc-sum-list i {
  color: var(--orange)
}

/* 6 · Price factors */
.pc-factors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem
}

.pc-factor {
  background: var(--bg, #fff);
  border: 1px solid #E7EBF1;
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .3s ease, box-shadow .3s ease
}

body.dark .pc-factor {
  background: #0E1420;
  border-color: #1F2937
}

.pc-factor:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg)
}

.pf-ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(255, 87, 34, .12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.3rem
}

.pf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem
}

.pf-head b {
  font-size: 1.02rem
}

.pf-impact {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .6rem;
  border-radius: 999px
}

.pf-impact.high {
  color: #DC2626;
  background: rgba(220, 38, 38, .1)
}

.pf-impact.med {
  color: #D97706;
  background: rgba(217, 119, 6, .12)
}

.pf-impact.low {
  color: #16A34A;
  background: rgba(22, 163, 74, .12)
}

.pf-impact i {
  font-size: .42rem
}

.pc-factor p {
  margin: 0;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55
}

/* 7 · CTA (reuses .gl-cta-banner) */
.pc-cta {
  padding-top: 0
}

/* Pricing responsive */
@media(max-width:1024px) {
  .pp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto
  }
}

@media (max-width:900px) {
  .pc-section {
    padding: 72px 0
  }

  .pp-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto
  }

  .pc-perk-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pc-factors-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pc-est-grid {
    grid-template-columns: 1fr;
    max-width: 640px
  }
}

@media (max-width:640px) {
  .pc-section {
    padding: 56px 0
  }

  .pc-head {
    margin-bottom: 2.2rem
  }

  .pc-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .65rem;
    max-width: 440px;
    margin: 0 auto 2.2rem;
  }

  .pp-tab {
    width: 100%;
    justify-content: center;
    padding: .72rem .5rem;
    font-size: .88rem;
    white-space: nowrap;
  }

  .pc-row {
    grid-template-columns: 1fr;
    gap: .7rem;
    padding: 1.1rem
  }

  .pc-ico {
    width: 44px;
    height: 44px
  }

  .pc-rate-wrap {
    justify-content: flex-start;
    text-align: start
  }

  .pc-rate-wrap b {
    font-size: 1.05rem
  }

  .pc-perk-grid {
    grid-template-columns: 1fr
  }

  .pc-factors-grid {
    grid-template-columns: 1fr
  }

  .pc-perks {
    padding: 2.4rem 1.3rem
  }

  .pc-perk {
    padding: 1.3rem 1.1rem
  }

  .pc-calc,
  .pc-summary {
    padding: 1.6rem 1.3rem
  }

  .pc-total b {
    font-size: 2.1rem
  }

  .pp-card {
    padding: 2rem 1.5rem 1.7rem
  }

  .pp-price .pp-num {
    font-size: 2.5rem
  }

  .pp-save {
    display: none
  }
}

@media (max-width:420px) {
  .pc-tabs {
    gap: .5rem;
  }

  .pp-tab {
    padding: .68rem .35rem;
    font-size: .82rem;
    gap: .3rem;
  }
}

/* ============================================================
   FAQ V2 — search + filtered category sections
   ============================================================ */
.fq-toolbar {
  max-width: 860px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem
}

.fq-search {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  width: 100%
}

.fq-search>i {
  position: absolute;
  inset-inline-start: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.05rem;
  pointer-events: none
}

.fq-search input {
  width: 100%;
  padding: .98rem 2.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: .98rem;
  outline: none;
  transition: .25s ease
}

.fq-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft)
}

.fq-clear {
  position: absolute;
  inset-inline-end: .9rem;
  top: 50%;
  transform: translateY(-50%) scale(.8);
  opacity: 0;
  visibility: hidden;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  color: var(--text);
  cursor: pointer;
  transition: .2s ease;
  font-size: .7rem;
  display: grid;
  place-items: center
}

.fq-clear.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1)
}

.fq-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem
}

.fq-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: .25s ease;
  font-family: inherit
}

.fq-pill i {
  color: var(--orange)
}

.fq-pill:hover {
  border-color: var(--orange);
  transform: translateY(-2px)
}

.fq-pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px var(--orange-glow)
}

.fq-pill.active i {
  color: #fff
}

.fq-secs {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  max-width: 900px;
  margin-inline: auto
}

.fq-sec.hide {
  display: none
}

.fq-sec-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.fq-sec-ico {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px var(--orange-glow)
}

.fq-sec-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
  line-height: 1.2
}

.fq-sec-head p {
  margin: .15rem 0 0;
  font-size: .87rem;
  color: var(--text-muted)
}

.fq-sec-meta {
  margin-inline-start: auto;
  flex-shrink: 0;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: .42rem .8rem;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .35rem
}

.fq-sec-meta i {
  color: var(--orange);
  font-size: .8rem
}

.fq-list {
  display: flex;
  flex-direction: column;
  gap: .9rem
}

.faq-item.hide {
  display: none
}

/* Help cards */
.fq-help {
  max-width: 1000px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.7rem;
  align-items: stretch
}

.fq-help-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.2rem
}

.fq-help-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: .6rem 0 .4rem;
  line-height: 1.25
}

.fq-help-card>p {
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.55;
  margin: 0 0 1.4rem
}

.fq-contact {
  background: linear-gradient(150deg, #101828, #1E2A44);
  color: #fff;
  border: none
}

.fq-contact .kicker {
  color: #FF8A50;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.fq-contact h3 {
  color: #fff
}

.fq-contact p {
  color: rgba(255, 255, 255, .75)
}

.fq-contact-list {
  list-style: none;
  margin: 0 0 1.7rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  font-weight: 600;
  font-size: .95rem
}

.fq-contact-list li {
  display: flex;
  gap: .7rem;
  align-items: center
}

.fq-contact-list i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  background: rgba(255, 87, 34, .18);
  color: #FF8A50;
  display: grid;
  place-items: center;
  font-size: 1.05rem
}

.fq-contact-list a {
  color: #fff
}

.fq-ask .eyebrow {
  color: var(--orange)
}

.fq-form-success {
  display: none;
  background: rgba(46, 196, 120, .12);
  border: 1px solid rgba(46, 196, 120, .35);
  color: #2E7D44;
  border-radius: 12px;
  padding: .85rem 1.05rem;
  font-size: .9rem;
  font-weight: 600;
  margin-top: 1rem
}

.fq-form-success i {
  margin-inline-end: .35rem
}

.fq-cta {
  margin-top: 6.5rem;
  padding-top: 1.5rem;
  margin-bottom: 6.5rem;
}

.fq-cta .gl-cta-banner {
  margin-top: 1rem
}

.fq-search {
  margin-top: 5.5rem;
  margin-bottom: 2rem;
}

/* FAQ responsive */
@media (max-width:900px) {
  .fq-help {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .fq-toolbar {
    margin-bottom: 2.2rem
  }

  .fq-pills {
    gap: .5rem
  }

  .fq-pill {
    flex: 1 1 calc(50% - .5rem);
    justify-content: center;
    padding: .74rem .4rem;
    font-size: .88rem
  }

  .fq-secs {
    gap: 2.6rem
  }

  .fq-sec-meta {
    display: none
  }

  .fq-sec-head {
    flex-wrap: wrap;
    gap: .9rem
  }

  .fq-sec-head h2 {
    font-size: 1.3rem
  }

  .fq-help {
    margin-top: 3rem;
    padding: 0
  }

  .fq-help-card {
    padding: 1.7rem 1.4rem
  }

  .fq-cta {
    margin-top: 3rem
  }
}

/* ============================================================
   CONTACT V2 — contact cards + form + embedded map
   ============================================================ */
.ct-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem
}

.ct-head .eyebrow {
  justify-content: center
}

.ct-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-top: .4rem
}

.ct-head p {
  color: var(--text-muted);
  margin-top: .8rem;
  font-size: 1.02rem
}

.ct-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem
}

.ct-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.9rem 1.5rem 1.6rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column
}

.ct-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 87, 34, .35)
}

.ct-ico {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px var(--orange-glow);
  margin-bottom: 1.2rem
}

.ct-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 .4rem
}

.ct-card p {
  margin: 0 0 1.2rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1
}

.ct-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  color: var(--orange);
  font-size: .95rem;
  text-decoration: none;
  transition: gap .2s ease
}

.ct-link i {
  transition: transform .2s ease
}

.ct-link:hover {
  gap: .55rem
}

.ct-link:hover i {
  transform: translate(2px, -2px)
}

.ct-cards-sec,
.ct-form-sec {
  padding: 5rem 0;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.7rem;
  align-items: stretch;
  min-width: 0;
}

.ct-grid>* {
  min-width: 0;
  max-width: 100%;
}

.ct-map-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}

.ct-map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1
}

.ct-map-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .4rem .5rem .9rem
}

.ct-pin {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 13px;
  background: rgba(255, 87, 34, .12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.2rem
}

.ct-map-head strong {
  display: block;
  font-size: 1rem
}

.ct-map-head div>span {
  color: var(--text-muted);
  font-size: .86rem
}

.ct-map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 1;
  min-height: 340px;
  background: linear-gradient(150deg, #101828, #1E2A44) center/cover
}

.ct-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  filter: saturate(.9)
}

.ct-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .85rem 1.2rem;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease
}

.ct-map-link:hover {
  background: #E64E1F;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px var(--orange-glow)
}

.ct-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem
}

.ct-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .55rem .95rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted)
}

.ct-chip i {
  color: var(--orange)
}

body.dark .ct-map-frame iframe {
  filter: invert(.9) hue-rotate(180deg) saturate(.35) brightness(.95)
}

/* Contact — How It Works Process Steps */
.ct-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: .5rem
}

.ct-process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.ct-process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 87, 34, .45);
  background: rgba(255, 87, 34, 0.06)
}

.ct-process-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(255, 87, 34, .18);
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: 'Outfit', sans-serif;
}

.ct-process-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), #FF8A50);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(255, 87, 34, .35);
  margin-bottom: 1.3rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.ct-process-step:hover .ct-process-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 16px 36px rgba(255, 87, 34, .48)
}

.ct-process-step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .6rem;
  letter-spacing: -.01em
}

.ct-process-step p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1.2rem
}

.ct-process-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  width: fit-content;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--orange);
  background: rgba(255, 87, 34, .14);
  padding: .38rem .78rem;
  border-radius: 999px;
}

.ct-process-badge i {
  font-size: .85rem
}

/* Connector line between steps */
.ct-process-grid::before {
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 87, 34, .3), transparent);
  pointer-events: none;
}

.ct-process-sec {
  position: relative
}

@media(max-width:1024px) {
  .ct-process-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

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

/* Contact responsive */
@media (max-width:1024px) {
  .ct-cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:900px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ct-map-frame,
  .ct-map-frame iframe {
    min-height: 300px;
    height: 300px;
  }
}

@media (max-width:768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .field {
    margin-bottom: 1rem;
  }
}

@media (max-width:640px) {

  .ct-cards-sec,
  .ct-process-sec,
  .ct-form-sec {
    padding: 3.2rem 0;
  }

  .ct-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .ct-head {
    margin-bottom: 2.2rem;
  }

  .ct-card {
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .quote-form {
    padding: 1.65rem 1.2rem;
    border-radius: 20px;
  }

  .quote-form h3 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .qf-note {
    font-size: .86rem;
    margin: .35rem 0 1.25rem;
  }

  .field label {
    font-size: .82rem;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 1rem;
    padding: .8rem .85rem;
    border-radius: 10px;
  }

  .quote-form .btn-lg {
    width: 100%;
    padding: .9rem 1.15rem;
    font-size: .94rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
    line-height: 1.35;
  }

  .ct-map-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .ct-map-head {
    padding: .2rem .2rem .75rem;
    gap: .75rem;
  }

  .ct-pin {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    font-size: 1.1rem;
    border-radius: 11px;
  }

  .ct-map-head strong {
    font-size: .95rem;
  }

  .ct-map-head div>span {
    font-size: .82rem;
    word-break: break-word;
  }

  .ct-map-frame {
    min-height: 260px;
    height: 260px;
    border-radius: 14px;
  }

  .ct-map-frame iframe {
    min-height: 260px;
    height: 260px;
  }

  .ct-map-link {
    width: 100%;
    padding: .8rem 1rem;
    font-size: .9rem;
    justify-content: center;
  }

  .ct-chips {
    gap: .5rem;
  }

  .ct-chip {
    width: 100%;
    justify-content: center;
    font-size: .82rem;
    padding: .55rem .85rem;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }
}

@media (max-width:420px) {

  .ct-cards-sec,
  .ct-process-sec,
  .ct-form-sec {
    padding: 2.8rem 0;
  }

  .quote-form {
    padding: 1.35rem .95rem;
    border-radius: 16px;
  }

  .quote-form h3 {
    font-size: 1.15rem;
  }

  .field input,
  .field select,
  .field textarea {
    padding: .75rem .8rem;
  }

  .quote-form .btn-lg {
    padding: .82rem .9rem;
    font-size: .88rem;
  }

  .ct-map-card {
    padding: .85rem;
    border-radius: 16px;
  }

  .ct-map-frame,
  .ct-map-frame iframe {
    min-height: 220px;
    height: 220px;
  }
}

/* =============================================================
   404 — NOT FOUND PAGE
   ============================================================= */
.e404-root {
  min-height: 100vh;
  background: var(--canvas);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: background .4s ease, color .4s ease;
}

.e404-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.e404-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.e404-blob-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #FF5722 0%, transparent 70%);
  top: -160px;
  right: -120px;
  opacity: .18;
}

.e404-blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #1E2A44 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  opacity: .10;
}

.e404-blob-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #FF5722 0%, transparent 70%);
  bottom: 60px;
  right: 80px;
  opacity: .08;
}

.e404-drip-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FF5722 0%, #FF8A50 50%, #FF5722 100%);
  box-shadow: 0 0 20px rgba(255, 87, 34, .5);
  z-index: 1;
}

.e404-drip-bar::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 28px;
  background: linear-gradient(180deg, #FF5722, transparent);
  border-radius: 0 0 3px 3px;
}

.e404-card {
  position: relative;
  z-index: 2;
  max-width: 560px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.e404-illustration {
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 2rem;
  animation: e404float 4s ease-in-out infinite;
  filter: drop-shadow(0 18px 36px rgba(255, 87, 34, .2));
  border-radius: 16px;
}

@keyframes e404float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.e404-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 87, 34, .1);
  border: 1px solid rgba(255, 87, 34, .28);
  color: #FF5722;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem .95rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}

.e404-title {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: .7rem;
}

.e404-title span {
  color: #FF5722;
}

.e404-subtitle {
  font-size: clamp(.92rem, 2.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2rem;
}

.e404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.e404-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 50px;
  padding: 0 1.6rem;
  background: #FF5722;
  color: #fff;
  border: 2px solid #FF5722;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 87, 34, .38);
  transition: all .27s ease;
  white-space: nowrap;
}

.e404-btn-primary:hover {
  background: #E44715;
  border-color: #E44715;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 87, 34, .45);
}

.e404-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 50px;
  padding: 0 1.4rem;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .27s ease;
  white-space: nowrap;
}

.e404-btn-secondary:hover {
  border-color: #FF5722;
  color: #FF5722;
  transform: translateY(-2px);
}

body.dark .e404-btn-secondary {
  border-color: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .8);
}

body.dark .e404-btn-secondary:hover {
  border-color: #FF5722;
  color: #FF8A50;
}

@media(max-width:480px) {
  .e404-illustration {
    width: min(200px, 80vw);
  }

  .e404-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .e404-btn-primary,
  .e404-btn-secondary {
    justify-content: center;
    width: 100%;
  }
}

/* =============================================================
   COMING SOON PAGE
   ============================================================= */
.cs-root {
  min-height: 100vh;
  background: var(--canvas);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: background .4s ease, color .4s ease;
}

.cs-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.cs-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cs-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #FF5722 0%, transparent 70%);
  top: -200px;
  left: -150px;
  opacity: .12;
}

.cs-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1E2A44 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  opacity: .10;
}

.cs-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #FF8A50 0%, transparent 70%);
  top: 40%;
  right: 10%;
  opacity: .08;
}

.cs-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 87, 34, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 87, 34, .03) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 75%);
}

.cs-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #FF5722 30%, #FF8A50 50%, #FF5722 70%, transparent 100%);
  z-index: 1;
}

.cs-card {
  position: relative;
  z-index: 2;
  max-width: 620px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FF5722, #FF8A50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 87, 34, .4);
  margin-bottom: 1.6rem;
  animation: cslogopulse 3s ease-in-out infinite;
}

@keyframes cslogopulse {

  0%,
  100% {
    box-shadow: 0 12px 32px rgba(255, 87, 34, .4);
  }

  50% {
    box-shadow: 0 18px 50px rgba(255, 87, 34, .6);
  }
}

.cs-illustration {
  width: min(240px, 65vw);
  height: auto;
  margin-bottom: 2rem;
  animation: csfloat 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 32px rgba(255, 87, 34, .18));
  border-radius: 16px;
}

@keyframes csfloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 87, 34, .1);
  border: 1px solid rgba(255, 87, 34, .28);
  color: #FF5722;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem .95rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}

.cs-badge i {
  animation: csspin 3s linear infinite;
}

@keyframes csspin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cs-title {
  font-size: clamp(2.2rem, 7vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: .8rem;
}

.cs-title span {
  background: linear-gradient(135deg, #FF5722, #FF8A50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.cs-count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  min-width: 68px;
}

.cs-count-num {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background .4s, border-color .4s;
}

.cs-count-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cs-count-sep {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FF5722;
  margin-bottom: 1.6rem;
  opacity: .7;
}

.cs-home-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: all .25s;
  margin-bottom: 1.8rem;
}

.cs-home-link:hover {
  color: #FF5722;
  border-color: #FF5722;
  background: rgba(255, 87, 34, .06);
}

@media(max-width:520px) {
  .cs-countdown {
    gap: .6rem;
  }

  .cs-count-num {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}