/* ============================================================
   RAXTECHCAPITAL — Design System & Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Brand Palette */
  --gold:        #C8963E;
  --gold-light:  #E8B35A;
  --gold-dark:   #9A6F27;
  --navy:        #0A1628;
  --navy-mid:    #0F2040;
  --blue-accent: #1349A8;

  /* Dark Mode (default) */
  --bg:          #080e1c;
  --bg-card:     #0f1c35;
  --bg-glass:    rgba(15, 28, 53, 0.70);
  --surface:     #121f3a;
  --border:      rgba(200, 150, 62, 0.18);
  --border-soft: rgba(255,255,255,0.07);
  --text-primary:   #F0EDE6;
  --text-secondary: rgba(240, 237, 230, 0.60);
  --text-muted:     rgba(240, 237, 230, 0.35);
  --nav-bg:      rgba(8, 14, 28, 0.85);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py:  clamp(80px, 10vw, 140px);
  --container:   1200px;
  --gutter:      clamp(20px, 5vw, 60px);

  /* Transitions */
  --fast:  0.2s ease;
  --med:   0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --slow:  0.7s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
}

/* Light Mode */
[data-theme="light"] {
  --bg:          #F5F3EE;
  --bg-card:     #FFFFFF;
  --bg-glass:    rgba(255, 255, 255, 0.80);
  --surface:     #EAE7DF;
  --border:      rgba(200, 150, 62, 0.25);
  --border-soft: rgba(0,0,0,0.08);
  --text-primary:   #0A1628;
  --text-secondary: rgba(10, 22, 40, 0.65);
  --text-muted:     rgba(10, 22, 40, 0.38);
  --nav-bg:      rgba(245, 243, 238, 0.88);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--med), color var(--med);
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Utility Classes ── */
.gold       { color: var(--gold); }
.serif      { font-family: var(--font-serif); }
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 20px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px 0 28px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: var(--med);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--fast);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 150, 62, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
.btn-ghost .arrow-box {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  border-radius: 4px;
  transition: var(--med);
}
.btn-ghost:hover .arrow-box {
  background: var(--gold);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  height: 70px;
  display: flex;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--med), border-color var(--med);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  font-weight: 400;
  transition: color var(--fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--med);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px; height: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: background var(--med);
  flex-shrink: 0;
}
.theme-toggle::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform var(--med);
}
[data-theme="light"] .theme-toggle::before {
  transform: translateX(20px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--med);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav */
.mobile-menu {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
  padding: 24px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform var(--med);
  opacity: 0;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu a {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: color var(--fast);
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 14, 28, 0.72) 0%,
    rgba(8, 14, 28, 0.55) 50%,
    rgba(8, 14, 28, 0.85) 100%
  );
}
[data-theme="light"] .hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.65) 50%,
    rgba(10, 22, 40, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.7);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  max-width: 760px;
  margin-bottom: 36px;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 620px;
  margin-bottom: 48px;
}
.hero-sub-images {
  flex-shrink: 0;
  display: flex;
}
.hero-sub-images img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(200, 150, 62, 0.5);
  object-fit: cover;
}
.hero-sub-images img:not(:first-child) { margin-left: -14px; }
.hero-sub-text {
  font-size: 0.88rem;
  color: rgba(240, 237, 230, 0.65);
  line-height: 1.65;
  max-width: 340px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats Bar */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 0 var(--gutter);
  max-width: var(--container);
  width: 100%;
  margin-left: auto; margin-right: auto;
}
.hero-stats-inner {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.2;
}
.stat-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240, 237, 230, 0.9);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px; right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(240, 237, 230, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue-box {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--gold);
}

/* ============================================================
   TRUST / ABOUT SECTION
   ============================================================ */
#about {
  padding: var(--section-py) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-metrics {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.metric-block h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-block p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-image {
  position: relative;
}
.about-image-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-image:hover .about-image-main img { transform: scale(1.03); }

.about-image-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: var(--section-py) 0;
  background: var(--surface);
  transition: background var(--med);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  max-width: 600px;
  margin: 0 auto 14px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 36px 28px;
  transition: var(--med);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width var(--slow);
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.service-icon {
  width: 50px; height: 50px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  background: rgba(200, 150, 62, 0.08);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
#case-studies {
  padding: var(--section-py) 0;
  overflow: hidden;
}

.case-studies-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.case-studies-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  max-width: 480px;
}

.cases-track-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.cases-track-wrapper::-webkit-scrollbar { display: none; }
.cases-track-wrapper:active { cursor: grabbing; }

.cases-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-bottom: 8px;
}

.case-card {
  width: clamp(300px, 36vw, 520px);
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.case-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.case-card:hover img { transform: scale(1.04); }

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,28,0.90) 0%, rgba(8,14,28,0.2) 60%, transparent 100%);
}
.case-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
}
.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.case-year {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(240,237,230,0.5);
}
.case-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.case-desc {
  font-size: 0.78rem;
  color: rgba(240,237,230,0.6);
  margin-bottom: 16px;
}

/* ============================================================
   VALUES / STATS
   ============================================================ */
#values {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.values-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.values-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.15) saturate(0.6);
}
[data-theme="light"] .values-bg img { filter: brightness(0.08) saturate(0.4); }

.values-content {
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.values-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 28px;
}
.values-left h2 span { color: var(--gold-light); }

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.values-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.values-list-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(200, 150, 62, 0.15);
  border: 1px solid rgba(200, 150, 62, 0.25);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.values-list-text strong {
  display: block;
  color: rgba(240, 237, 230, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.values-list-text span {
  font-size: 0.82rem;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.6;
}

/* Counter stats */
.stats-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stats-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200, 150, 62, 0.2);
  border-radius: var(--r-md);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
}
.stats-block .num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-block .num-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.5);
}

/* ============================================================
   TEAM
   ============================================================ */
#team {
  padding: var(--section-py) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: var(--med);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info {
  padding: 18px 18px 20px;
}
.team-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-info span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--surface);
  transition: background var(--med);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-primary);
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 12px;
}
.testimonials-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
  min-width: 340px;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 32px 28px;
  flex-shrink: 0;
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.testi-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   DISCLAIMER BANNER
   ============================================================ */
#disclaimer {
  background: rgba(200, 150, 62, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px var(--gutter);
}
.disclaimer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.disclaimer-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.disclaimer-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.disclaimer-text strong { color: var(--gold); }

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  padding: var(--section-py) 0;
  text-align: center;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-inner p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TEXT MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-item::after {
  content: '◆';
  font-size: 0.45rem;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
#contact {
  padding: var(--section-py) 0;
  background: var(--surface);
  transition: background var(--med);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-detail-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(200, 150, 62, 0.1);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}
.contact-detail-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 44px 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--fast), box-shadow var(--fast);
  outline: none;
  width: 100%;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.12);
}
.form-group textarea { min-height: 110px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8963E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 66px 0 32px;
  border-top: 1px solid var(--border-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--fast);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--fast);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--fast);
}
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   CHART
   ============================================================ */
.chart-section {
  padding: var(--section-py) 0;
}
.chart-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-top: 40px;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.chart-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.chart-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.chart-filters {
  display: flex;
  gap: 8px;
}
.chart-filter-btn {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: transparent;
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--fast);
}
.chart-filter-btn.active,
.chart-filter-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ============================================================
   FADE / SCROLL ANIMATION HELPERS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
}
.fade-left {
  opacity: 0;
  transform: translateX(-36px);
}
.fade-right {
  opacity: 0;
  transform: translateX(36px);
}
.fade-in {
  opacity: 0;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .values-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-badge { left: 0; bottom: -20px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-blocks { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .case-studies-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero-stats-inner { gap: 24px; }
  .contact-form { padding: 28px 22px; }
}
