/* === ALTAIROS – Golden Elegance Design System (Razor) === */
/* Consolidado desde Angular: styles.scss + todos los SCSS de componentes */

/* ================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================================ */
:root {
  /* Fondo principal: tono medianoche profundo y premium */
  --background: 228 15% 8%;
  --foreground: 0 0% 96%;

  --primary: 228 15% 5%;
  --primary-foreground: 0 0% 96%;
  --primary-light: 228 15% 15%;
  --primary-dark: 228 15% 3%;

  /* Dorados elegantes estilo logo Altairos (champagne/beige dorado) */
  --gold: 32 45% 65%;
  --gold-light: 35 40% 75%;
  --gold-dark: 30 50% 50%;
  --gold-text: 32 45% 70%;
  --gold-muted: 32 30% 30%;

  --secondary: 228 15% 18%;
  --secondary-foreground: 0 0% 90%;
  --muted: 228 15% 12%;
  --muted-foreground: 228 10% 65%;

  /* Tarjetas y superficies */
  --card: 228 15% 11%;
  --card-foreground: 0 0% 96%;
  --card-border: 228 15% 18%;
  --glass-border: rgba(255, 255, 255, 0.08);

  --accent: 32 45% 65%;
  --accent-foreground: 228 15% 8%;
  --border: 228 15% 20%;
  --input: 228 15% 18%;
  --ring: 32 45% 65%;

  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --success: 142 71% 45%;
  --success-foreground: 0 0% 100%;

  --gradient-primary: linear-gradient(135deg, hsl(228 15% 8%) 0%, hsl(228 15% 15%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(35 40% 75%) 0%, hsl(32 45% 65%) 50%, hsl(30 50% 50%) 100%);
  --gradient-hero: linear-gradient(135deg, hsl(228 15% 3%) 0%, hsl(228 15% 8%) 50%, hsl(228 15% 15%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(228 15% 14%) 0%, hsl(228 15% 10%) 100%);

  --shadow-premium: 0 25px 50px -12px hsl(0 0% 10% / 0.25);
  --shadow-gold: 0 20px 40px -12px hsl(32 35% 60% / 0.35);
  --shadow-card: 0 4px 20px -2px hsl(0 0% 10% / 0.1);
  --shadow-elegant: 0 10px 30px -10px hsl(0 0% 20% / 0.15);

  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  --radius: 2rem; /* altairos ultra smooth curves */

  /* Bootstrap mapping */
  --bs-body-bg: hsl(var(--background));
  --bs-body-color: hsl(var(--foreground));
  --bs-border-color: hsl(var(--border));
  --bs-primary: hsl(var(--primary));
  --bs-primary-rgb: 0,0,0;
  --bs-secondary: hsl(var(--secondary-foreground));
  --bs-success: hsl(var(--success));
  --bs-danger: hsl(var(--destructive));
  --bs-warning: hsl(var(--gold-dark));
  --bs-info: hsl(var(--accent));
  --bs-light: hsl(var(--secondary));
  --bs-dark: hsl(var(--primary-dark));
  --bs-link-color: hsl(var(--accent));
  --bs-link-hover-color: hsl(var(--gold));
}

/* ================================================================
   2. BASE RESET & TYPOGRAPHY
   ================================================================ */
* { border-color: hsl(var(--border)); }
html, body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: var(--font-normal);
  margin: 0;
  overflow-x: hidden;
}

.font-playfair { font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

.heading-premium {
  font-weight: var(--font-bold);
  line-height: 1.1;
  background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: clamp(2.25rem, 1.5rem + 2.5vw, 3.75rem);
}

.heading-hero {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-size: 5.75rem;
}

.text-hero-sub {
  font-weight: var(--font-light);
  letter-spacing: 0.02em;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.875rem);
}

.text-hero-desc {
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.25rem);
}

/* ================================================================
   3. altairos INSPIRATION
   ================================================================ */

.navbar-pill {
    background: rgba(20, 22, 30, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: orb-pulse 10s ease-in-out infinite alternate;
}
.glow-orb.gold { background: radial-gradient(circle, hsl(var(--gold)) 0%, transparent 70%); }
.glow-orb.primary { background: radial-gradient(circle, hsl(var(--primary-light)) 0%, transparent 70%); }

@keyframes orb-pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.1; }
    100% { transform: scale(1.2) translate(50px, -50px); opacity: 0.2; }
}

.btn-altairos {
    border-radius: 100px; /* Pill shape */
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}
.btn-altairos i {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-altairos:hover {
    transform: translateY(-2px) scale(1.02);
}
.btn-altairos:hover i {
    transform: translateX(4px);
}

/* WOW FACTOR 1: Infinite Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: rgba(20, 22, 30, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}
.ticker-track {
    display: flex;
    width: max-content;
}
.ticker-track.animate {
    animation: ticker-slide var(--ticker-duration, 30s) linear infinite;
}
.ticker-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 1.5rem 0;
    padding-right: 4rem;
    flex-shrink: 0;
}
.ticker-item {
    opacity: 0.5;
    filter: grayscale(100%) brightness(200%);
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}
.ticker-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
}
@keyframes ticker-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(var(--ticker-offset, -50%)); }
}

/* WOW FACTOR 2: Shimmer Border */
.shimmer-border {
    position: relative;
}
.shimmer-border::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(
        from 0deg,
        transparent 0 340deg,
        hsl(var(--gold)) 360deg
    );
    z-index: -1;
    animation: rotate-shimmer 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.shimmer-border:hover::before {
    opacity: 1;
}
@keyframes rotate-shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* -------------------------------------------
   REVEAL ANIMATIONS (Scroll Observer)
   ------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Active State Triggered by JS IntersectionObserver */
.reveal-up.active, 
.reveal-left.active, 
.reveal-right.active, 
.reveal-scale.active {
    opacity: 1;
    transform: none;
}

/* WOW FACTOR 3 & 4 JS Helpers */
.magnetic-btn {
    /* Transforms managed by JS */
    will-change: transform;
}

.spotlight-card {
    position: relative;
    overflow: hidden;
}
.spotlight-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    border-radius: inherit;
}
.spotlight-card:hover::after {
    opacity: 1;
}

/* ================================================================
   4. COLOR UTILITIES
   ================================================================ */
.text-gold { color: hsl(var(--gold-text)) !important; }
.text-gold-light { color: hsl(var(--gold-light)) !important; }
.text-primary-dark { color: hsl(var(--primary-dark)); }
.text-white-95 { color: rgba(255, 255, 255, .95); }
.text-white-90 { color: rgba(255,255,255,.9); }
.text-white-85 { color: rgba(255, 255, 255, .85); }
.text-white-80 { color: rgba(255,255,255,.8) !important; }
.text-white-60 { color: rgba(255, 255, 255, 0.6) !important; }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }

.bg-gold { background-color: hsl(var(--gold)) !important; }
.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-gold { background: var(--gradient-gold) !important; }
.bg-gradient-hero { background: var(--gradient-hero) !important; }
.bg-gradient-card { background: var(--gradient-card) !important; }
.bg-background { background-color: hsl(var(--background)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-card { background-color: hsl(var(--card)); }

.border-gold { border-color: hsl(var(--gold)); }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2) !important; }

/* ================================================================
   4. SHADOWS & INTERACTIONS
   ================================================================ */
.shadow-premium { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7); }
.shadow-gold { box-shadow: 0 0 25px hsl(var(--gold) / 0.4); }
.shadow-card { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); }

.hover-lift {
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .4s ease, border-color .4s ease;
}
.hover-lift:hover { 
  transform: translateY(-6px) scale(1.01); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px hsl(var(--gold) / 0.15); 
  border-color: hsl(var(--gold) / 0.5);
}

.hover-gold { transition: color .3s ease, border-color .3s ease; }
.hover-gold:hover { color: hsl(var(--gold)); border-color: hsl(var(--gold)); }

.premium-border {
  border: 1px solid hsl(var(--card-border));
  transition: border-color .3s ease;
}
.premium-border:hover { border-color: hsl(var(--gold)); }

/* ================================================================
   5. LAYOUT UTILITIES
   ================================================================ */
.py-section { padding-top: 6rem; padding-bottom: 6rem; }
.py-section-sm { padding-top: 3rem; padding-bottom: 3rem; }
.container-7xl { max-width: 80rem; }
.maxw-3xl { max-width: 48rem; }
.lh-relaxed { line-height: 1.6; }
.radius-premium { border-radius: var(--radius); }
.gap-premium { gap: var(--spacing-sm); }
.gap-3p { gap: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.inset-0 { inset: 0; }
.min-h-screen { min-height: 100vh; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }

/* Icon sizes */
.icon-12 { width: 12px; height: 12px; flex: 0 0 12px; }
.icon-16 { width: 16px; height: 16px; flex: 0 0 16px; }
.icon-20 { width: 20px; height: 20px; font-size: 20px; line-height: 1; }
.icon-24 { width: 24px; height: 24px; font-size: 24px; line-height: 1; color: black; }
.icon-32 { font-size: 2rem; color: hsl(var(--primary-dark)); line-height: 1; z-index: 2; position: relative; }
.icon-40 { width: 2.5rem; height: 2.5rem; font-size: 40px; line-height: 1; }
.icon-48 { width: 3rem; height: 3rem; font-size: 48px; line-height: 1; }

/* ================================================================
   6. ANIMATIONS
   ================================================================ */
@keyframes scaleIn { from { opacity:0; transform: scale(.95); } to { opacity:1; transform: scale(1); } }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .15; }
  50% { transform: scale(1.08); opacity: .25; }
}

.animate-scale-in { animation: scaleIn .5s ease-out forwards; }
.animate-bounce { animation: bounce 1.5s infinite; }
.animate-pulse { animation: pulse 2.5s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .animate-scale-in,
  .animate-bounce,
  .animate-pulse { animation: none !important; }
}

/* ================================================================
   7. CARDS & SURFACES
   ================================================================ */

/* Glassmorphism Utilidades */
.glass-panel {
  background: rgba(20, 22, 30, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.glass-card {
  background: rgba(30, 32, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  position: relative;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
  z-index: 0;
}

.glass-card:hover::before {
  left: 150%;
}

/* ================================================================
   8. FORMS
   ================================================================ */
.form-control, .form-select {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: hsl(var(--foreground));
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: hsl(var(--gold));
  box-shadow: 0 0 0 3px hsl(var(--gold) / 0.15);
  color: #fff;
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.4); }
.is-invalid { border-color: #ef4444 !important; }

/* ================================================================
   9. NAVBAR
   ================================================================ */
.transition-navbar {
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.navbar-transparent {
  background-color: transparent !important;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
}

.navbar-elevated {
  background-color: hsl(var(--primary) / 0.72);
  border-bottom: 1px solid hsl(var(--gold-muted));
  backdrop-filter: saturate(140%) blur(10px);
}

.brand {
  padding: .25rem .75rem;
  border-radius: var(--radius);
  color: hsl(var(--primary-foreground));
  text-decoration: none;
}
.brand:hover {
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-card);
}

/* ================================================================
   10. HERO SECTION
   ================================================================ */
.hero-section { min-height: 100vh; }

.hero-bg video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-dark-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay-pattern {
  opacity: 0.05;
  background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 2;
}

.btn-outline-gold {
  border: 2px solid hsl(var(--gold));
  color: hsl(var(--gold));
  background: transparent;
  border-radius: var(--radius);
  transition: all .3s ease;
}
.btn-outline-gold:hover {
  background: hsl(var(--gold));
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-gold);
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-ai {
  background: linear-gradient(135deg, hsl(var(--muted)) 0%, hsl(var(--accent)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 6px hsl(0 0% 0% / 0.25);
}

.scroll-indicator .indicator-shell {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsl(var(--gold));
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: .25rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.scroll-indicator .indicator-dot {
  width: .25rem;
  height: .75rem;
  border-radius: 9999px;
}

.bg-gold { background-color: hsl(var(--gold)) !important; }

@media (max-width: 768px) {
  .heading-hero { font-size: 5rem; }
}
@media (max-width: 576px) {
  .heading-hero { font-size: 4rem; }
}
@media (max-width: 320px) {
  .heading-hero { font-size: 3rem; }
}

/* ================================================================
   11. VALUE PROPOSITION & UTILITIES
   ================================================================ */
.header-title { line-height: 1.1; }
.header-subtitle { line-height: 1.15; }
.header-paragraph { max-width: 56rem; }

/* Subpage Utilities */
.letter-spacing-wide { letter-spacing: 0.15em; }
.max-w-800 { max-width: 800px; }
.mt-top-spacer { margin-top: 2rem; }

/* ================================================================
   12. SERVICES SECTION
   ================================================================ */
.heading-compact {
  font-size: 2.25rem;
  line-height: 1.2;
}

.subtitle-compact {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ================================================================
   13. PROCESS SECTION
   ================================================================ */
.step-card { min-height: 18rem; }

.num-pill {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--gold-muted));
  z-index: 2;
  box-shadow: 0 0 10px hsl(var(--gold) / 0.25);
}

.connector {
  position: absolute;
  top: 2.25rem;
  left: 50%;
  width: 100%;
  height: 4px;
  transform: translateX(8px);
  z-index: 0;
}

.connector .connector-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, hsl(var(--gold-dark)) 0%, hsl(var(--gold)) 50%, hsl(var(--gold-light)) 100%);
  box-shadow: 0 1px 4px hsl(var(--gold) / 0.3);
}

.connector .connector-dot {
  position: absolute;
  top: 50%;
  background: hsl(var(--gold));
  transform: translateY(-50%);
  box-shadow: 0 0 10px hsl(var(--gold) / 0.6);
}
.connector .connector-dot.start {
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}
.connector .connector-dot.end {
  right: -2px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid hsl(var(--gold));
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* ================================================================
   14. CASE STUDIES
   ================================================================ */
.case-card {
  border-radius: 1rem;
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  position: relative;
  overflow: hidden;
}

.badge-secondary-premium {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border: 1px solid hsl(var(--card-border));
  padding: .35rem .6rem;
  font-size: .85rem;
  border-radius: .5rem;
}

.gold-dot {
  width: .5rem; height: .5rem;
  background: hsl(var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 0 2px hsl(var(--gold) / .15);
}

/* ================================================================
   15. CUSTOM SOFTWARE
   ================================================================ */
.code-card {
  background: hsl(var(--primary));
  color: #fff;
  border: 1px solid hsl(var(--card-border));
}

.dot {
  width: .75rem; height: .75rem;
  border-radius: 9999px;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.code-lines { font-size: .95rem; }
.tok-white { color: #ffffff; }
.tok-blue { color: #93c5fd; }
.tok-purple { color: #d8b4fe; }
.tok-yellow { color: #fde68a; }
.tok-green { color: #86efac; }
.tok-orange { color: #fdba74; }

/* ================================================================
   16. CONTACT FORM / CTA SECTION
   ================================================================ */
.cta-section .bubble {
  position: absolute;
  background: hsl(var(--gold));
  border-radius: 9999px;
  filter: blur(48px);
  pointer-events: none;
}
.cta-section .bubble-a {
  top: 25%; left: 25%;
  width: 18rem; height: 18rem;
  opacity: .05;
}
.cta-section .bubble-b {
  bottom: 33%; right: 33%;
  width: 24rem; height: 24rem;
  opacity: .03;
}

.benefit-icon {
  width: 3rem; height: 3rem;
}

.success-state .lh-relaxed { line-height: 1.6; }

.success-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: hsl(var(--accent-foreground));
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold, 0 10px 30px rgba(212,175,55,.25));
  border: 1px solid rgba(0,0,0,.08);
}

.btn-outline-hero {
  background: transparent;
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--card-border));
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-outline-hero:hover {
  background: hsl(var(--card) / 0.6);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transform: translateY(-1px);
}
.btn-outline-hero:active { transform: translateY(0); }

/* ================================================================
   17. FOOTER
   ================================================================ */
.link-gold {
  transition: color 0.2s ease;
}
.link-gold:hover { color: hsl(var(--gold)); }

.brand-title { font-size: 1.5rem; }

footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 576px) {
  footer { padding-top: 3rem; padding-bottom: 3rem; }
  .py-section { padding-top: 4rem; padding-bottom: 4rem; }
}

/* Value proposition icon wrap shared */
.vp-icon-wrap {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
}

/* Process section icon wrap */
.ps-icon-wrap {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
}

/* Custom software icon wrap */
.cs-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
}

@media (max-width: 400px) {
  .brand { font-size: 1.5rem !important; }
}

/* ================================================================
   18. HOME 2.0 - HYPER MODERN EXTENSIONS
   ================================================================ */

/* Animated Text Gradient */
.text-gradient-animated {
  background: linear-gradient(
    to right,
    hsl(var(--gold-light)) 20%,
    hsl(var(--gold-dark)) 40%,
    hsl(var(--gold-light)) 60%,
    hsl(var(--gold)) 80%
  );
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  grid-auto-rows: minmax(250px, auto); /* Base height for bento items */
  grid-auto-flow: dense;
}

@media (min-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .bento-grid.bento-layout-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-grid.bento-layout-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-col-span-2 { grid-column: span 2; }
  .bento-row-span-2 { grid-row: span 2; }
}

.glass-bento-panel {
  background: rgba(20, 22, 30, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.glass-bento-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.15), 0 0 20px hsl(var(--gold) / 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.glass-bento-panel.interactive {
  cursor: pointer;
}

