/* ============================================================
   AURUM GATEWAY SOLUTIONS — SHARED STYLESHEET
   Version: 1.0
   ============================================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --bg-primary:        #0a0a0a;
  --bg-secondary:      #0f0f0f;
  --bg-card:           #141414;
  --bg-card-hover:     #1a1a1a;
  --bg-section-alt:    #111111;

  --gold:              #C5A55A;
  --gold-dark:         #917631;
  --gold-light:        #d4b96e;
  --gold-muted:        rgba(197, 165, 90, 0.15);
  --gold-border:       rgba(197, 165, 90, 0.3);
  --gold-border-hover: rgba(197, 165, 90, 0.7);

  --text-primary:      #f0ece4;
  --text-secondary:    #a09880;
  --text-muted:        #6b6458;
  --text-white:        #ffffff;

  --border-subtle:     rgba(255, 255, 255, 0.06);
  --border-card:       rgba(197, 165, 90, 0.12);
  --overlay-dark:      rgba(10, 10, 10, 0.82);
  --overlay-hero:      linear-gradient(160deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.92) 100%);

  /* Fonts */
  --font-heading:      'Cinzel', Georgia, serif;
  --font-body:         'Montserrat', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Layout */
  --container-max:   1240px;
  --container-wide:  1440px;
  --header-height:   80px;
  --radius-sm:       4px;
  --radius-md:       8px;
  --radius-lg:       12px;
  --radius-xl:       20px;

  /* Shadows */
  --shadow-card:       0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.6);
  --shadow-gold:       0 0 32px rgba(197, 165, 90, 0.18);
  --shadow-gold-hover: 0 0 48px rgba(197, 165, 90, 0.32);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   280ms ease;
  --transition-slow:   500ms ease;
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

::selection {
  background: var(--gold-muted);
  color: var(--gold-light);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--sm {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--bg-section-alt);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 2.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.8;
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0a0a0a;
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(197, 165, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197, 165, 90, 0.45);
  color: #0a0a0a;
}

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

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border-hover);
}

.btn-outline:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
  transform: translateY(-2px);
  border-color: var(--gold);
}

.btn-sm {
  padding: 0.625rem 1.375rem;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 0.85rem;
}

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin: var(--space-md) auto var(--space-xl);
}

.gold-divider--left {
  margin-left: 0;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

#header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle), 0 4px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* Main Nav */
.nav-main {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-main > li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: var(--gold-muted);
}

.nav-link--cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0a0a !important;
  padding: 0.5rem 1.375rem;
  font-weight: 700;
  margin-left: var(--space-sm);
}

.nav-link--cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(197, 165, 90, 0.4);
}

/* Dropdown arrow */
.nav-link .arrow {
  font-size: 0.55rem;
  transition: transform var(--transition-base);
  opacity: 0.6;
}

.nav-main > li:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #161616;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  box-shadow: var(--shadow-card);
  z-index: 100;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #161616;
  border-left: 1px solid var(--border-card);
  border-top: 1px solid var(--border-card);
  transform: translateX(-50%) rotate(45deg);
}

.nav-main > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-dropdown a:hover {
  color: var(--gold-light);
  background: var(--gold-muted);
}

.nav-dropdown a .dd-icon {
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-base);
  flex-shrink: 0;
  z-index: 1010;
}

.hamburger:hover {
  background: rgba(197, 165, 90, 0.25);
}

.hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.mobile-nav.visible {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  padding: var(--space-sm) var(--space-xl);
  transition: color var(--transition-base);
}

.mobile-nav a:hover {
  color: var(--gold-light);
}

.mobile-nav .mobile-cta {
  margin-top: var(--space-lg);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  background: linear-gradient(180deg, #0e0e0e 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,165,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-base);
}

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

.breadcrumb .sep {
  color: var(--gold-dark);
}

.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 12s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}

/* Decorative noise texture */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xl);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  color: var(--text-white);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(240, 236, 228, 0.75);
  max-width: 540px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

/* Price Promo Box */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-lg);
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-xl);
  backdrop-filter: blur(12px);
}

.promo-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.promo-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.promo-currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  vertical-align: super;
  font-family: var(--font-body);
}

.promo-suffix {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  display: block;
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-indicator .mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--gold-border);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-indicator .wheel {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-wheel 1.8s infinite;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(197,165,90,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

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

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: rgba(197, 165, 90, 0.2);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(197, 165, 90, 0.2);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition-base), color var(--transition-base);
  position: relative;
  z-index: 1;
}

.service-link:hover {
  gap: var(--space-sm);
  color: var(--gold-light);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, #0e0e0e 0%, #111 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.stat-item {
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  position: relative;
  transition: background var(--transition-base);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(197, 165, 90, 0.03);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--gold-border-hover);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
}

.feature-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   MULTILINGUAL BANNER
   ============================================================ */
.multilingual-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: var(--space-2xl) 0;
}

.multilingual-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.multilingual-banner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a0a0a;
}

.multilingual-banner p {
  color: rgba(10,10,10,0.7);
  font-size: 0.9rem;
}

.lang-flags {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.lang-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 2rem;
  line-height: 1;
}

.lang-flag span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
  font-family: var(--font-body);
}

/* ============================================================
   PAYMENTS SECTION
   ============================================================ */
.payments-section {
  background: var(--bg-section-alt);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.payment-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-xl);
  transition: all var(--transition-base);
}

.payment-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-2px);
}

.payment-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.payment-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

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

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 0.8;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: var(--space-md);
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0.1em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
}

.author-title {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.blog-thumb {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  position: relative;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}

.blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.2;
}

.blog-category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.blog-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.blog-meta .sep {
  color: var(--gold-dark);
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
  transition: color var(--transition-base);
}

.blog-card:hover h3 {
  color: var(--gold-light);
}

.blog-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--transition-base);
}

.blog-read-more:hover {
  gap: var(--space-sm);
  color: var(--gold-light);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0f0e0c 0%, #0a0a0a 50%, #0d0c0a 100%);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,165,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #060606;
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-5xl) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand .logo {
  margin-bottom: var(--space-lg);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 320px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-info a,
.footer-contact-info span {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-contact-info .ci-icon {
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  color: var(--gold-dark);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color var(--transition-base), gap var(--transition-base);
}

.footer-links a::before {
  content: '›';
  color: var(--gold-dark);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-links a:hover::before {
  color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-copyright strong {
  color: var(--text-secondary);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-selector span {
  color: var(--text-muted);
}

.lang-selector a {
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.lang-selector a:hover,
.lang-selector a.active {
  color: var(--gold-light);
  background: var(--gold-muted);
}

.lang-selector .sep {
  color: var(--border-subtle);
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-3xl);
  align-items: start;
}

.service-detail-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: var(--space-lg);
  color: var(--text-white);
}

.service-detail-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-xl);
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-feature-item:last-child {
  border-bottom: none;
}

.sfi-check {
  width: 22px;
  height: 22px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Sticky Sidebar */
.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.sidebar-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-price {
  text-align: center;
  padding: var(--space-xl) 0;
}

.sidebar-price .price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.sidebar-price .price-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.sidebar-price .price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gold-dark), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.value-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-3px);
}

.value-card .v-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.ci-circle {
  width: 46px;
  height: 46px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.ci-value {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ci-value a {
  color: var(--text-secondary);
}

.ci-value a:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-border-hover);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23917631' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

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

/* ============================================================
   BLOG POST (Article)
   ============================================================ */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-3xl);
  align-items: start;
}

.article-hero {
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
  background: var(--bg-card);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.article-tag {
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.article-date,
.article-readtime {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: var(--space-2xl) 0 var(--space-md);
}

.article-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  margin: var(--space-xl) 0 var(--space-sm);
}

.article-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
  margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--space-md) var(--space-xl);
  background: var(--gold-muted);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-xl) 0;
}

.article-content blockquote p {
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll-triggered animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* Hero animation */
.hero-content {
  animation: fadeInUp 1s ease both;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 46px;
  height: 46px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition-base);
  z-index: 900;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(197, 165, 90, 0.25);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  margin-top: var(--space-2xl);
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto var(--space-lg);
}

.step-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.step-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1200px */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border-subtle);
    border-right: none;
  }

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

  .process-steps::before {
    display: none;
  }
}

/* 992px */
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  .hamburger {
    display: flex;
  }

  .nav-main {
    display: none;
  }

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

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

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

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

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

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

  .contact-info-card {
    position: static;
  }

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

  .multilingual-banner .container {
    flex-direction: column;
    text-align: center;
  }
}

/* 768px */
@media (max-width: 768px) {
  :root {
    --space-5xl: 5rem;
    --space-4xl: 3.5rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

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

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

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

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

  .features-list {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .form-group--full {
    grid-column: auto;
  }

  .cta-actions {
    flex-direction: column;
  }

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

  .hero-promo {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* 480px */
@media (max-width: 480px) {
  :root {
    --space-5xl: 4rem;
    --space-4xl: 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .logo-tagline {
    display: none;
  }

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

  .stat-item {
    padding: var(--space-xl) var(--space-md);
  }

  .back-to-top {
    right: var(--space-md);
    bottom: var(--space-md);
  }
}


/* ============================================================
   INNER PAGES — ADDITIONAL CLASSES
   Appended 2026-05-06
   ============================================================ */

/* ============================================================
   PAGE HERO (inner page full-width banner)
   ============================================================ */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.65) 40%,
    rgba(10, 10, 10, 0.88) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: var(--container-max);
  padding: 0 var(--space-xl);
  width: 100%;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-sm {
  height: 250px;
}

.page-hero-sub,
.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   CARDS SYSTEM
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.cards-grid-2,
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.cards-grid-3,
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.cards-grid-4,
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.card-dark {
  background: var(--bg-primary);
  border-color: var(--border-subtle);
}

.card-dark:hover {
  border-color: var(--gold-border);
  background: var(--bg-card);
}

.card-gold {
  border-color: var(--gold-border-hover);
}

.card-gold:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold-hover);
}

.card-highlight {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(197, 165, 90, 0.15);
}

.card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.card-highlight:hover {
  box-shadow: var(--shadow-gold-hover);
}

.card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(197, 165, 90, 0.06) 0%, var(--bg-card) 40%);
}

.card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.card-featured:hover {
  box-shadow: var(--shadow-gold-hover);
}

.card-compact {
  padding: var(--space-lg);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-lg);
  color: var(--gold);
  display: block;
}

.card-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ============================================================
   NAVIGATION — INNER PAGES (nav-list, has-dropdown, dropdown)
   ============================================================ */
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-dropdown {
  position: relative;
}

.has-dropdown > .dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #161616;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  box-shadow: var(--shadow-card);
  z-index: 100;
}

.has-dropdown > .dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #161616;
  border-left: 1px solid var(--border-card);
  border-top: 1px solid var(--border-card);
  transform: translateX(-50%) rotate(45deg);
}

.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.dropdown a:hover {
  color: var(--gold-light);
  background: var(--gold-muted);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0a0a !important;
  padding: 0.5rem 1.375rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(197, 165, 90, 0.4);
  color: #0a0a0a !important;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section-alt,
.section-dark {
  background-color: var(--bg-section-alt);
}

.section-sub {
  padding: var(--space-3xl) 0;
}

.section-map {
  padding: 0;
  position: relative;
}

.text-block {
  max-width: 760px;
  line-height: 1.85;
}

.text-block p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

.text-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: var(--space-2xl) 0 var(--space-md);
}

.text-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  margin: var(--space-xl) 0 var(--space-sm);
}

.text-block ul,
.text-block ol {
  margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
}

.text-block ul { list-style: disc; }
.text-block ol { list-style: decimal; }

.text-block li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.content-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-2xl);
  max-width: 740px;
}

.image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: var(--space-2xl) 0;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* ============================================================
   FOOTER ADDITIONS
   ============================================================ */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--space-sm);
  line-height: 1.6;
}

/* lang-selector already exists above — no duplicate needed */

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.process-step:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-3px);
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
}

.step-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline {
  position: relative;
  padding-left: var(--space-3xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-2xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  width: 30px;
  height: 30px;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  left: calc(-1 * var(--space-3xl));
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-marker::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-content {
  flex: 1;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE ADDITIONS
   ============================================================ */
.team-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition-base);
}

.team-badge:hover {
  border-color: var(--gold);
  background: rgba(197, 165, 90, 0.2);
}

.badge-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto var(--space-lg);
}

.credentials-block {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.credentials-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.license-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.license-card:hover {
  border-color: var(--gold-border-hover);
}

.license-card h3,
.license-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.license-detail {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.license-detail:last-of-type {
  border-bottom: none;
}

.license-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 140px;
  flex-shrink: 0;
}

.license-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.license-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE ADDITIONS
   ============================================================ */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: var(--gold-border-hover);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.04em;
}

.contact-card p,
.contact-card a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--gold);
}

.form-row {
  display: flex;
  gap: var(--space-md);
}

.form-row > * {
  flex: 1;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.6) contrast(1.1);
  transition: filter var(--transition-slow);
}

.map-wrapper:hover iframe {
  filter: grayscale(0.4) brightness(0.7) contrast(1.05);
}

.map-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin: var(--space-2xl) 0 var(--space-md);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin: var(--space-xl) 0 var(--space-sm);
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
  margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
}

.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.legal-toc h3,
.legal-toc h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.legal-toc ol {
  list-style: decimal;
  margin-left: var(--space-xl);
}

.legal-toc li {
  margin-bottom: var(--space-xs);
}

.legal-toc a {
  font-size: 0.88rem;
  color: var(--gold);
  transition: color var(--transition-base);
}

.legal-toc a:hover {
  color: var(--gold-light);
}

.legal-contact-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.legal-contact-box h3,
.legal-contact-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.legal-contact-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-contact-box a {
  color: var(--gold);
}

.legal-contact-box a:hover {
  color: var(--gold-light);
}

/* ============================================================
   BLOG ARTICLES — CHECKLIST
   ============================================================ */
.checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 var(--space-lg);
}

.checklist li {
  position: relative;
  padding-left: var(--space-xl);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.checklist-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

/* ============================================================
   CTA SECTIONS — ADDITIONS
   ============================================================ */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cta-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  text-align: center;
}

/* ============================================================
   STATS ADDITIONS
   ============================================================ */
.stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  line-height: 1.5;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: inherit;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--gold-border-hover);
}

.faq-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.faq-item h4::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-left: calc(26px + var(--space-sm));
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.faq-list .faq-item {
  width: 100%;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.btn-full {
  width: 100%;
  justify-content: center;
}

.required {
  color: #e74c3c;
  font-weight: 700;
  margin-left: 0.15rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.feature-list li {
  position: relative;
  padding-left: var(--space-xl);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE — INNER PAGES
   ============================================================ */

/* 1200px */
@media (max-width: 1200px) {
  .cards-grid-4,
  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

/* 992px */
@media (max-width: 992px) {
  .page-hero {
    height: 320px;
    margin-top: 70px;
  }

  .page-hero-sm {
    height: 200px;
  }

  .cards-grid,
  .cards-grid-3,
  .three-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col-grid {
    grid-template-columns: 1fr;
  }

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

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

  /* Dropdown: no hover on touch — rely on mobile nav */
  .has-dropdown > .dropdown {
    display: none;
  }

  .nav-list {
    display: none;
  }

  .timeline {
    padding-left: var(--space-2xl);
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-marker {
    left: calc(-1 * var(--space-2xl));
    width: 22px;
    height: 22px;
  }

  .timeline-marker::after {
    width: 8px;
    height: 8px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .page-hero {
    height: 280px;
  }

  .page-hero-sm {
    height: 180px;
  }

  .page-hero-content h1 {
    font-size: 1.75rem;
  }

  .cards-grid,
  .cards-grid-2,
  .cards-grid-3,
  .cards-grid-4,
  .two-col,
  .three-col,
  .four-col {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .map-wrapper {
    height: 280px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .team-badges {
    flex-direction: column;
    align-items: center;
  }

  .license-detail {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .license-label {
    min-width: auto;
  }

  .contact-info-wrapper {
    gap: var(--space-md);
  }
}

/* 480px */
@media (max-width: 480px) {
  .page-hero {
    height: 220px;
  }

  .page-hero-sm {
    height: 160px;
  }

  .card {
    padding: var(--space-lg);
  }

  .legal-content {
    padding: var(--space-xl) 0;
  }

  .legal-toc {
    padding: var(--space-md);
  }

  .faq-item {
    padding: var(--space-md);
  }

  .faq-item h4::before {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }

  .faq-item p {
    padding-left: calc(22px + var(--space-sm));
  }

  .timeline {
    padding-left: var(--space-xl);
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-marker {
    left: calc(-1 * var(--space-xl));
    width: 18px;
    height: 18px;
  }

  .timeline-marker::after {
    width: 6px;
    height: 6px;
  }
}

/* ============================================================
   DROPDOWN FIX — invisible hover bridge
   ============================================================ */
.has-dropdown > .dropdown {
  top: 100% !important;
  padding-top: 12px !important;
  transform: translateX(-50%) !important;
}
.has-dropdown:hover > .dropdown {
  transform: translateX(-50%) !important;
}
.has-dropdown > .dropdown::before {
  top: 6px !important;
}

/* Homepage nav-dropdown (uses different class names) */
.nav-main > li {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #161616;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  min-width: 240px;
  padding: 12px 0;
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  box-shadow: var(--shadow-card);
  z-index: 100;
  list-style: none;
}
.nav-main > li:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.nav-dropdown li a:hover {
  color: var(--gold);
  background: rgba(197, 165, 90, 0.08);
}

/* Language selector in footer */
.lang-selector { display: flex; gap: 8px; align-items: center; }
.lang-selector a { color: var(--text-muted); text-decoration: none; font-size: 13px; }
.lang-selector a.active { color: var(--gold); font-weight: 600; }
.lang-selector a:hover { color: var(--gold-light); }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ============================================================
   BLOG — FEATURED ARTICLE + CARD ENHANCEMENTS
   ============================================================ */

/* Section label */
.section-dark {
  background: var(--bg-secondary, #111);
}

/* Featured article */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl, 3rem);
  align-items: center;
  margin-top: var(--space-xl, 2rem);
  background: var(--bg-card, #141414);
  border: 1px solid var(--border-card, #222);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
}

.blog-featured-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-image img {
  transform: scale(1.04);
}

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold, #C5A55A);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  z-index: 2;
}

.blog-featured-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
}

.blog-featured-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white, #fff);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-featured-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-featured-content h2 a:hover {
  color: var(--gold-light, #d4b96a);
}

.blog-featured-content p {
  font-size: 0.92rem;
  color: var(--text-muted, #999);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Blog meta (author, date, read time) */
.blog-author {
  font-weight: 600;
  color: var(--gold, #C5A55A);
}

.blog-sep {
  color: var(--gold-dark, #8a7340);
  margin: 0 0.15rem;
}

.blog-date,
.blog-read-time {
  font-size: 0.78rem;
  color: var(--text-muted, #999);
}

/* Blog tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.blog-tag {
  display: inline-block;
  background: rgba(197, 165, 90, 0.1);
  border: 1px solid rgba(197, 165, 90, 0.25);
  color: var(--gold, #C5A55A);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

/* Blog card — image link */
.blog-card-image-link {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.blog-card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image-link img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold, #C5A55A);
  color: #0a0a0a;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  z-index: 2;
}

/* Blog card content */
.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted, #999);
  margin-bottom: 0.75rem;
}

.blog-card-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white, #fff);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.blog-card-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 a {
  color: var(--gold-light, #d4b96a);
}

.blog-card-content p {
  font-size: 0.83rem;
  color: var(--text-muted, #999);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* Blog card tags */
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.blog-card-tags span {
  display: inline-block;
  background: rgba(197, 165, 90, 0.08);
  border: 1px solid rgba(197, 165, 90, 0.2);
  color: var(--gold, #C5A55A);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

/* CTA sub text */
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-muted, #999);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============================================================
   BLOG — RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    min-height: 240px;
  }

  .blog-featured-content {
    padding: 1.5rem;
  }

  .blog-featured-content h2 {
    font-size: 1.25rem;
  }

  .blog-card-image-link {
    height: 180px;
  }

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

@media (max-width: 480px) {
  .blog-featured-content h2 {
    font-size: 1.1rem;
  }

  .blog-featured-content {
    padding: 1.25rem;
  }
}

/* ============================================================
   BLOG ARTICLE — FULL LAYOUT STYLES
   ============================================================ */

/* Article hero — used as background banner on article pages */
.article-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  margin-bottom: 0;
  overflow: visible;
}

.article-hero .container {
  position: relative;
  z-index: 2;
}

.article-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0.75rem 0 1rem;
  max-width: 800px;
}

.article-category-badge {
  display: inline-block;
  background: var(--gold, #C5A55A);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.article-hero .article-meta {
  margin-bottom: 0;
}

.article-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light, #d4b96a);
}

.article-read-time {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.meta-sep {
  color: rgba(255,255,255,0.4);
  margin: 0 0.2rem;
}

/* Article layout — two column */
.article-layout {
  padding: 3rem 0;
}

.article-body {
  min-width: 0;
}

.article-intro {
  font-size: 1.1rem;
  color: var(--text-secondary, #ccc);
  line-height: 1.85;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-card, #222);
}

/* Table of contents */
.article-toc {
  background: var(--bg-card, #141414);
  border: 1px solid var(--border-card, #222);
  border-radius: var(--radius-lg, 12px);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.article-toc h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #C5A55A);
  margin-bottom: 1rem;
}

.article-toc ol {
  list-style: decimal;
  padding-left: 1.2rem;
}

.article-toc li {
  margin-bottom: 0.5rem;
}

.article-toc a {
  font-size: 0.88rem;
  color: var(--text-secondary, #ccc);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-toc a:hover {
  color: var(--gold, #C5A55A);
}

/* Article CTA box inside article body */
.article-cta {
  background: linear-gradient(135deg, rgba(197,165,90,0.08) 0%, rgba(197,165,90,0.03) 100%);
  border: 1px solid rgba(197,165,90,0.25);
  border-radius: var(--radius-lg, 12px);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.article-cta h3 {
  font-size: 1.3rem;
  color: var(--text-white, #fff);
  margin-bottom: 0.75rem;
}

.article-cta p {
  color: var(--text-muted, #999);
  margin-bottom: 1.25rem;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--bg-card, #141414);
  border: 1px solid var(--border-card, #222);
  border-radius: var(--radius-lg, 12px);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold, #C5A55A);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-card, #222);
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-links li {
  margin-bottom: 0.6rem;
}

.sidebar-links a {
  font-size: 0.85rem;
  color: var(--text-secondary, #ccc);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-links a:hover {
  color: var(--gold, #C5A55A);
}

.sidebar-cta {
  background: linear-gradient(135deg, rgba(197,165,90,0.12) 0%, rgba(197,165,90,0.04) 100%);
  border: 1px solid rgba(197,165,90,0.3);
  border-radius: var(--radius-lg, 12px);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sidebar-cta h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white, #fff);
  margin-bottom: 0.5rem;
  border: none;
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
}

.sidebar-cta p {
  font-size: 0.82rem;
  color: var(--text-muted, #999);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.btn-full {
  display: block;
  width: 100%;
  text-align: center;
}

.sidebar-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-facts li {
  font-size: 0.82rem;
  color: var(--text-secondary, #ccc);
  line-height: 1.6;
  margin-bottom: 0.65rem;
  padding-left: 1.2rem;
  position: relative;
}

.sidebar-facts li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold, #C5A55A);
  font-weight: 700;
}

/* Blog grid variant */
.blog-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================================
   BLOG ARTICLE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .article-hero {
    min-height: 280px;
    padding: 2rem 0;
  }

  .article-hero h1 {
    font-size: 1.5rem;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-grid-3 {
    grid-template-columns: 1fr;
  }

  .article-toc {
    padding: 1.25rem;
  }
}
