/* ============================================================
   GOLDEN FALCON — Premium Dark Design System
   ============================================================ */

/* 1. TOKENS
   ---------------------------------------------------------- */
:root {
  --bg: #000000;
  --surface-1: #0d0d0d;
  --surface-2: #131313;
  --card: #161616;
  --border: rgba(255, 255, 255, 0.07);
  --border-s: rgba(255, 255, 255, 0.04);

  --gold: #c19630;
  --gold-l: #f0cc6d;
  --gold-glow: rgba(193, 150, 48, 0.20);
  --gold-subtle: rgba(193, 150, 48, 0.07);

  --text: #ffffff;
  --text-2-contrast: #bdbdbd;
  --text-2: var(--text-2-contrast);
  --text-3: #555555;

  --ff: 'Metro Office Pro', 'Montserrat', system-ui, -apple-system, sans-serif;
  --fw-r: 400;
  --fw-m: 600;
  --fw-b: 700;
  --fw-xb: 800;

  --container: 1200px;
  --radius: 12px;
  --radius-l: 18px;

  --t-fast: 150ms ease;
  --t-base: 280ms ease;
  --t-slow: 500ms cubic-bezier(.2, .9, .3, 1);
}

/* 1.1 FONT LOADING — Metro Office Pro
   ----------------------------------------------------------
   Attempts to use a locally installed Metro Office Pro first,
   then falls back to bundled font files under /assets/fonts.
   Provide multiple weights and use `font-display: swap` to
   preserve layout responsiveness and legibility.
*/
@font-face {
  font-family: 'Metro Office Pro';
  font-style: normal;
  font-weight: 400;
  src: local('Metro Office Pro Regular'), local('MetroOfficePro-Regular'),
    url('../fonts/MetroOfficePro-Regular.woff2') format('woff2'),
    url('../fonts/MetroOfficePro-Regular.woff') format('woff'),
    url('../fonts/MetroOfficePro-Regular.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Metro Office Pro';
  font-style: normal;
  font-weight: 600;
  src: local('Metro Office Pro SemiBold'), local('MetroOfficePro-SemiBold'),
    /* semi-bold not available — fallback to Bold for consistent rendering */
    url('../fonts/MetroOfficePro-Bold.woff2') format('woff2'),
    url('../fonts/MetroOfficePro-Bold.woff') format('woff'),
    url('../fonts/metro-office-pro-bold.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Metro Office Pro';
  font-style: normal;
  font-weight: 700;
  src: local('Metro Office Pro Bold'), local('MetroOfficePro-Bold'),
    url('../fonts/MetroOfficePro-Bold.woff2') format('woff2'),
    url('../fonts/MetroOfficePro-Bold.woff') format('woff'),
    url('../fonts/MetroOfficePro-Bold.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Metro Office Pro';
  font-style: normal;
  font-weight: 800;
  src: local('Metro Office Pro ExtraBold'), local('MetroOfficePro-ExtraBold'),
    /* extra-bold not available — fallback to Bold */
    url('../fonts/MetroOfficePro-Bold.woff2') format('woff2'),
    url('../fonts/MetroOfficePro-Bold.woff') format('woff'),
    url('../fonts/metro-office-pro-bold.otf') format('opentype');
  font-display: swap;
}

/* Bold italic face (available) */
@font-face {
  font-family: 'Metro Office Pro';
  font-style: italic;
  font-weight: 700;
  src: local('Metro Office Pro Bold Italic'), local('MetroOfficePro-BoldItalic'),
    url('../fonts/MetroOfficePro-BoldItalic.woff2') format('woff2'),
    url('../fonts/MetroOfficePro-BoldItalic.woff') format('woff'),
    url('../fonts/metro-office-pro-bold-italic.otf') format('opentype');
  font-display: swap;
}

/* 2. RESET & BASE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ensure form controls and interactive elements inherit the site font */
input,
textarea,
select,
button,
optgroup,
option {
  font-family: var(--ff);
  font-size: inherit;
  line-height: inherit;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .6rem .9rem;
  background: var(--surface-2);
  color: var(--text);
  border-radius: 6px;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* 3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  line-height: 1.15;
  font-weight: var(--fw-b);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: var(--fw-xb);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: 1.05rem;
  font-weight: var(--fw-m);
}

p {
  margin: 0;
}

/* 4. LAYOUT
   ---------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Make header spacing consistent across pages regardless of container padding */
.site-header .container {
  padding-left: 48px;
  padding-right: 48px;
}

.site-header .header-inner {
  padding: .85rem 0;
  max-width: var(--container);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .site-header .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* 5. UTILITIES
   ---------------------------------------------------------- */
.gold {
  color: var(--gold);
}

.gold-l {
  color: var(--gold-l);
}

.text-2 {
  color: var(--text-2);
}

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

.caps {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: var(--fw-b);
}

.gold-grad {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  border-radius: 2px;
  margin: 16px 0;
}

.divider.center {
  margin: 16px auto;
}

/* 6. HEADER
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-s);
  transition: background var(--t-base);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: inherit;
}

.logo {
  height: 56px;
  width: auto;
}

.brand-name {
  font-weight: var(--fw-b);
  font-size: .9rem;
  letter-spacing: .05em;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  padding: .35rem .6rem;
  border-radius: 7px;
  cursor: pointer;
  transition: border-color var(--t-fast);
}

.nav-toggle:hover {
  border-color: rgba(193, 150, 48, 0.4);
}

/* Service header: icon + title aligned horizontally */
.svc-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.svc-title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

@media (max-width: 700px) {
  .svc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .svc-title {
    font-size: 1.15rem;
  }
}

/* Anchor scrolling for sticky header */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset, 84px);
}

.service-detail {
  scroll-margin-top: calc(var(--header-offset, 84px) + 8px);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .15rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .7rem;
  color: var(--text-2);
  text-decoration: none;
  font-size: .88rem;
  font-weight: var(--fw-m);
  border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
  min-width: 96px;
  /* ensure consistent width across items */
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Ensure consistent nav sizing across pages (fix visual size differences) */
.site-nav a,
.site-nav a.btn {
  padding: .44rem .9rem;
  /* consistent vertical/horizontal padding */
  font-size: .9rem;
  height: 44px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav a.btn {
  padding-left: .8rem;
  padding-right: .8rem;
}

.site-nav a.active {
  font-weight: var(--fw-b);
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a.active {
  color: var(--gold);
}

@media (max-width: 768px) {
  .site-nav a {
    min-width: auto;
  }

  .site-nav .btn {
    min-width: auto;
  }
}

/* Exclude the CTA button from min-width rule so it keeps its natural size */
.site-nav a.btn {
  min-width: auto;
  padding-left: .6rem;
  padding-right: .6rem;
}

.site-nav .btn {
  margin-left: .5rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 98;
}

.nav-open .nav-overlay {
  display: block;
}

.nav-open .site-nav {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  right: 1rem;
  top: 72px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .7rem;
  z-index: 99;
  min-width: 210px;
}

.nav-open .site-nav ul {
  flex-direction: column;
  gap: .15rem;
}

/* 7. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .72rem 1.4rem;
  border-radius: 8px;
  border: 0;
  font-family: var(--ff);
  font-size: .88rem;
  font-weight: var(--fw-b);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 100%);
  color: #000;
  box-shadow: 0 4px 18px rgba(193, 150, 48, 0.22);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px var(--gold-glow), 0 8px 24px rgba(193, 150, 48, 0.3);
}

.btn.primary:active {
  transform: translateY(0);
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(193, 150, 48, 0.28);
  color: var(--gold);
}

.btn.outline:hover {
  background: rgba(193, 150, 48, 0.06);
  border-color: rgba(193, 150, 48, 0.55);
  color: var(--gold-l);
  transform: translateY(-2px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-2);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-2px);
}

/* Focus visible for keyboard users */
:focus-visible {
  outline: 2px solid rgba(193, 150, 48, 0.18);
  outline-offset: 3px;
}

.btn.sm {
  padding: .52rem 1.1rem;
  font-size: .83rem;
}

.btn.lg {
  padding: .9rem 1.8rem;
  font-size: .95rem;
}

/* 8. HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(0.5rem, 1vh, 4rem) 0 clamp(3rem, 7vh, 5rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 65% 35%, rgba(193, 150, 48, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 0% 90%, rgba(193, 150, 48, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  font-weight: var(--fw-b);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(193, 150, 48, 0.08);
  border: 1px solid rgba(193, 150, 48, 0.18);
  padding: .38rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

.hero-content h1 {
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 50ch;
  margin-bottom: 2.2rem;
}

/* Subtle credibility line shown under the hero subtitle */
.hero-credibility {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 64ch;
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ensure the visual cell centers vertically within the grid */
  align-self: center;
  justify-self: center;
  /* give the visual some breathing room and predictable min height */
  min-height: 320px;
  padding: 0 1rem;
}

.hero-visual-bg {
  position: absolute;
  /* responsive circular glow: scales with viewport but capped */
  width: clamp(260px, 40vw, 460px);
  height: clamp(260px, 40vw, 460px);
  background: radial-gradient(circle, rgba(193, 150, 48, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  /* slight lift so glow centers visually with the logo */
  transform: translateY(-15%);
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: .7;
  }
}

.hero-visual img {
  width: auto;
  /* a slightly larger logo on wide screens, but fluid and clamped for responsiveness */
  max-width: clamp(320px, 36vw, 560px);
  height: auto;
  position: relative;
  display: block;
  /* subtle lift to visually center the mark with the left content */
  transform: translateY(-15%);
}

/* Stack layout on smaller screens and reduce logo size */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    justify-content: center;
    align-self: center;
    min-height: 0;
    padding-top: 1rem;
  }

  .hero-visual-bg {
    width: clamp(200px, 50vw, 360px);
    height: clamp(200px, 50vw, 360px);
    transform: none;
  }

  .hero-visual img {
    max-width: 360px;
    transform: none;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-s);
  border: 1px solid var(--border-s);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3.5rem;
}

.hero-stat {
  background: var(--surface-1);
  padding: 1.5rem;
  text-align: center;
  transition: background var(--t-base);
}

.hero-stat:hover {
  background: var(--surface-2);
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: var(--fw-xb);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}

.hero-stat span {
  font-size: .83rem;
  color: var(--text-2);
}

/* 9. SECTION COMMON
   ---------------------------------------------------------- */
.section {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
}

.section-alt {
  background: var(--surface-1);
}

.section-header {
  max-width: 58ch;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header .caps {
  margin-bottom: .5rem;
}

.section-header h2 {
  margin-bottom: .8rem;
}

.section-header p {
  color: var(--text-2);
  line-height: 1.7;
}

/*  What we do section (scannable summary) */
.what-we-do {
  margin-top: 1.6rem;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: .6rem;
}

.what-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  color: var(--text-2);
}

.what-card h4 {
  margin: .4rem 0 .6rem;
  color: var(--text);
  font-weight: var(--fw-m);
}

.what-card p,
.what-card ul {
  margin: 0;
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.6;
}

.what-card ul {
  padding-left: 1.1rem;
  margin-top: .4rem;
}

.what-icon {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: .6rem;
}

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

/* Mission / Vision / Values block */
.mv-section {
  margin-bottom: 1.6rem;
}

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

.mv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.mv-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: .5rem;
}

.mv-card h4 {
  margin: 0 0 .4rem;
  color: var(--text);
  font-weight: 600;
}

.mv-card p {
  margin: 0;
  color: var(--text-2);
  line-height: 1.6;
}

.mv-values-list {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--text-2);
}

.mv-values-list li {
  margin-bottom: .35rem;
}

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

/* 10. SERVICE CARDS
   ---------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  /* uniform grid gap for spacing */
  padding: 0.8rem;
  /* slight padding so card borders don't touch container edge */
  background: transparent;
  border-radius: var(--radius-l);
}

/* Reusable base card styles to avoid duplication */
.card,
.service-card {
  background: var(--card);
  border: 1px solid rgba(193, 150, 48, 0.12);
  /* subtle gold border */
  border-radius: 12px;
  padding: 1.8rem;
  /* slightly larger padding to compensate removed numbering */
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* consistent internal spacing */
  min-height: 240px;
  /* ensures more uniform visual height after removal */
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 0%, rgba(193, 150, 48, 0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 150, 48, 0.22);
}

.service-card:hover::before {
  opacity: 1;
}



.service-num {
  display: none;
  /* removed visual numbering per design request */
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  /* slightly larger icon block for balance */
  background: rgba(193, 150, 48, 0.06);
  border: 1px solid rgba(193, 150, 48, 0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--gold);
}

/* SVG inside card icons: explicit smaller size for consistency */
.card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Responsive adjustments for services grid */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card,
  .service-card {
    padding: 1.2rem;
    min-height: auto;
  }
}

.service-card h3 {
  color: var(--text);
  margin: 0;
  font-size: 1rem;
}

.service-card p {
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: var(--fw-m);
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
  /* push CTA to the bottom for consistent alignment */
  transition: gap var(--t-fast), color var(--t-fast);
  position: relative;
  z-index: 2;
}

.card-link:hover {
  gap: .6rem;
  color: var(--gold-l);
}

/* 11. WHY US
   ---------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.why-left .caps {
  margin-bottom: .5rem;
}

.why-left h2 {
  margin-bottom: 1rem;
}

.why-left p {
  color: var(--text-2);
  line-height: 1.75;
}

.why-left .divider {
  margin: 1rem 0;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color var(--t-base), transform var(--t-slow);
}

.why-card:hover {
  border-color: rgba(193, 150, 48, 0.22);
  transform: translateY(-4px);
}

.why-card-icon {
  font-size: 1.2rem;
  margin-bottom: .7rem;
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 150, 48, 0.04);
  border: 1px solid rgba(193, 150, 48, 0.10);
  border-radius: 10px;
}

.why-card h4 {
  font-size: .95rem;
  font-weight: var(--fw-m);
  margin-bottom: .35rem;
}

.why-card p {
  font-size: .86rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* 12. METHODOLOGY
   ---------------------------------------------------------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.method-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-slow);
}

.method-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(193, 150, 48, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.method-card:hover {
  border-color: rgba(193, 150, 48, 0.2);
  transform: translateY(-6px);
}

.method-card:hover::before {
  opacity: 1;
}

.method-num {
  font-size: .7rem;
  letter-spacing: .12em;
  font-weight: var(--fw-b);
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.method-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(193, 150, 48, 0.07);
  border: 1px solid rgba(193, 150, 48, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: var(--gold);
}

.method-card h3 {
  font-size: .98rem;
  margin-bottom: .5rem;
}

.method-card p {
  font-size: .86rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* 13. TRANSPARENCY STRIP
   ---------------------------------------------------------- */
.transparency {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
  background: var(--surface-1);
  position: relative;
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  overflow: hidden;
}

.transparency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(193, 150, 48, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.transparency .inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.transparency .caps {
  margin-bottom: .5rem;
}

.transparency h2 {
  margin-bottom: 1rem;
}

.transparency p {
  color: var(--text-2);
  line-height: 1.78;
  max-width: 64ch;
  margin: 0 auto 2rem;
}

/* 14. PARTNERS
   ---------------------------------------------------------- */
.partners {
  padding: clamp(2.5rem, 5vh, 3.5rem) 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-s);
}

.partners .section-header {
  margin-bottom: 2rem;
}

.partners .section-header p {
  margin: 0;
  color: var(--text-2);
}

.partners-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 158px;
  height: 54px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  filter: grayscale(1) opacity(.5);
  transition: filter var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.partner-item:hover {
  filter: grayscale(0) opacity(1);
  border-color: rgba(193, 150, 48, 0.24);
  transform: translateY(-3px);
}

.partner-item img {
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
}

/* 15. CTA BAND
   ---------------------------------------------------------- */
.cta-band {
  padding: clamp(4rem, 9vh, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(193, 150, 48, 0.07) 0%, transparent 65%);
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--text-2);
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Small expectation line shown below the CTA button */
.cta-expectation {
  width: 100%;
  margin-top: .6rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

/* 16. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border-s);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-brand .logo-sm {
  height: 30px;
  margin-bottom: .9rem;
}

.footer-brand p {
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.72;
  max-width: 33ch;
}

.footer-col h5 {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: var(--fw-b);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: .73rem;
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-s);
  font-size: .83rem;
  color: var(--text-3);
}

/* Footer social links */
.footer-col .social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-col .social-list li {
  display: inline-flex;
}

.footer-col .social-list a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--t-fast), transform var(--t-fast);
}

.footer-col .social-list a i,
.footer-col .social-list a svg {
  color: var(--gold);
  font-size: 1.05rem;
  display: inline-block;
}

.footer-col .social-list a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

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

.footer-bottom-links a {
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-2);
}

/* 17. CONTACT PAGE
   ---------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .caps {
  margin-bottom: .5rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-2);
  line-height: 1.78;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .9rem;
  color: var(--text-2);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(193, 150, 48, 0.07);
  border: 1px solid rgba(193, 150, 48, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .88rem;
  flex-shrink: 0;
  transition: transform var(--t-base), box-shadow var(--t-fast), color var(--t-fast), background var(--t-fast);
  cursor: pointer;
}

.contact-detail-icon i.bi {
  font-size: 1.05rem;
  line-height: 1;
  display: block;
  color: currentColor;
}

.contact-detail-icon:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 12px 34px var(--gold-glow);
  background: linear-gradient(180deg, rgba(193, 150, 48, 0.14), rgba(193, 150, 48, 0.04));
  color: var(--gold-l);
}

.contact-detail-icon:active {
  transform: translateY(-2px) scale(0.98);
}

.contact-detail-icon:focus {
  outline: 2px solid rgba(193, 150, 48, 0.12);
  outline-offset: 2px;
}

/* subtle icon motion */
.contact-detail-icon i,
.contact-detail-icon svg {
  transition: transform var(--t-fast) ease, color var(--t-fast);
}

.contact-detail-icon:hover i,
.contact-detail-icon:hover svg {
  transform: rotate(-8deg) scale(1.08);
  color: inherit;
}

/* Footer social icons hover sync */
.footer-col .social-list a:hover i,
.footer-col .social-list a:hover svg {
  transform: translateY(-3px) scale(1.06);
  color: var(--gold-l);
}

@media (prefers-reduced-motion: reduce) {

  .contact-detail-icon,
  .contact-detail-icon i,
  .contact-detail-icon svg,
  .footer-col .social-list a i,
  .footer-col .social-list a svg {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 1.4rem;
}

/* CONTACT CTA CARDS */
.contact-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  margin-top: 1.6rem;
}

.contact-ctas {
  align-items: start;
}

/* Emphasize WhatsApp as primary contact */
.contact-ctas .contact-cta.whatsapp-priority {
  border: 1px solid rgba(193, 150, 48, 0.18);
  background: linear-gradient(180deg, rgba(193, 150, 48, 0.12), rgba(193, 150, 48, 0.04));
  box-shadow: 0 10px 30px rgba(193, 150, 48, 0.08);
}

.contact-ctas .contact-cta.whatsapp-priority .cta-body h4 {
  color: var(--gold);
}

@media (min-width: 900px) {

  /* Desktop: show CTAs in a row with WhatsApp first */
  .contact-ctas {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-ctas .contact-cta {
    align-items: center;
  }
}

/* Make non-WhatsApp CTAs visually darker/subtle to increase WhatsApp prominence */
.contact-ctas .contact-cta:not(.whatsapp-priority) {
  background: rgba(255, 255, 255, 0.01);
  border-color: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
}

.contact-ctas .contact-cta:not(.whatsapp-priority) .cta-icon {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
}

.contact-ctas .contact-cta:not(.whatsapp-priority) .cta-body h4 {
  color: var(--text-2);
}

.contact-ctas .contact-cta:not(.whatsapp-priority) .cta-body p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.contact-cta:focus-visible {
  outline: 2px solid rgba(193, 150, 48, 0.14);
  outline-offset: 3px;
}

.contact-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 34px var(--gold-glow);
  border-color: rgba(193, 150, 48, 0.18);
}

.contact-cta .cta-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(193, 150, 48, 0.04);
  border: 1px solid rgba(193, 150, 48, 0.10);
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-cta h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: var(--fw-m);
  color: var(--text);
}

.contact-cta p {
  margin: 0;
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.3;
}

@media (min-width: 900px) {

  /* On wider screens keep the cards stacked to align with the left column */
  .contact-ctas {
    grid-template-columns: 1fr;
  }
}

.form-grid {
  display: grid;
  gap: 0rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.form-group label {
  font-size: .80rem;
  font-weight: var(--fw-m);
  color: var(--text-2);
  letter-spacing: .03em;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .6rem .85rem;
  color: var(--text);
  font-family: var(--ff);
  font-size: .9rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
}

.form-group select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .72rem 1rem;
  color: var(--text);
  font-family: var(--ff);
  font-size: .9rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-2) 50%), linear-gradient(135deg, var(--text-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Try to enforce dark dropdown where browsers allow it */
.form-group select option {
  background: var(--card);
  color: var(--text);
}

/* For WebKit browsers that support internal listbox styling */
select::-webkit-dropdown-list,
select::-webkit-calendar-picker-indicator {
  background: var(--card);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(193, 150, 48, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

/* ==========================
   FAQ (Accordion) Styles
   ========================== */
.faq-section {
  padding: clamp(2.5rem, 6vh, 4.5rem) 0;
}

.faq-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.faq-category {
  font-weight: var(--fw-b);
  color: var(--gold);
  margin: 2rem 0 1rem;
  font-size: .95rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: .85rem;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: 1rem 1.1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text);
  font-weight: var(--fw-m);
  font-size: .95rem;
  text-align: left;
}

.faq-q:focus {
  outline: 2px solid rgba(193, 150, 48, 0.14);
  outline-offset: 2px;
}

.faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(193, 150, 48, 0.04);
  color: var(--gold);
  font-weight: var(--fw-b);
  transition: transform var(--t-base), background var(--t-base);
}

.faq-icon.open {
  transform: rotate(45deg) scale(1.06);
  background: linear-gradient(180deg, rgba(193, 150, 48, 0.12), rgba(193, 150, 48, 0.04));
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.7;
  transition: max-height var(--t-slow), padding var(--t-base);
}

.faq-a.open {
  padding: 1rem 1.1rem 1.25rem;
}

/* Smooth height animation using max-height fallback for older browsers */
.faq-a-inner {
  padding-bottom: .25rem;
}

@media (max-width: 720px) {
  .faq-wrap {
    padding: 0 6px;
  }

  .faq-q {
    padding: 1rem;
    font-size: .95rem;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .faq-icon,
  .faq-a {
    transition: none !important;
  }
}

.field-error {
  margin-top: .45rem;
  font-size: .82rem;
  color: #ff8a8a;
  min-height: 1.1rem;
}

.input-error {
  border-color: rgba(255, 90, 90, 0.9) !important;
  box-shadow: 0 6px 18px rgba(255, 90, 90, 0.06);
}

.input-success {
  border-color: rgba(60, 200, 120, 0.9) !important;
  box-shadow: 0 6px 18px rgba(60, 200, 120, 0.04);
}

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

/* Make form button slightly more compact within the card */
.form-card .btn {
  padding: .64rem 1.1rem;
  font-size: .88rem;
}

/* 18. PAGE HERO (subpages)
   ---------------------------------------------------------- */
.page-hero {
  padding: clamp(1rem, 1vh, 3rem) 0 clamp(2rem, 5vh, 3rem);
  border-bottom: 1px solid var(--border-s);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(193, 150, 48, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .caps {
  margin-bottom: .5rem;
  position: relative;
}

.page-hero h1 {
  margin-bottom: .8rem;
  position: relative;
}

.page-hero p {
  color: var(--text-2);
  max-width: 58ch;
  line-height: 1.75;
  position: relative;
}

/* 19. ABOUT PAGE
   ---------------------------------------------------------- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.about-value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  transition: border-color var(--t-base), transform var(--t-slow);
}

.about-value-card:hover {
  border-color: rgba(193, 150, 48, 0.2);
  transform: translateY(-4px);
}

.about-value-card .card-icon {
  margin-bottom: 1rem;
}

.about-value-card h3 {
  margin-bottom: .5rem;
}

.about-value-card p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Specific layout for the 'O Que Nos Move' values grid (prevent 3+1 wrapping) */
.about-values.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  align-items: stretch;
  justify-items: stretch;
  margin-top: .6rem;
}

.about-values.values-grid .about-value-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
}

.about-values.values-grid .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-values.values-grid h3 {
  margin-bottom: .5rem;
}

.about-values.values-grid p {
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.66;
}

@media (max-width: 1024px) {
  .about-values.values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .about-values.values-grid {
    grid-template-columns: 1fr;
  }
}

/* 20. REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: none;
}

/* 21. SERVICES PAGE
   ---------------------------------------------------------- */

/* Overview strip */
.services-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--border-s);
  border: 1px solid var(--border-s);
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-top: 2.5rem;
  align-items: stretch;
}

.svc-overview-item {
  background: var(--card);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  text-decoration: none;
  color: inherit;
  transition: background var(--t-base), transform var(--t-slow);
  position: relative;
  overflow: hidden;
  flex: 1 1 180px;
  min-width: 140px;
  box-sizing: border-box;
  justify-content: center;
}

.svc-overview-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.svc-overview-item:hover {
  background: #1b1b1b;
  transform: translateY(-3px);
}

.svc-overview-item:hover::after {
  transform: scaleX(1);
}

.svc-overview-item .svc-ov-icon {
  width: 44px;
  height: 44px;
  background: rgba(193, 150, 48, 0.08);
  border: 1px solid rgba(193, 150, 48, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.svc-overview-item .svc-ov-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-overview-item span {
  display: block;
  font-size: .82rem;
  font-weight: var(--fw-m);
  color: var(--text-2);
  line-height: 1.3;
}

.svc-overview-item:hover span {
  color: var(--text);
}

/* Small tag shown in the services overview for recommended starting point */
.svc-start-tag {
  display: inline-block;
  font-size: .72rem;
  color: var(--gold);
  background: rgba(193, 150, 48, 0.06);
  padding: .18rem .5rem;
  border-radius: 999px;
  margin-top: .25rem;
  font-weight: var(--fw-m);
}

/* Individual service detail section */
.service-detail {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.service-detail:nth-child(even) {
  background: var(--surface-1);
}

.service-detail::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at var(--glow-x, 10%) 50%, rgba(193, 150, 48, 0.05) 0%, transparent 65%);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-inner.reverse {
  direction: rtl;
}

.service-detail-inner.reverse>* {
  direction: ltr;
}

.svc-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.svc-number {
  font-size: .72rem;
  font-weight: var(--fw-b);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Badge used inside the service detail to highlight the recommended entry point */
.svc-badge {
  display: inline-block;
  font-size: .82rem;
  color: var(--gold);
  background: rgba(193, 150, 48, 0.06);
  padding: .26rem .6rem;
  border-radius: 999px;
  margin-bottom: .6rem;
  font-weight: var(--fw-m);
}

/* Small tag used on service cards in the home grid */
.service-card .svc-card-tag {
  display: inline-block;
  font-size: .7rem;
  color: var(--gold);
  background: rgba(193, 150, 48, 0.06);
  padding: .14rem .5rem;
  border-radius: 999px;
  margin-bottom: .6rem;
  font-weight: var(--fw-m);
}

.svc-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(193, 150, 48, 0.08);
  border: 1px solid rgba(193, 150, 48, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.svc-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}

.svc-content>p {
  color: var(--text-2);
  line-height: 1.78;
  font-size: .98rem;
}

.svc-ideal {
  background: rgba(193, 150, 48, 0.05);
  border: 1px solid rgba(193, 150, 48, 0.14);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}

.svc-ideal .svc-ideal-label {
  font-size: .68rem;
  letter-spacing: .12em;
  font-weight: var(--fw-b);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}

.svc-ideal p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* Included panel */
.svc-included {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 2rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.svc-included::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-l) 100%);
}

.svc-included-title {
  font-size: .72rem;
  letter-spacing: .12em;
  font-weight: var(--fw-b);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.svc-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.svc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  color: var(--text-2);
  line-height: 1.55;
}

.svc-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: .1rem;
  background: rgba(193, 150, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.svc-check-icon svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Services stats strip */
.svc-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-s);
}

.svc-stat-item {
  text-align: center;
}

.svc-stat-item strong {
  display: block;
  font-size: 2.2rem;
  font-weight: var(--fw-xb);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}

/* 22. CUSTOM SCROLLBAR (global)
   ---------------------------------------------------------- */
/* WebKit browsers (Chrome, Edge, Safari) */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-l) 100%);
  border-radius: 999px;
  border: 3px solid transparent;
  /* creates padding between thumb and track */
  background-clip: padding-box;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

*::-webkit-scrollbar-thumb:hover {
  filter: brightness(1.03);
}

*::-webkit-scrollbar-thumb:active,
*::-webkit-scrollbar-thumb:focus {
  outline: 2px solid rgba(193, 150, 48, 0.14);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

/* Accessibility: ensure minimum hit target on small thumbs */
@media (pointer: coarse) {
  *::-webkit-scrollbar {
    width: 18px;
    height: 18px;
  }
}

.svc-stat-item span {
  font-size: .85rem;
  color: var(--text-2);
}

/* 22. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

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

  .hero-sub {
    max-width: 70ch;
    margin-inline: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-left .divider {
    margin: 1rem auto;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .services-overview {
    /* 3 columns on wider tablets */
  }

  .svc-overview-item {
    flex: 1 1 32%;
    min-width: 200px;
  }

  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-detail-inner.reverse {
    direction: ltr;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .why-cards {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .partners-strip {
    gap: .5rem;
  }

  .partner-item {
    width: 130px;
  }

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

  .services-overview {
    /* 2 columns on small tablets */
  }

  .svc-overview-item {
    flex: 1 1 48%;
    min-width: 45%;
  }

  .svc-stats-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Form status and validation tweaks for contact page */
.form-status {
  margin-top: .8rem;
  font-size: .95rem;
  color: var(--text-2);
}

.form-status.success {
  color: #7fe3a3;
}

.form-status.error {
  color: #ff9b9b;
}

/* Ensure field-error is visually consistent on small screens */
.field-error {
  font-size: .82rem;
  color: #ff8a8a;
  min-height: 1.1rem;
}

@media (max-width: 420px) {
  .form-card {
    padding: 1.2rem;
  }

  .form-grid {
    gap: .9rem;
  }

  .btn {
    padding: .62rem 1rem;
    font-size: .86rem;
  }

  .services-overview {
    gap: 1px;
  }

  .svc-overview-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
}