:root {
  --midnight: #0B1120;
  --charcoal: #1A2035;
  --slate: #273044;
  --copper: #B8723A;
  --copper-light: #D4944A;
  --copper-glow: #C6833F;
  --copper-muted: #A06832;
  --amber: #E8B860;
  --bg-main: #F5F2ED;
  --bg-card: #FFFFFF;
  --bg-warm: #FAF8F5;
  --bg-accent: #EDE9E3;
  --text-primary: #1A2035;
  --text-secondary: #5F6680;
  --text-muted: #8B91A5;
  --border: rgba(26, 32, 53, 0.08);
  --border-copper: rgba(184, 114, 58, 0.15);
  --shadow-sm: 0 2px 8px rgba(26, 32, 53, 0.04);
  --shadow-md: 0 8px 32px rgba(26, 32, 53, 0.06);
  --shadow-lg: 0 20px 60px rgba(26, 32, 53, 0.08);
  --shadow-copper: 0 8px 32px rgba(184, 114, 58, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--bg-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: var(--copper);
  border-radius: 3px;
}

/* ===== NAVIGATION — always solid/static ===== */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(26, 32, 53, 0.08);
  box-shadow: 0 2px 16px rgba(26, 32, 53, 0.06);
  transition: box-shadow 0.3s ease;
}

.nav-main.scrolled {
  box-shadow: 0 4px 24px rgba(26, 32, 53, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 22px;
  height: 2px;
  background: var(--copper);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
  color: var(--copper);
  font-weight: 600;
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--copper), var(--copper-glow)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 11px 26px !important;
  border-radius: 50px !important;
  box-shadow: var(--shadow-copper);
  transition: all 0.3s ease !important;
}

.nav-cta-btn::after {
  display: none !important;
}

.nav-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 36px rgba(184, 114, 58, 0.35) !important;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.nav-burger:hover {
  background: var(--bg-accent);
}

/* ===== MODERN CREATIVE MOBILE NAV ===== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: transparent;
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: none;
  border-radius: 0;
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}

.mobile-nav-header img {
  height: 48px;
  width: auto;
  filter: none;
}

.mobile-nav-closebtn {
  background: var(--bg-warm);
  border: none;
  color: #1a2035;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.mobile-nav-closebtn:hover {
  background: var(--copper);
  color: #ffffff;
  transform: rotate(90deg) scale(1.05);
  box-shadow: var(--shadow-copper);
}

.mobile-nav-body {
  flex: 1;
  padding: 20px 30px 60px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.mob-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2035;
  text-decoration: none;
  font-size: 1.45rem;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  background: transparent;
  width: 100%;
  max-width: 320px;
  text-align: center;
  letter-spacing: 0.5px;
}

.mob-link:hover {
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(184, 114, 58, 0.25);
  transform: translateY(-4px) scale(1.02);
}

.mob-link i {
  display: none;
}

.mob-link:hover i {
  color: var(--copper);
}

.mobile-nav-cta {
  margin-top: auto;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  color: #fff !important;
  padding: 18px 32px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  text-align: center;
  justify-content: center;
  border: none;
  box-shadow: 0 10px 30px rgba(184, 114, 58, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.mobile-nav-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(184, 114, 58, 0.4);
}

.mobile-nav-cta::before {
  display: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--midnight);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.5) saturate(0.7);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(11, 17, 32, 0.96) 0%, rgba(11, 17, 32, 0.45) 50%, rgba(11, 17, 32, 0.8) 100%),
    radial-gradient(ellipse 70% 50% at 75% 55%, rgba(184, 114, 58, 0.07) 0%, transparent 60%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-floating-orb.orb-1 {
  width: 450px;
  height: 450px;
  background: rgba(184, 114, 58, 0.07);
  top: 8%;
  right: 3%;
}

.hero-floating-orb.orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(184, 114, 58, 0.04);
  bottom: 12%;
  left: 8%;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(25px, -18px);
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px 100px;
  width: 100%;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184, 114, 58, 0.1);
  border: 1px solid rgba(184, 114, 58, 0.2);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: chipPulse 3s ease-in-out infinite;
}

@keyframes chipPulse {

  0%,
  100% {
    border-color: rgba(184, 114, 58, 0.2);
  }

  50% {
    border-color: rgba(184, 114, 58, 0.4);
  }
}

.hero-chip-dot {
  width: 7px;
  height: 7px;
  background: var(--copper-light);
  border-radius: 50%;
  animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-chip span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.04;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero-title .hero-accent {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--copper-light);
  letter-spacing: 0;
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-copper {
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  color: #fff;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.92rem;
  font-family: 'Outfit', sans-serif;
  border: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-copper);
  position: relative;
  overflow: hidden;
}

.btn-primary-copper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn-primary-copper:hover::before {
  left: 100%;
}

.btn-primary-copper:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(184, 114, 58, 0.4);
  color: #fff;
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost-light {
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  padding: 15px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  cursor: pointer;
}

.btn-ghost-light:hover {
  background: var(--bg-accent);
  border-color: var(--copper);
  color: var(--copper);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.hero-metric {
  position: relative;
  padding-right: 20px;
}

.hero-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metric-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--copper-light);
  letter-spacing: -1px;
  line-height: 1;
}

.hero-metric-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.38);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-top: 8px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-visual-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-visual-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-visual-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--bg-card);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
  border: 1px solid var(--border);
}

.hero-visual-badge-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.hero-visual-badge h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.hero-visual-badge p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
}

.hero-visual-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--copper);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: 3;
}

/* ===== SECTIONS ===== */
.section {
  padding: 110px 0;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--copper);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), transparent);
  border-radius: 1px;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 400;
}


/* ===== ABOUT ===== */
.about-section {
  background: var(--bg-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  position: relative;
}

.about-images img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-images img:first-child {
  grid-row: 1 / 3;
  height: 100%;
}

.about-images img:nth-child(2) {
  height: 200px;
}

.about-images img:nth-child(3) {
  height: 200px;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--midnight);
  padding: 22px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(184, 114, 58, 0.15);
}

.about-exp-badge h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--copper-light);
  line-height: 1;
}

.about-exp-badge p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-copper);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.about-feat h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.about-feat p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-copper);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(184, 114, 58, 0.4);
}

.service-card-body {
  padding: 28px;
}

.service-card-body h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-card-link:hover {
  gap: 14px;
}

/* ===== WHY US ===== */
.why-section {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 114, 58, 0.06), transparent 70%);
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 114, 58, 0.04), transparent 70%);
  pointer-events: none;
}

.why-section .section-title {
  color: #fff;
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.45);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50px;
  height: 2px;
  background: var(--copper-light);
  border-radius: 1px;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(184, 114, 58, 0.2);
  transform: translateY(-6px);
}

.why-card-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(184, 114, 58, 0.25);
}

.why-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 25% 50%, rgba(184, 114, 58, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 75% 50%, rgba(184, 114, 58, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 0;
}

.cta-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  color: #fff;
  border: none;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 24px rgba(184, 114, 58, 0.35);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(184, 114, 58, 0.5);
}

/* ===== TOAST ===== */
.toast-msg {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  z-index: 2000;
  transform: translateX(120%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  border: 1px solid var(--border-copper);
}

.toast-msg.show {
  transform: translateX(0);
}

.toast-msg i {
  color: var(--copper);
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-up,
.anim-left,
.anim-right,
.anim-scale,
.anim-fade {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-up {
  transform: translateY(60px);
}

.anim-left {
  transform: translateX(-60px);
}

.anim-right {
  transform: translateX(60px);
}

.anim-scale {
  transform: scale(0.9);
}

.anim-fade {
  opacity: 0;
}

.anim-up.in-view,
.anim-left.in-view,
.anim-right.in-view,
.anim-scale.in-view,
.anim-fade.in-view {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered animations */
.anim-stagger>* {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-stagger.in-view>*:nth-child(1) {
  transition-delay: 0.1s;
}

.anim-stagger.in-view>*:nth-child(2) {
  transition-delay: 0.2s;
}

.anim-stagger.in-view>*:nth-child(3) {
  transition-delay: 0.3s;
}

.anim-stagger.in-view>*:nth-child(4) {
  transition-delay: 0.4s;
}

.anim-stagger.in-view>*:nth-child(5) {
  transition-delay: 0.5s;
}

.anim-stagger.in-view>*:nth-child(6) {
  transition-delay: 0.6s;
}

.anim-stagger.in-view>* {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section {
    padding: 72px 0;
  }

  .section-container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero-inner {
    padding: 120px 20px 72px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-metric:nth-child(2)::after {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a,
  .hero-actions button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .about-exp-badge {
    bottom: -12px;
    right: -8px;
    padding: 16px 22px;
  }

  .about-exp-badge h3 {
    font-size: 1.8rem;
  }
}

/* ===================================================
   SHARED COMPONENT CSS — loaded globally
   =================================================== */

/* ── TICKER STRIP ── */
.ticker-strip {
  background: var(--copper);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}

.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.ticker-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.ticker-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--copper), transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ticker-item i {
  opacity: .7;
  font-size: 0.65rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── HERO VISUAL image ── */
.hero-visual-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ── CLIENTS LOGOS ── */
.clients-section {
  background: var(--bg-warm);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.clients-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}

.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .4;
  filter: grayscale(1);
  transition: all .3s;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.client-logo i {
  font-size: 1.2rem;
  color: var(--copper);
}

.client-logo:hover {
  opacity: .75;
  filter: grayscale(0);
}

/* ── PROCESS SECTION ── */
.process-section {
  background: var(--bg-main);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-copper), var(--copper), var(--border-copper), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all .4s;
}

.process-num span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--copper);
}

.process-step:hover .process-num {
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: var(--shadow-copper);
  transform: scale(1.1);
}

.process-step:hover .process-num span {
  color: #fff;
}

.process-step h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── TESTIMONIAL SLIDER ── */
.testimonials-section {
  background: var(--midnight);
  overflow: hidden;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 114, 58, 0.06), transparent 70%);
  pointer-events: none;
}

.testi-track {
  display: flex;
  gap: 28px;
  animation: testiScroll 35s linear infinite;
}

.testi-track:hover {
  animation-play-state: paused;
}

@keyframes testiScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testi-card {
  min-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px;
  flex-shrink: 0;
  transition: all .3s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(184, 114, 58, 0.2);
}

.testi-stars {
  color: var(--copper-light);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author-info strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.testi-author-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ── SERVICE CARD image ── */
.service-card-img {
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #0A0E1A;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 114, 58, 0.4), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 114, 58, 0.04), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid img {
  height: 46px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 28px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all .3s;
}

.footer-social-btn:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--copper-light);
  padding-left: 4px;
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--copper);
  opacity: .6;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(184, 114, 58, 0.1);
  border: 1px solid rgba(184, 114, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color .3s;
}

.footer-contact-text a:hover {
  color: var(--copper-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 8px;
}

.footer-copyright a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-badges {
  display: flex;
  gap: 10px;
}

.footer-badge {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-newsletter {
  background: rgba(184, 114, 58, 0.06);
  border: 1px solid rgba(184, 114, 58, 0.12);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 24px;
}

.footer-newsletter p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.footer-newsletter strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 6px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
}

.footer-form {
  display: flex;
  gap: 8px;
}

.footer-form input {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color .3s;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-form input:focus {
  border-color: rgba(184, 114, 58, 0.4);
}

.footer-form button {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--copper), var(--copper-glow));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}

.footer-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 114, 58, 0.35);
}

/* ── Footer responsive ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .testi-card {
    min-width: 300px;
  }

  .clients-row {
    gap: 28px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}