/* ═══════════════════════════════════════════════════════════════
   PRO FINISH CUSTOM CARPENTRY — profinishusa.com
   Brand: Blue (#1B4D8E) + Yellow/Gold (#FFD700) + Saw Blade motif
   ═══════════════════════════════════════════════════════════════ */

:root {
  --blue-900: #0D2847;
  --blue-800: #143766;
  --blue-700: #1B4D8E;
  --blue-600: #2563A8;
  --blue-500: #3078C0;
  --blue-400: #5094D4;
  --blue-100: #DBEAFE;
  --blue-50: #EFF6FF;
  --yellow-700: #B8860B;
  --yellow-600: #DAA520;
  --yellow-500: #FFD700;
  --yellow-400: #FFE44D;
  --yellow-300: #FFF176;
  --yellow-100: #FFFDE7;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
}

a { color: var(--yellow-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-700); }

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

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

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow-500);
  color: var(--blue-900);
  border-color: var(--yellow-500);
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.35);
}
.btn-primary:hover {
  background: var(--yellow-400);
  border-color: var(--yellow-400);
  color: var(--blue-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Titles ──────────────────────────────────────── */

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  color: var(--blue-700);
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--yellow-500);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-title.left { text-align: left; }
.section-title.left::after { margin-left: 0; }

.section-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Navigation ──────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(13, 40, 71, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-saw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-500);
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.nav-brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--yellow-400); }
.nav-cta {
  background: var(--yellow-500) !important;
  color: var(--blue-900) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--yellow-400) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 1px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-800) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,215,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(48,120,192,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
#sparksCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.blade-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.blade-container canvas {
  width: 100% !important;
  height: 100% !important;
  opacity: 0.25;
}
.blade-container svg {
  width: 100%;
  height: 100%;
  animation: bladeSpin 20s linear infinite;
}
@keyframes bladeSpin { to { transform: rotate(360deg); } }

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(255,255,255,0.03), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 800px;
}
.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .yellow { color: var(--yellow-500); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Sawdust Canvas ──────────────────────────────────────── */

#sawdustCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Services ────────────────────────────────────────────── */

.services {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--yellow-400);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-600);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--yellow-500);
  color: var(--blue-900);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--blue-800);
}
.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── About ───────────────────────────────────────────────── */

.about { padding: 100px 0; position: relative; z-index: 1; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.about-content {
  opacity: 0;
  transform: translateX(-20px);
}
.about-content.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease;
}
.about-lead {
  font-size: 1.2rem;
  color: var(--yellow-600);
  font-weight: 600;
  margin: 24px 0 16px;
}
.about-content p { margin-bottom: 16px; color: var(--gray-700); }
.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
}
.stat strong { display: block; font-size: 0.95rem; color: var(--gray-900); }
.stat span { font-size: 0.8rem; color: var(--gray-500); }

.about-image {
  opacity: 0;
  transform: translateX(20px);
}
.about-image.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease 0.2s;
}
.about-image-placeholder {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  box-shadow: var(--shadow-xl);
}
.about-logo-display {
  width: 80%;
  border-radius: var(--radius-lg);
}

/* ── Area Banner ─────────────────────────────────────────── */

.area-banner {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  padding: 48px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.area-banner h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.area-cities {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}
.area-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow-400);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Work Gallery ────────────────────────────────────────── */

.work {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
  z-index: 1;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.work-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-500);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.work-note {
  text-align: center;
  color: var(--gray-500);
  margin-top: 24px;
  font-style: italic;
  font-size: 0.9rem;
}

/* ── Trusted By ──────────────────────────────────────────── */

.testimonials { padding: 100px 0; position: relative; z-index: 1; }
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trusted-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.trusted-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.trusted-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow-400);
}
.trusted-icon {
  color: var(--yellow-500);
  margin-bottom: 16px;
}
.trusted-card h3 {
  font-size: 1.4rem;
  color: var(--blue-700);
  margin-bottom: 10px;
}
.trusted-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ── CTA Banner ──────────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-700));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px;
  height: 600px;
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 2.5rem;
  color: var(--blue-900);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(13,40,71,0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-primary {
  background: var(--blue-800);
  color: var(--yellow-400);
  border-color: var(--blue-800);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.cta-banner .btn-primary:hover {
  background: var(--blue-900);
  color: var(--yellow-300);
}
.cta-banner .btn-outline {
  border-color: rgba(13,40,71,0.4);
  color: var(--blue-900);
}
.cta-banner .btn-outline:hover {
  background: rgba(13,40,71,0.1);
  border-color: var(--blue-900);
}

/* ── Contact ─────────────────────────────────────────────── */

.contact {
  padding: 100px 0;
  background: var(--gray-50);
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateX(-20px);
}
.contact-item.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.5s ease;
}
.contact-item:nth-child(2).visible { transition-delay: 0.1s; }
.contact-item:nth-child(3).visible { transition-delay: 0.2s; }

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-700);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.contact-item a {
  color: var(--yellow-600);
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-item p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 2px;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  color: var(--gray-800);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 77, 142, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 24px;
}
.form-success h3 {
  color: #22c55e;
  margin: 12px 0 8px;
}
.form-success p { color: var(--gray-600); }

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  background: var(--blue-900);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-saw-icon {
  display: flex;
  align-items: center;
  color: var(--yellow-500);
}
.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-brand strong {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
}
.footer-brand span {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow-400); }
.footer-contact {
  display: flex;
  gap: 24px;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--yellow-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════════
   BELLE CHAT WIDGET
   ═══════════════════════════════════════════════════════════════ */

.belle-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue-700);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27, 77, 142, 0.4);
  z-index: 9998;
  transition: all var(--transition);
}
.belle-fab:hover {
  background: var(--blue-600);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(27, 77, 142, 0.5);
}
.belle-fab svg { color: var(--yellow-500); }
.belle-fab.hidden { display: none; }

.belle-fab-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--yellow-500);
  animation: bellePulse 2s ease-out infinite;
}
@keyframes bellePulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.belle-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 400px;
  height: 600px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  border: 1px solid var(--gray-200);
}
.belle-panel.open {
  display: flex;
  animation: belleSlideUp 0.3s ease;
}
@keyframes belleSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.belle-header {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.belle-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.belle-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--blue-900);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}
.belle-header-text h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.belle-header-text span {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.belle-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}
.belle-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.belle-header-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.belle-header-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.belle-header-btn.active { color: var(--yellow-400); }

.belle-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.belle-messages::-webkit-scrollbar { width: 4px; }
.belle-messages::-webkit-scrollbar-track { background: transparent; }
.belle-messages::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }

.belle-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: msgFade 0.3s ease;
}
@keyframes msgFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.belle-msg.ai {
  align-self: flex-start;
  background: var(--blue-100);
  color: var(--blue-900);
  border-bottom-left-radius: 4px;
}
.belle-msg.user {
  align-self: flex-end;
  background: var(--gray-200);
  color: var(--gray-900);
  border-bottom-right-radius: 4px;
}

.belle-typing {
  align-self: flex-start;
  padding: 10px 14px;
  background: var(--blue-100);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.belle-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: typingDot 1.2s ease-in-out infinite;
}
.belle-typing span:nth-child(2) { animation-delay: 0.2s; }
.belle-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.belle-suggestions {
  padding: 8px 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.belle-suggestion {
  padding: 6px 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
  border-radius: 20px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Open Sans', sans-serif;
}
.belle-suggestion:hover {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
}

.belle-input-area {
  padding: 12px 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
  background: var(--gray-50);
}
.belle-input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  resize: none;
  max-height: 80px;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.belle-input:focus { border-color: var(--blue-500); }

.belle-send-btn,
.belle-mic-btn,
.belle-photo-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.belle-send-btn {
  background: var(--blue-700);
  color: var(--white);
}
.belle-send-btn:hover { background: var(--blue-600); }
.belle-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.belle-mic-btn,
.belle-photo-btn {
  background: var(--gray-200);
  color: var(--gray-600);
}
.belle-mic-btn:hover,
.belle-photo-btn:hover { background: var(--gray-300); }
.belle-mic-btn.listening {
  background: #ef4444;
  color: var(--white);
  animation: micPulse 1s ease-in-out infinite;
}
@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

/* ── Wake Word Indicator ─────────────────────────────────── */

.wake-indicator {
  position: fixed;
  top: 80px;
  right: 24px;
  padding: 6px 12px;
  background: var(--blue-800);
  color: var(--yellow-400);
  border-radius: 20px;
  font-size: 0.72rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 9997;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wake-indicator.active { opacity: 1; }
.wake-indicator .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--blue-900);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }
  .nav-links.active { right: 0; }

  .hero h1 { font-size: 2.2rem; }
  .hero-logo { width: 140px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-video { opacity: 0.25; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .trusted-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .section-title { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; }

  .area-cities { gap: 10px; font-size: 0.95rem; }
  .cta-banner h2 { font-size: 1.8rem; }

  .belle-panel {
    width: calc(100vw - 16px);
    height: calc(100vh - 80px);
    bottom: 8px;
    right: 8px;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 1rem; }
  .hero-logo { width: 120px; }
  .hero-video { opacity: 0.2; }
  .work-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   AAA EFFECTS + QA ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow-500);
  color: var(--blue-900);
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: top var(--transition);
}
.skip-to-content:focus {
  top: 0;
  color: var(--blue-900);
}

*:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.2);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--yellow-400);
  outline-offset: 4px;
  border-radius: 4px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(27, 77, 142, 0.15);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

.btn-primary:active {
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Shine Sweep on Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.04), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.service-card:hover::before { left: 100%; }

/* Stagger Service Cards */
.service-card:nth-child(1).visible { transition-delay: 0s; }
.service-card:nth-child(2).visible { transition-delay: 0.08s; }
.service-card:nth-child(3).visible { transition-delay: 0.16s; }
.service-card:nth-child(4).visible { transition-delay: 0.24s; }
.service-card:nth-child(5).visible { transition-delay: 0.32s; }
.service-card:nth-child(6).visible { transition-delay: 0.40s; }
.service-card.visible {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Stagger Trusted Cards */
.trusted-card:nth-child(1).visible { transition-delay: 0s; }
.trusted-card:nth-child(2).visible { transition-delay: 0.1s; }
.trusted-card:nth-child(3).visible { transition-delay: 0.2s; }
.trusted-card.visible {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Premium Trusted Card Hover */
.trusted-card {
  position: relative;
  overflow: hidden;
}
.trusted-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-400), var(--blue-500), var(--yellow-400));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.trusted-card:hover::after { transform: scaleX(1); }

/* Gradient Border Glow on Contact Form */
.contact-form { position: relative; }
.contact-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-xl) + 1px);
  background: linear-gradient(135deg, var(--blue-400), var(--yellow-500));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.contact-form:focus-within::before { opacity: 1; }
.contact-form:focus-within {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}

/* Area Dot Pulse */
.area-dot { animation: dotPulse 3s ease-in-out infinite; }
.area-dot:nth-child(4) { animation-delay: 0.3s; }
.area-dot:nth-child(6) { animation-delay: 0.6s; }
.area-dot:nth-child(8) { animation-delay: 0.9s; }
.area-dot:nth-child(10) { animation-delay: 1.2s; }
.area-dot:nth-child(12) { animation-delay: 1.5s; }
@keyframes dotPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Work Placeholder Gradient */
.work-placeholder {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Second Blade Layer */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 500px;
  height: 500px;
  border: 1px dashed rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
  animation: bladeSpin 90s linear infinite reverse;
}

/* Form Validation */
.form-group input:invalid:not(:placeholder-shown) { border-color: #ef4444; }
.form-group input:valid:not(:placeholder-shown) { border-color: #22c55e; }

section { position: relative; }

/* ── Print ─────────────────────────────────────────────── */
@media print {
  .nav, .hero-scroll, .hero-overlay, .cta-banner,
  .work, .contact-form, .nav-toggle, .btn,
  .belle-fab, .belle-panel, #sawdustCanvas, .blade-container,
  .hero-video, #sparksCanvas, .wake-indicator { display: none !important; }

  body { color: #000; background: #fff; font-size: 12pt; }

  .hero { min-height: auto; background: none !important; padding: 20px 0; }
  .hero h1 { color: #000; font-size: 24pt; text-shadow: none; }
  .hero-sub { color: #333; }
  .hero-logo { width: 100px; }

  .services, .about, .testimonials, .contact {
    padding: 20px 0; background: none !important;
  }
  .services-grid, .trusted-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .trusted-card, .contact-item {
    opacity: 1 !important; transform: none !important;
    box-shadow: none; border: 1px solid #ccc;
  }
  .section-title { color: #000; }
  .footer { background: none !important; border-top: 2px solid #000; padding: 10px 0; }
  .footer-brand strong, .footer-brand span, .footer-links a, .footer-bottom p, .footer-contact a { color: #000 !important; }
  a { color: #000; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
  a[href^="mailto:"]::after { content: " (" attr(href) ")"; }
}

/* ── Reduced Motion ──────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════
   REVIEWS SCROLLBOARD
   ═══════════════════════════════════════════════════════════════ */

.reviews-scroll {
  padding: 80px 0;
  background: var(--blue-900);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.reviews-scroll h2 {
  color: var(--white);
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.reviews-scroll h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--yellow-500);
  margin: 16px auto 0;
  border-radius: 2px;
}
.reviews-scroll .sub {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  margin-bottom: 36px;
}
.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 40s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
}
.review-stars { color: var(--yellow-500); font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.review-author { color: var(--yellow-400); font-family: 'Oswald', sans-serif; font-size: .85rem; letter-spacing: .5px; }
.review-cta {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600));
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
}
.review-cta h3 { color: var(--blue-900); font-size: 1.2rem; margin-bottom: 12px; }
.review-cta a {
  padding: 10px 24px;
  background: var(--blue-800);
  color: var(--yellow-400);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .5px;
}

/* ═══════════════════════════════════════════════════════════════
   BEFORE/AFTER SLIDER
   ═══════════════════════════════════════════════════════════════ */

.ba-slider-wrap { position: relative; width: 100%; overflow: hidden; border-radius: var(--radius-lg); cursor: ew-resize; aspect-ratio: 16/9; background: var(--gray-200); }
.ba-slider-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--yellow-500);
  cursor: ew-resize;
  z-index: 5;
  transform: translateX(-50%);
}
.ba-handle::after {
  content: '⟷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--yellow-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.ba-label {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 4;
}
.ba-label.before { left: 12px; background: rgba(27,77,142,.8); color: var(--white); }
.ba-label.after { right: 12px; background: rgba(255,215,0,.9); color: var(--blue-900); }

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE TOGGLE + AUTH NAV
   ═══════════════════════════════════════════════════════════════ */

.lang-toggle {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.3);
}
.lang-btn {
  padding: 4px 10px;
  font-size: .7rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: rgba(255,255,255,.6);
}
.lang-btn.active {
  background: var(--yellow-500);
  color: var(--blue-900);
}
.nav-auth {
  padding: 6px 16px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-auth:hover { background: var(--yellow-500); color: var(--blue-900); }

/* ═══════════════════════════════════════════════════════════════
   PROMO BANNER
   ═══════════════════════════════════════════════════════════════ */

.promo-banner {
  background: linear-gradient(90deg, var(--yellow-500), var(--yellow-600));
  padding: 14px 24px;
  text-align: center;
  display: none;
  position: relative;
  z-index: 1;
}
.promo-banner.visible { display: block; }
.promo-banner p {
  color: var(--blue-900);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.promo-banner .promo-code {
  display: inline-block;
  padding: 2px 10px;
  background: var(--blue-800);
  color: var(--yellow-400);
  border-radius: 4px;
  font-size: .85rem;
  margin-left: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG TEASER
   ═══════════════════════════════════════════════════════════════ */

.blog-teaser { padding: 80px 0; position: relative; z-index: 1; }
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.blog-teaser-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.blog-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow-400);
}
.blog-teaser-img {
  height: 160px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,215,0,.5);
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
}
.blog-teaser-body { padding: 20px; }
.blog-teaser-body h3 { font-size: 1.1rem; color: var(--blue-800); margin-bottom: 8px; }
.blog-teaser-body p { color: var(--gray-600); font-size: .85rem; line-height: 1.5; }
.blog-teaser-link { text-align: center; }
.blog-teaser-link a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .9rem;
  color: var(--yellow-600);
}

/* ═══════════════════════════════════════════════════════════════
   PWA INSTALL PROMPT
   ═══════════════════════════════════════════════════════════════ */

.pwa-prompt {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  border: 1px solid var(--gray-200);
  z-index: 9990;
  display: none;
  max-width: 300px;
}
.pwa-prompt.show { display: block; animation: belleSlideUp .3s ease; }
.pwa-prompt h4 { font-size: .95rem; color: var(--blue-700); margin-bottom: 6px; }
.pwa-prompt p { font-size: .8rem; color: var(--gray-500); margin-bottom: 12px; }
.pwa-prompt-actions { display: flex; gap: 8px; }
.pwa-prompt-actions button {
  padding: 6px 16px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}
.pwa-install-btn { background: var(--yellow-500); color: var(--blue-900); }
.pwa-dismiss-btn { background: var(--gray-100); color: var(--gray-600); }

@media (max-width: 768px) {
  .blog-teaser-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }
}

/* ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .hero-logo { animation: none; }
  .hero-scroll-line { animation: none; opacity: 0.6; }
  .area-dot { animation: none; }
  .work-placeholder { animation: none; }
  .hero-video { animation: none; }
  .belle-fab-pulse { animation: none; display: none; }

  .service-card, .trusted-card, .contact-item,
  .about-content, .about-image {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .service-card::before { display: none; }
}
