/*
Theme Name: Aixperia
Theme URI: https://aixperia.com
Author: Aixperia
Author URI: https://aixperia.com
Description: Official Aixperia homepage theme - Interior Design Platform
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aixperia
Tags: one-page, animated, design-software, interior-design
*/

/* =============================================
   AIXPERIA THEME - MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --color-primary: #2B8FA8;
  --color-primary-dark: #1e6d82;
  --color-primary-light: #4db3cc;
  --color-accent-teal: #0fc4c4;
  --color-accent-green: #3ecf8e;
  --color-navy: #1a2e3b;
  --color-text: #2c3e50;
  --color-text-light: #6b7c8d;
  --color-text-muted: #9aabb8;
  --color-white: #ffffff;
  --color-bg-light: #f8fbfd;
  --color-bg-section: #f0f7fa;
  --gradient-hero: linear-gradient(135deg, #f0e8f8 0%, #e8f4fa 40%, #ddf0f7 70%, #e8f8f0 100%);
  --gradient-cta: linear-gradient(135deg, #1e9eb5 0%, #0fb8b8 50%, #3ecf8e 100%);
  --gradient-banner: linear-gradient(135deg, #2bb8c8 0%, #1a9aaa 50%, #0fb0b0 100%);
  --shadow-sm: 0 2px 8px rgba(43, 143, 168, 0.12);
  --shadow-md: 0 8px 32px rgba(43, 143, 168, 0.15);
  --shadow-lg: 0 20px 60px rgba(43, 143, 168, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   SCROLL REVEAL BASE STATES
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(43, 143, 168, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-navy);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-logo .logo-dot {
  color: var(--color-accent-teal);
  font-size: 1.1em;
  line-height: 1;
}
.site-logo .logo-plus {
  color: var(--color-accent-green);
  font-size: 0.65em;
  vertical-align: super;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--color-primary); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-login {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
}
.nav-login:hover { color: var(--color-primary); }
.nav-lang {
  font-size: 0.88rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 2000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  flex-direction: column;
  gap: 24px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}
.mobile-nav a:hover { color: var(--color-primary); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active { opacity: 1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--border-radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(43, 143, 168, 0.35);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 143, 168, 0.45);
  color: white;
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
  color: white;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
/* Animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 120, 240, 0.4), transparent);
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(43, 143, 168, 0.3), transparent);
  bottom: 100px;
  left: -100px;
  animation-delay: -3s;
}
.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(62, 207, 142, 0.25), transparent);
  top: 200px;
  left: 50%;
  animation-delay: -5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 60px;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-headline-accent {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
  font-weight: 400;
}
.hero-sub-2 {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
}
.hero-visual {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 24px 80px;
}
.hero-monitor-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-monitor-img {
  width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 30px 80px rgba(43, 143, 168, 0.25));
  animation: floatMon 6s ease-in-out infinite;
}
@keyframes floatMon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
/* Blue wave lines behind monitor */
.hero-wave {
  position: absolute;
  inset: -40px;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-wave svg { width: 100%; height: 100%; opacity: 0.5; }

/* =============================================
   SECTION SHARED STYLES
   ============================================= */
section { padding: 100px 0; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title-teal { color: var(--color-primary); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.section-body {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.text-center { text-align: center; }

/* =============================================
   END-TO-END SOFTWARE SECTION
   ============================================= */
.software-section { background: var(--color-white); }
.software-inner { text-align: center; }
.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px 0;
  flex-wrap: wrap;
  row-gap: 24px;
}
.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  transition: var(--transition);
  cursor: default;
}
.workflow-step:hover { transform: translateY(-6px); }
.workflow-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  border: 2px solid rgba(43, 143, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--color-primary);
}
.workflow-step:hover .workflow-step-icon {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(43, 143, 168, 0.2);
  background: rgba(43, 143, 168, 0.05);
}
.workflow-step-icon svg { width: 36px; height: 36px; }
.workflow-step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
}
.workflow-arrow {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* =============================================
   ELEVATE SECTION
   ============================================= */
.elevate-section { background: var(--color-white); padding: 80px 0 100px; }
.elevate-inner { text-align: center; }
.elevate-visual {
  max-width: 860px;
  margin: 60px auto 48px;
  position: relative;
}
.elevate-img {
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 20px 60px rgba(43, 143, 168, 0.2));
  transition: var(--transition-slow);
}
.elevate-img:hover {
  filter: drop-shadow(0 30px 80px rgba(43, 143, 168, 0.3));
  transform: scale(1.01);
}

/* =============================================
   SEE IT BEFORE SECTION
   ============================================= */
.seeit-section {
  background: linear-gradient(135deg, #2bb8d4 0%, #1a9eb8 40%, #12a8a8 70%, #0fb8a0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.seeit-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
  border-radius: 50%;
}
.seeit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.seeit-content { color: white; }
.seeit-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.seeit-body {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 36px;
}
.seeit-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.seeit-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.2));
  animation: floatMon 7s ease-in-out infinite;
}

/* =============================================
   INSPIRATION GALLERY SECTION
   ============================================= */
.inspiration-section { background: var(--color-white); padding: 100px 0; }
.inspiration-inner { text-align: center; }
.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 40px 0 48px;
  background: #f4f8fb;
  border-radius: var(--border-radius-pill);
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.gallery-tab {
  padding: 10px 24px;
  border-radius: var(--border-radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition-fast);
  background: transparent;
  border: none;
  font-family: inherit;
}
.gallery-tab:hover { color: var(--color-primary); }
.gallery-tab.active {
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
  margin-bottom: 48px;
}
.gallery-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--color-bg-section);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 143, 168, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-center {
  grid-row: 1 / 3;
  grid-column: 2;
}
.gallery-item-center { /* taller center column */ }

/* =============================================
   CTA BANNER SECTION
   ============================================= */
.cta-section {
  background: var(--gradient-cta);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
  border-radius: 50%;
}
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-section .btn-primary {
  background: white;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-white);
  padding: 60px 0 0;
  border-top: 1px solid #e8f0f5;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8f0f5;
}
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.03em;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(43, 143, 168, 0.35);
}
.social-icon svg { width: 18px; height: 18px; }
.footer-contact {
  padding: 24px 0 32px;
  border-bottom: 1px solid #e8f0f5;
}
.footer-contact p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 8px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #e8f0f5;
}
.footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col-links li { margin-bottom: 10px; }
.footer-col-links a {
  font-size: 0.9rem;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}
.footer-col-links a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: left;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* =============================================
   PLACEHOLDER IMAGES (SVG-based)
   ============================================= */
.img-placeholder {
  background: linear-gradient(135deg, #e8f4fa, #d0edf5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .seeit-inner { grid-template-columns: 1fr; text-align: center; }
  .seeit-visual { margin: 0 auto; }
  .gallery-grid { grid-template-rows: repeat(2, 200px); }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .main-nav { display: none; }
  .nav-right .nav-login, .nav-right .nav-lang { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item-center { grid-row: auto; grid-column: auto; }
  .footer-top { flex-direction: column; gap: 24px; text-align: center; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .workflow-steps { gap: 0; }
  .workflow-arrow { display: none; }
}
@media (max-width: 480px) {
  .hero-content { padding: 60px 24px 40px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 150px);
  }
  .footer-columns { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
}

/* =============================================
   PARALLAX LAYERS
   ============================================= */
.parallax-layer {
  will-change: transform;
}

/* =============================================
   LOADING ANIMATION
   ============================================= */
.page-loader {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-logo span { color: var(--color-primary); }
@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.97); }
}
