:root {
  --primary-dark: #0f172a;
  --primary-light: #1e293b;
  --primary-lighter: #334155;
  --accent-gold: #c9a961;
  --accent-gold-light: #d4bc7e;
  --accent-gold-dark: #b8934f;
  --accent-blue: #3b82f6;
  --text-main: #0f172a;
  --text-light: #334155;
  --text-lighter: #64748b;
  --text-white: #ffffff;
  --text-white-muted: #cbd5e1;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --border-light: #e2e8f0;
  --border-gold: rgba(201, 169, 97, 0.3);

  --container-width: 1200px;
  --header-height: 100px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-light: #1e293b;
    --text-main: #f8fafc;
    --text-light: #cbd5e1;
    --border-light: #334155;
  }
  body {
    background: #0f172a;
  }
  .services {
    background: #1e293b;
  }
  .service-card {
    background: #1e293b;
    border-color: #334155;
  }
  .service-card h3 {
    color: #f8fafc;
  }
  .service-card p {
    color: #94a3b8;
  }
  .about {
    background: #0f172a;
  }
  .about-text h2 {
    color: #f8fafc;
  }
  .about-text p {
    color: #cbd5e1;
  }
  .credentials-list {
    background: #1e293b;
  }
  .stat-card {
    background: #1e293b;
    border-color: #334155;
  }
  .cta-section {
    background: linear-gradient(to right, #1e293b, #0f172a);
  }
  .cta-content h2 {
    color: #f8fafc;
  }
  .cta-content p {
    color: #94a3b8;
  }
  .differentiators {
    background: rgba(201, 169, 97, 0.1);
  }
  .differentiators li .diff-content {
    color: #e2e8f0;
  }
  .differentiators li .diff-content strong {
    color: #f8fafc;
  }
  .client-type {
    background: rgba(255, 255, 255, 0.03);
  }
  .process {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }
}

/* BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  color: var(--text-white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 1rem 0;
}

header.scrolled {
  background: rgba(15, 23, 42, 0.99);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(201, 169, 97, 0.3);
  padding: 0.6rem 0;
}

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

.brand-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-main {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  border-left: 3px solid var(--accent-gold);
  padding-left: 1rem;
}

.qualification {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  padding-left: calc(1rem + 3px);
  opacity: 0.95;
  line-height: 1.2;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
  padding-left: 4rem;
}

.nav-link {
  color: var(--text-white-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-white);
}
.nav-link:hover::after {
  width: 100%;
}

.btn-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-gold:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.7rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding: 2rem 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  color: white;
  padding: 1rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu .mobile-cta {
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 1rem;
  border: 1px solid var(--accent-gold);
  padding: 1rem;
  text-align: center;
  border-radius: 2px;
}

.mobile-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-lighter);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .header-content {
    gap: 2rem;
  }
  .header-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-light) 50%,
    #1e293b 100%
  );
  color: var(--text-white);
  padding: calc(var(--header-height) + 5rem) 0 8rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(201, 169, 97, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(6, 182, 212, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: 2px;
}

.text-gold {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.subtitle {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-white-muted);
  margin: 2rem 0 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-description strong {
  color: var(--text-white);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 2px;
}

.highlight-growth {
  color: var(--accent-gold);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 6px -1px rgba(201, 169, 97, 0.2);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.hero-image-wrapper {
  position: relative;
  padding: 2rem;
}
.image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: var(--primary-lighter);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.6s ease;
}

.image-frame:hover img {
  transform: scale(1.02);
}
.image-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 25px;
  bottom: 25px;
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.6;
}

.frame-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-gold), transparent 60%);
  opacity: 0.1;
  z-index: -2;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-lighter);
  animation: bounce 2s infinite;
  opacity: 0.5;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-image-wrapper {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  .text-gold {
    font-size: 1rem;
  }
  .subtitle {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }
  .qualification {
    display: none;
  }
  .logo-main {
    font-size: 1.1rem;
    border-left-width: 2px;
    padding-left: 0.75rem;
  }
  .hero {
    padding-top: calc(var(--header-height) + 4rem);
    min-height: auto;
  }
  .subtitle {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .subtitle {
    font-size: 1.8rem;
  }
  .hero-image-wrapper {
    display: none;
  }
}

/* ============================================
   SECTIONS GENERIC
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.8rem;
  color: var(--primary-dark);
  font-weight: 700;
}
.section-header.light .section-title {
  color: white;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 8rem 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card--growth {
  background: #ffffff;
  padding: 3rem;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #e2e8f0;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card--growth.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card--growth:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card--growth:nth-child(2) {
  transition-delay: 0.2s;
}
.service-card--growth:nth-child(3) {
  transition-delay: 0.3s;
}
.service-card--growth:nth-child(4) {
  transition-delay: 0.4s;
}

.service-card--growth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-gold);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.service-card--growth:hover::before {
  width: 100%;
}

.service-card--growth:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
  border-top-color: #f8fafc;
}

.service-card--growth .service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.service-card--growth h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card--growth p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 400;
}

.service-card--growth p strong {
  color: #0f172a;
  font-weight: 600;
}

.services-disclaimer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e2e8f0;
}

.services-disclaimer p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-card--growth {
    padding: 2rem;
  }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
  color: white;
}
.process-wrapper {
  overflow-x: auto;
  padding-bottom: 1rem;
}
.process-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  min-width: 900px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.process-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.process-step:nth-child(1) {
  transition-delay: 0.1s;
}
.process-step:nth-child(3) {
  transition-delay: 0.2s;
}
.process-step:nth-child(5) {
  transition-delay: 0.3s;
}
.process-step:nth-child(7) {
  transition-delay: 0.4s;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-gold);
}
.step-number {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: white;
  font-weight: 600;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-lighter);
  line-height: 1.6;
  font-weight: 300;
  min-height: 70px;
  max-width: 200px;
  margin: 0 auto;
}
.process-connector {
  padding-top: 2rem;
  color: var(--accent-gold);
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .process-track {
    flex-wrap: wrap;
    min-width: auto;
    gap: 2rem;
  }
  .process-connector {
    display: none;
  }
  .process-step {
    flex: 1 1 45%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .process-step {
    flex: 1 1 100%;
  }
}

/* ============================================
   CLIENTS
   ============================================ */
.clients {
  padding: 8rem 0;
  background: var(--primary-dark);
  color: white;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.client-type {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 169, 97, 0.15);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}
.client-type.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.client-type:nth-child(1) {
  transition-delay: 0.1s;
}
.client-type:nth-child(2) {
  transition-delay: 0.2s;
}
.client-type:nth-child(3) {
  transition-delay: 0.3s;
}
.client-type:nth-child(4) {
  transition-delay: 0.4s;
}
.client-type:nth-child(5) {
  transition-delay: 0.5s;
}
.client-type:nth-child(6) {
  transition-delay: 0.6s;
}

.client-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-type:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-3px);
}

.client-type:hover::before {
  opacity: 1;
}

.client-meta {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 100px;
}

.client-type h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.client-type p {
  font-size: 0.9rem;
  color: var(--text-lighter);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 968px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .client-type {
    padding: 2rem;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 8rem 0;
  background: white;
}
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: start;
}
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
  line-height: 1.2;
}
.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

/* DIFFERENTIATORS */
.differentiators {
  margin: 2.5rem 0;
  padding: 2rem;
  background: rgba(201, 169, 97, 0.08);
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 8px 8px 0;
}
.differentiators h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.differentiators ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.differentiators li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}
.differentiators li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.differentiators li .diff-content {
  flex: 1;
  color: #1e293b;
}
.differentiators li .diff-content strong {
  color: #0f172a;
  font-weight: 700;
}

/* CREDENTIALS */
.credentials-list {
  list-style: none;
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 4px;
  border-left: 3px solid var(--accent-gold);
}
.credentials-list li {
  padding: 0.75rem 0;
  color: var(--text-main);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}
.credentials-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 600;
}

/* STATS */
.about-stats {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.stat-card {
  background: white;
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}
.stat-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.stat-card:nth-child(1) {
  transition-delay: 0.1s;
}
.stat-card:nth-child(2) {
  transition-delay: 0.2s;
}
.stat-card:nth-child(3) {
  transition-delay: 0.3s;
}
.stat-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  .about-stats {
    flex-direction: column;
    align-items: center;
  }
  .stat-card {
    width: 100%;
    max-width: 100%;
  }
  .differentiators {
    padding: 1.5rem;
  }
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 50%, #ffffff 100%);
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 20% 50%,
    rgba(201, 169, 97, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.cta-content p {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.cta-section .btn-primary {
  background: var(--accent-gold);
  color: #0f172a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cta-section .btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(201, 169, 97, 0.3);
}
.cta-section .btn-secondary {
  background: white;
  color: #0f172a;
  border: 2px solid #0f172a;
}
.cta-section .btn-secondary:hover {
  background: #0f172a;
  color: white;
}
.cta-separator {
  color: #64748b;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-separator {
    display: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--primary-dark);
  color: var(--text-lighter);
  padding: 5rem 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
}
.footer-section h4 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  padding-bottom: 0.75rem;
}
.footer-brand .footer-title {
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.footer-address {
  font-style: normal;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--text-lighter);
  font-size: 0.95rem;
}
.footer-meta {
  font-size: 0.85rem;
  color: var(--text-lighter);
  opacity: 0.8;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 1rem;
}
.footer-links a {
  color: var(--text-lighter);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}
.footer-links a::before {
  content: "→";
  color: var(--accent-gold);
  opacity: 0;
  transition: opacity 0.3s;
  margin-right: 0;
}
.footer-links a:hover::before {
  opacity: 1;
}
.footer-section:last-child {
  justify-self: end;
}
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-lighter);
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-section:last-child {
    justify-self: start;
  }
}
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .footer-section h4 {
    text-align: center;
  }
  .footer-links a {
    justify-content: center;
  }
  .footer-address {
    text-align: center;
  }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}
.fab-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.fab-whatsapp {
  background: #25d366;
}
.fab-email {
  background: var(--accent-blue);
}
.fab-linkedin {
  background: #0077b5;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}
.fab-linkedin svg {
  fill: white;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  color: white;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cookie-text p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-white-muted);
}
.cookie-text a {
  color: var(--accent-gold);
  font-size: 0.85rem;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.btn-cookie {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie.accept {
  background: var(--accent-gold);
  color: var(--primary-dark);
}
.btn-cookie.accept:hover {
  background: var(--accent-gold-light);
}
.btn-cookie.reject {
  background: transparent;
  color: var(--text-white-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-cookie.reject:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: calc(var(--header-height) + 4rem) 0 6rem;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.legal-page .last-updated {
  color: var(--text-lighter);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 2.5rem 0 1rem;
}

.legal-page p,
.legal-page li {
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin: 1.5rem 0 0.75rem;
}

.legal-page strong {
  color: #0f172a;
}

@media (prefers-color-scheme: dark) {
  .legal-page {
    background: #0f172a;
  }
  .legal-page h1,
  .legal-page h2,
  .legal-page h3 {
    color: #f8fafc;
  }
  .legal-page p,
  .legal-page li {
    color: #cbd5e1;
  }
  .legal-page strong {
    color: #f8fafc;
  }
}

.legal-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-page a {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
