/* ===== VARIABLES ===== */
:root {
  --orange: #ff914d;
  --orange-dark: #e87a3a;
  --orange-light: #ffb380;
  --yellow: #ffde59;
  --yellow-light: #ffec99;
  --white: #ffffff;
  --off-white: #fef9f4;
  --dark: #1a1a2e;
  --dark-soft: #2d2d44;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --font-display: 'Arvo', serif;
  --font-hero: 'Geist', sans-serif;
  --font-body: 'Geist', sans-serif;
  --font-tagline: 'Montserrat', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ===== UTILITIES ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up--delay-1 { transition-delay: 0.15s; }
.fade-up--delay-2 { transition-delay: 0.3s; }
.fade-up--delay-3 { transition-delay: 0.5s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal { opacity: 1; transform: none; transition: none; }
  .hero__video { display: none; }
  .client-photos__track { animation: none !important; }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,145,77,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.nav--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__logo img { height: 192px; width: auto; filter: brightness(1.1); }
.nav__tagline {
  font-family: var(--font-tagline);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.7;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.3);
  padding-right: 20px;
  margin-right: 4px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--yellow-light); }
.nav__cta {
  background: var(--white);
  color: var(--orange) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--yellow-light) !important;
  color: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO — Video background Halston-style ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 24px 100px;
  overflow: hidden;
  background: var(--off-white);
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.hero__video-overlay {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero__badge span {
  font-family: var(--font-tagline);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.hero__badge-halo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
/* Rotating words */
.hero__rotating {
  margin-bottom: 8px;
  height: clamp(3.8rem, 10vw, 6.5rem);
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.hero__rotating-words {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__rotating-word {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  font-weight: 700;
  color: var(--orange);
  position: absolute;
  opacity: 0;
  transform: translateY(100%) rotateX(-40deg);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.hero__rotating-word.active {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.hero__rotating-word.exit {
  opacity: 0;
  transform: translateY(-100%) rotateX(40deg);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}
.hero__title span {
  background: var(--orange);
  color: var(--white);
  padding: 4px 24px;
  border-radius: 8px;
  display: inline-block;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Path selector */
.hero__selector { position: relative; }
.hero__selector-label {
  font-family: var(--font-tagline);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-soft);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__selector-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.hero__selector-swirl {
  position: absolute;
  right: -80px;
  top: -30px;
  width: 70px;
  opacity: 0.4;
  pointer-events: none;
  transform: rotate(-15deg);
}
.hero__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gray-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.hero__btn:hover {
  background: rgba(255,145,77,0.2);
  border-color: var(--orange);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255,145,77,0.25);
}
.hero__btn:hover .hero__btn-icon {
  transform: scale(1.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255,145,77,0.3);
  transform: translateY(-2px);
}
.hero__btn--both:hover,
.hero__btn--both.active {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-color: var(--orange);
  color: var(--dark);
}
.hero__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: rotate(45deg);
  animation: bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== SERVICES ===== */
.services {
  padding: 0 0 96px;
  background: var(--white);
}
.services__hero {
  background: #fe9253;
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}
.services__hero::before {
  content: '';
  position: absolute;
  top: 12%;
  right: 8%;
  width: 22%;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 16px;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(12deg);
}
.services__hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 30%;
  height: 50%;
  background: var(--white);
  border-radius: 12px;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(-6deg);
}
.services__hero .section-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.services__hero .section-title span {
  background: var(--yellow);
  color: var(--dark);
  padding: 2px 16px;
  border-radius: 6px;
  display: inline-block;
}
.services__hero .section-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.services__panel {
  margin-bottom: 64px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.services__panel.hidden { display: none; }
.services__panel-header {
  text-align: center;
  margin-bottom: 40px;
}
.services__panel-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-tagline);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.services__panel-tag--finance {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--dark);
}
.services__panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 12px;
}
.services__panel-desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,145,77,0.15);
}

/* ===== DUAL BRANCH TIMELINE ===== */
.branches {
  padding: 64px 0 80px;
  background: var(--white);
}
.branches__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Branch headers */
.branches__headers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.branches__header {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.branches__header:hover {
  transform: translateY(-4px);
}
.branches__header--building {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(255,145,77,0.2);
}
.branches__header--building:hover {
  box-shadow: 0 16px 48px rgba(255,145,77,0.3);
}
.branches__header--finance {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(26,26,46,0.15);
}
.branches__header--finance:hover {
  box-shadow: 0 16px 48px rgba(26,26,46,0.25);
}
.branches__header-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}
.branches__header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.branches__header p {
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* Timeline */
.branches__timeline {
  position: relative;
  padding-top: 16px;
}
.branches__line {
  position: absolute;
  top: 0;
  bottom: 120px;
  width: 2px;
  z-index: 0;
}
.branches__line--left {
  left: 25%;
  background: linear-gradient(180deg, var(--orange), var(--orange-light));
  opacity: 0.3;
}
.branches__line--right {
  right: 25%;
  background: linear-gradient(180deg, var(--dark), var(--dark-soft));
  opacity: 0.15;
}

/* Timeline rows */
.branches__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 24px;
}
.branches__card {
  position: relative;
}
.branches__card-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 32px;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.branches__card--left .branches__card-dot {
  left: -6px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,145,77,0.15);
}
.branches__card--right .branches__card-dot {
  right: -6px;
  background: var(--dark);
  box-shadow: 0 0 0 4px rgba(26,26,46,0.1);
}
.branches__card:hover .branches__card-dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 8px rgba(255,145,77,0.2);
}
.branches__card--right:hover .branches__card-dot {
  box-shadow: 0 0 0 8px rgba(26,26,46,0.15);
}

.branches__card-inner {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  cursor: default;
}
.branches__card--left .branches__card-inner:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(255,145,77,0.12);
  border-color: rgba(255,145,77,0.2);
}
.branches__card--right .branches__card-inner:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(26,26,46,0.08);
  border-color: rgba(26,26,46,0.12);
}
.branches__card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.branches__card-icon svg { width: 100%; height: 100%; }
.branches__card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.branches__card--right .branches__card-icon svg {
  stroke: var(--dark);
}
.branches__card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Merge point */
.branches__merge {
  text-align: center;
  margin-top: 40px;
  position: relative;
}
.branches__merge-lines {
  width: 50%;
  height: 40px;
  margin: 0 auto;
  border-left: 2px solid rgba(255,145,77,0.25);
  border-right: 2px solid rgba(26,26,46,0.12);
  border-bottom: 2px solid var(--yellow);
  border-radius: 0 0 20px 20px;
}
.branches__merge-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1px auto 16px;
  box-shadow: 0 6px 24px rgba(255,145,77,0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.branches__merge-node:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 36px rgba(255,145,77,0.4);
}
.branches__merge-node svg {
  width: 26px;
  height: 26px;
}
.branches__merge-label {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== MOBILE BRANCHES (tabbed) ===== */
.branches-mobile { display: none; }

.branches-mobile__tabs {
  display: flex;
  gap: 0;
  margin: 0 24px 24px;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--orange);
}
.branches-mobile__tab {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-tagline);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: var(--white);
  color: var(--dark);
  transition: all var(--transition);
}
.branches-mobile__tab.active {
  background: var(--orange);
  color: var(--white);
}
.branches-mobile__tab[data-branch="finance"].active {
  background: var(--dark);
}

.branches-mobile__panels { padding: 0 24px; }
.branches-mobile__panel { display: none; }
.branches-mobile__panel.active { display: flex; flex-direction: column; gap: 16px; }

.branches-mobile__card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border-left: 4px solid var(--orange);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.branches-mobile__panel#mobileFinance .branches-mobile__card {
  border-left-color: var(--dark);
}
.branches-mobile__card:active {
  transform: scale(0.98);
}
.branches-mobile__card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.branches-mobile__card-icon svg { width: 100%; height: 100%; }
.branches-mobile__card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}
.branches-mobile__card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

.branches-mobile__merge {
  text-align: center;
  padding: 32px 24px 16px;
}
.branches-mobile__merge-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(255,145,77,0.3);
}
.branches-mobile__merge-node svg { width: 22px; height: 22px; }
.branches-mobile__merge p {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 300px;
  margin: 0 auto;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal.open {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFadeIn 0.3s ease;
}
.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
@keyframes modalFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  font-size: 1.6rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--dark); }
.modal__step {
  display: none;
  animation: modalStepIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal__step.active { display: block; }
@keyframes modalStepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.modal__desc {
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.5;
}
.modal__field {
  margin-bottom: 16px;
}
.modal__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-soft);
  margin-bottom: 6px;
}
.modal__field input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.modal__field input:focus { border-color: var(--orange); }
.modal__field input.error { border-color: #e53935; }
.modal__error {
  color: #e53935;
  font-size: 0.82rem;
  min-height: 1.2em;
  margin-bottom: 8px;
}
.modal__form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color var(--transition);
  margin-bottom: 16px;
}
.modal__form textarea:focus { border-color: var(--orange); }
.modal__btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal__btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,145,77,0.3);
}
.modal__btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,145,77,0.4);
}
.modal__btn--skip {
  background: none;
  color: var(--gray);
  margin-top: 8px;
  font-size: 0.9rem;
}
.modal__btn--skip:hover { color: var(--dark); }

/* Step 2 options */
.modal__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal__option svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--orange);
}
.modal__option:hover {
  border-color: var(--orange);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(255,145,77,0.12);
}
.modal__option.selected {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.modal__option.selected svg { stroke: var(--white); }

/* Step 4 success */
.modal__success {
  text-align: center;
  padding: 16px 0;
}
.modal__tick {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
.modal__tick svg { width: 100%; height: 100%; }
.modal__tick-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: tickCircle 0.6s 0.1s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.modal__tick-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: tickCheck 0.4s 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
@keyframes tickCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes tickCheck {
  to { stroke-dashoffset: 0; }
}

/* Progress dots */
.modal__progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.modal__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: all var(--transition);
}
.modal__dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}
.modal__dot.done {
  background: #4CAF50;
}

/* Show/hide based on viewport */
@media (max-width: 768px) {
  .branches { display: none; }
  .branches-mobile { display: block; padding: 48px 0; }
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 56px 0;
  background: var(--orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.75); }
.how-it-works__swirl {
  position: absolute;
  bottom: 20px;
  left: -30px;
  width: 140px;
  opacity: 0.12;
  pointer-events: none;
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(255,222,89,0.4);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--white);
}
.step p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}
.step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--white), var(--yellow-light));
  margin-top: 28px;
  flex-shrink: 0;
  border-radius: 2px;
  opacity: 0.5;
}

/* ===== TEAM ===== */
.team {
  padding: 56px 0;
  background: var(--white);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.team__member { text-align: center; }
.team__photo-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--orange-light);
  box-shadow: 0 8px 32px rgba(255,145,77,0.15);
}
.team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__member h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.team__role {
  font-family: var(--font-tagline);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 12px;
}
.team__desc {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.team__email {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.team__email:hover { color: var(--orange-dark); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 96px 0;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.5); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(45,45,68,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
}
.testimonial-card__stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card__author {
  color: var(--orange-light);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Testimonial mosaic background */
.testimonials__mosaic {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.testimonials__mosaic-row {
  display: flex;
  gap: 12px;
  width: max-content;
  flex-shrink: 0;
}
.testimonials__mosaic-row--1 {
  animation: mosaic-scroll-left 50s linear infinite;
}
.testimonials__mosaic-row--2 {
  animation: mosaic-scroll-right 55s linear infinite;
}
.testimonials__mosaic-row img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
  filter: grayscale(30%) brightness(0.6) saturate(0.8);
  opacity: 0.25;
  transform: scale(1.02);
}
.testimonials__mosaic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--dark) 0%, transparent 15%, transparent 85%, var(--dark) 100%),
    linear-gradient(90deg, var(--dark) 0%, transparent 10%, transparent 90%, var(--dark) 100%),
    radial-gradient(ellipse at center, transparent 30%, var(--dark) 80%);
}
.testimonials__content {
  position: relative;
  z-index: 2;
}
@keyframes mosaic-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes mosaic-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ===== CONTACT ===== */
.contact {
  padding: 96px 0;
  background: var(--off-white);
}
.contact__cta-center {
  text-align: center;
  margin-bottom: 48px;
}
.btn--xlarge {
  padding: 22px 64px;
  font-size: 1.3rem;
  box-shadow: 0 8px 32px rgba(255,145,77,0.3);
}
.btn--xlarge:hover {
  box-shadow: 0 12px 40px rgba(255,145,77,0.4);
}
.contact__grid--cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}
.contact__info-card--person {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-light);
  flex-shrink: 0;
}
.contact__person-details { flex: 1; }
.contact__reveal-btn {
  display: inline-block;
  background: none;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px 0;
  transition: color var(--transition);
  margin-top: 4px;
}
.contact__reveal-btn:hover { color: var(--orange-dark); }
.contact__reveal-btn.hidden { display: none; }
.contact__hidden {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
  animation: modalStepIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact__hidden.visible { display: flex; }
.contact__hidden a {
  color: var(--orange);
  font-weight: 500;
  font-size: 0.9rem;
}
.contact__hidden a:hover { color: var(--orange-dark); }
.contact__address {
  color: var(--gray);
  font-size: 0.82rem;
  margin-top: 4px;
  line-height: 1.4;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--dark-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition);
  font-size: 0.95rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; }
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,145,77,0.3);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,145,77,0.4);
}
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__info-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact__info-card--location {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact__info-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.contact__info-card a {
  color: var(--orange);
  font-weight: 500;
  font-size: 0.9rem;
}
.contact__info-card a:hover { color: var(--orange-dark); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__logo img { height: 192px; width: auto; opacity: 0.7; }
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__socials {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.footer__socials a {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0.7;
}
.footer__socials a:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
}
.footer__socials img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.footer__address { font-size: 0.82rem; }
.footer__copy { font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 150px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }

  .steps { flex-direction: column; align-items: center; }
  .step__connector {
    width: 2px;
    height: 32px;
    margin: 0;
  }

  .contact__grid { grid-template-columns: 1fr; }
  .btn--xlarge { padding: 18px 40px; font-size: 1.1rem; }
  .hero__selector-buttons { flex-direction: column; align-items: center; }
  .hero__btn { width: 100%; max-width: 260px; justify-content: center; }
  .hero__selector-swirl { display: none; }
}
