/* ===================================
   UXIONO Market Capital - Premium Corporate Stylesheet
   Dark Navy/Gold Theme with Spanish Content
   =================================== */

/* CSS Custom Properties */
:root {
  /* Color Palette - Premium Dark/Gold */
  --bg-deep: #080A12;
  --bg-mid: #0E1120;
  --bg-card: #111827;
  --bg-tertiary: #1a1f2e;
  --gold: #D4AF37;
  --gold-light: #F5E6A8;
  --gold-dim: #B8941F;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --white: #F5F5F0;
  --white-dim: rgba(245,245,240,0.65);
  --white-faint: rgba(245,245,240,0.12);
  --text-primary: #F5F5F0;
  --text-secondary: rgba(245,245,240,0.7);
  --text-muted: rgba(245,245,240,0.5);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing System */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  --spacing-xxxl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container */
  --container-max-width: 1400px;
  --container-padding: 2rem;
}

/* ===================================
   Base Styles & Reset
   =================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   Custom Cursor
   =================================== */
.cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}

.cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--spacing-md);
  max-width: 65ch;
}

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

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

em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  font-weight: 500;
}

/* ===================================
   Layout Components
   =================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sec-pad {
  padding: var(--spacing-xxxl) 0;
}

.sec-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(212, 175, 55, 0.25);
  font-weight: 600;
}

.sec-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.gold-div {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

/* ===================================
   Navigation
   =================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 10, 18, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: padding var(--transition-base);
}

nav.scrolled {
  padding: 14px 60px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo {
  position: relative;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
  transition: transform var(--transition-base), filter var(--transition-base);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  background: transparent;
}

.nav-brand:hover .logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

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

.nav-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  line-height: 1;
}

.nav-sub {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px;
}

.lang-link {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  letter-spacing: 0.05em;
}

.lang-link:hover,
.lang-link.active {
  color: var(--gold);
}

.lang-sep {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  z-index: 2;
}

.hero-office-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-base);
}

.hero-visual:hover .hero-office-img {
  transform: scale(1.05);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
              linear-gradient(135deg, #080A12 0%, #0E1120 60%, #080A12 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-particles {
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 15px 34px;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition-base);
}

.btn-ghost:hover {
  color: var(--gold-light);
}

/* ===================================
   Scroll Hint
   =================================== */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}

.scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.s-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
  position: relative;
  overflow: hidden;
}

.s-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: sAnim 2s ease-in-out infinite;
}

/* ===================================
   Opening Block
   =================================== */
.opening-sec {
  background: var(--bg-deep);
}

.opening-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.opening-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

/* ===================================
   Stats Bar
   =================================== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 32px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(201, 168, 76, 0.12);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.stat-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 6px;
  display: block;
}

/* ===================================
   About Section
   =================================== */
.about-sec {
  background: var(--bg-mid);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 300;
}

.about-p strong {
  color: var(--text-primary);
  font-weight: 500;
}

.about-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.cred-item {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
}

.cred-item h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 1px 4px rgba(212, 175, 55, 0.25);
  font-weight: 600;
}

.cred-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===================================
   Visual Elements
   =================================== */
.pro-visual {
  position: relative;
  height: 460px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pro-scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.structure-graphic {
  position: relative;
  width: 200px;
  height: 200px;
}

.layer {
  position: absolute;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  opacity: 0.3;
}

.layer-1 {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
}

.layer-2 {
  width: 160px;
  height: 160px;
  top: 20px;
  left: 20px;
  opacity: 0.5;
}

.layer-3 {
  width: 120px;
  height: 120px;
  top: 40px;
  left: 40px;
  opacity: 0.7;
}

.layer-4 {
  width: 80px;
  height: 80px;
  top: 60px;
  left: 60px;
  opacity: 1;
  background: rgba(201, 168, 76, 0.1);
}

/* ===================================
   Services Section
   =================================== */
.svc-sec {
  background: var(--bg-mid);
}

.svc-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.svc-intro {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.9;
  font-weight: 300;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.07);
}

.svc-card {
  background: var(--bg-mid);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-base);
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.svc-card:hover {
  background: var(--bg-tertiary);
}

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

.svc-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.06);
  position: absolute;
  top: 16px;
  right: 32px;
  line-height: 1;
  transition: color var(--transition-base);
}

.svc-card:hover .svc-num {
  color: rgba(201, 168, 76, 0.11);
}

.svc-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-base);
  color: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

.service-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.svc-logo {
  position: absolute;
  top: 20px;
  left: 12px;
  width: 32px;
  height: 32px;
  z-index: 3;
  opacity: 0.8;
}

.uxiono-logo-small {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
}

.svc-card:hover .svc-icon {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.svc-image {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 160px;
  position: relative;
}

.svc-card:nth-child(3) .svc-image {
  margin-top: 40px;
}

.svc-card:nth-child(5) .svc-image {
  margin-top: 60px;
}

.automation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.svc-card:hover .automation-img {
  transform: scale(1.05);
}

.svc-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-desc {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 28px;
}

.svc-link {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-base), gap var(--transition-base);
}

.svc-card:hover .svc-link {
  color: var(--gold-light);
  gap: 14px;
}

/* ===================================
   Process Section
   =================================== */
.jrn-sec {
  background: var(--bg-deep);
}

.jrn-hdr {
  text-align: center;
  margin-bottom: 72px;
}

.jrn-hdr .gold-div {
  margin: 24px auto;
}

.jrn-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.jrn-grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), rgba(201, 168, 76, 0.3), var(--gold-dim));
  z-index: 1;
}

.jrn-step {
  text-align: center;
  padding: 0 20px;
}

.jrn-circle {
  width: 104px;
  height: 104px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  background: var(--bg-deep);
  transition: all var(--transition-base);
}

.jrn-step:hover .jrn-circle {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.2);
}

.jrn-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
}

.jrn-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.jrn-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ===================================
   Principles Section
   =================================== */
.prin-sec {
  background: var(--bg-mid);
}

.prin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.prin-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.prin-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s, transform 0.6s;
}

.prin-item.visible {
  opacity: 1;
  transform: none;
}

.prin-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.prin-bar {
  width: 3px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.prin-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.prin-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
}

.prin-quote {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 32px;
  border-left: 2px solid var(--gold);
}

.prin-quote strong {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-top: 18px;
  text-shadow: 0 2px 6px rgba(212, 175, 55, 0.35);
}

/* ===================================
   CTA Section
   =================================== */
.cta-sec {
  background: var(--bg-card);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--spacing-xxxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.05), transparent);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px auto 12px;
  max-width: 680px;
  line-height: 1.1;
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-acts {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===================================
   Contact Section
   =================================== */
.contact-sec {
  background: var(--bg-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-form-wrapper {
  max-width: 540px;
}

.contact-form {
  margin-top: var(--spacing-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

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

.form-f {
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-base);
  border-radius: var(--radius-sm);
  width: 100%;
}

.form-f::placeholder {
  color: rgba(245, 245, 240, 0.28);
  letter-spacing: 0.04em;
}

.form-f:focus {
  border-color: var(--gold);
}

textarea.form-f {
  resize: none;
  min-height: 110px;
}

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

.contact-visual {
  margin-bottom: var(--spacing-lg);
}

.contact-graphic {
  position: relative;
  height: 300px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-particles {
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  color: var(--text-secondary);
  transition: color var(--transition-base), transform var(--transition-base);
}

.social-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.country-card {
  position: relative;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.country-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.country-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 10, 18, 0.2), rgba(8, 10, 18, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  transition: background var(--transition-base);
}

.country-card:hover .country-overlay {
  background: linear-gradient(to bottom, rgba(8, 10, 18, 0.1), rgba(8, 10, 18, 0.6));
}

.country-flag {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.country-label {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-details h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.contact-item {
  margin-bottom: var(--spacing-md);
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===================================
   Problems We Solve
   =================================== */
.problems-sec {
  background: var(--bg-deep);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.prob-item {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.prob-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.prob-bullet {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.prob-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* ===================================
   Benefits
   =================================== */
.benefits-sec {
  background: var(--bg-card);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.ben-item {
  padding: 16px 20px;
  background: var(--bg-deep);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.ben-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.ben-bullet {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.ben-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* ===================================
   Brand Differentiator
   =================================== */
.diff-sec {
  background: var(--bg-card);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.diff-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.diff-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ===================================
   Footer
   =================================== */
footer {
  background: #060810;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.ft-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ft-sub {
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.ft-tag {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-width: 240px;
  margin-bottom: var(--spacing-lg);
}

.ft-copy {
  margin-top: 24px;
  font-size: 0.58rem;
  color: rgba(245, 245, 240, 0.2);
  letter-spacing: 0.1em;
}

.ft-nav h4 {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.ft-nav ul {
  list-style: none;
}

.ft-nav li {
  margin-bottom: 9px;
}

.ft-nav a {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.ft-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.ft-social .social-link {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ft-social .social-link:hover {
  color: var(--gold);
}

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

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

@keyframes sAnim {
  to {
    left: 100%;
  }
}

/* ===================================
   Reveal Animations
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}

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

.rd1 {
  transition-delay: 0.15s;
}

.rd2 {
  transition-delay: 0.3s;
}

.rd3 {
  transition-delay: 0.45s;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  nav {
    padding: 16px var(--spacing-lg);
  }
  
  .logo-img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    border-radius: 50%;
  }
  
  .hero {
    padding: 100px var(--spacing-lg) 60px;
  }
  
  .stats-bar {
    padding: 28px var(--spacing-lg);
  }
  
  .sec-pad {
    padding: var(--spacing-xxl) 0;
  }
  
  .about-grid,
  .svc-hdr,
  .prin-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .svc-grid {
    grid-template-columns: 1fr;
  }
  
  .jrn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .jrn-grid::before {
    display: none;
  }
  
  footer {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px var(--spacing-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding: 80px var(--spacing-md) 60px;
  }
  
  .hero-visual {
    position: relative;
    right: var(--spacing-md);
    width: 300px;
    height: 350px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px var(--spacing-md);
    gap: var(--spacing-md);
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .about-creds {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .svc-card {
    padding: 32px 24px;
  }
  
  .svc-num {
    font-size: 3rem;
    top: 12px;
    right: 20px;
  }
  
  .svc-image {
    height: 120px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .countries-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .country-card {
    height: 120px;
  }
  
  .country-flag {
    font-size: 1.6rem;
  }
  
  .country-label {
    font-size: 0.75rem;
  }
  
  .jrn-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .cta-acts {
    flex-direction: column;
    align-items: center;
  }
  
  .scroll-hint {
    left: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-sub {
    font-size: 0.9rem;
  }
  
  .stat-num {
    font-size: 2rem;
  }
  
  .svc-num {
    font-size: 2.5rem;
  }
  
  .jrn-circle {
    width: 80px;
    height: 80px;
  }
  
  .jrn-num {
    font-size: 1.4rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 300px;
  }
}
