/* ===== Variables ===== */
:root {
  --primary: #1a5276;
  --primary-light: #2980b9;
  --primary-dark: #154360;
  --accent: #27ae60;
  --accent-light: #2ecc71;
  --danger: #c0392b;
  --bg: #f0f3f7;
  --card-bg: #ffffff;
  --text: #1c2833;
  --text-muted: #717d7e;
  --border: #d5d8dc;
  --shadow: 0 2px 15px rgba(26, 82, 118, 0.08);
  --shadow-hover: 0 8px 30px rgba(26, 82, 118, 0.18);
  --radius: 12px;
  --radius-sm: 6px;
  --nav-h: 72px;
  --tr: 0.25s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p { color: var(--text-muted); }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--primary); margin-bottom: 0.75rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 50px; font-size: 0.73rem; font-weight: 600; }
.badge-success { background: #d5f5e3; color: #1e8449; }
.badge-warning { background: #fdebd0; color: #a04000; }
.badge-danger  { background: #fadbd8; color: #922b21; }
.badge-info    { background: #d6eaf8; color: #1a5276; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,82,118,.35); }
.btn-accent  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover  { background: #1e8449; border-color: #1e8449; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  display: flex; align-items: center;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 800; font-size: 1.25rem; letter-spacing: -.5px; }
.nav-brand .brand-icon {
  width: 38px; height: 38px; background: rgba(255,255,255,.18); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  color: rgba(255,255,255,.8); padding: 0.5rem 0.9rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; transition: all var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.15); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--tr); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--primary-dark); flex-direction: column; align-items: stretch; gap: 0;
    padding: 0 1rem; max-height: 0; overflow: hidden;
    transition: max-height var(--tr), padding var(--tr);
  }
  .nav-links.open { max-height: 400px; padding: 1rem; }
  .nav-links a { padding: 0.75rem 1rem; font-size: 1rem; }
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff; padding: 110px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { position: relative; margin-bottom: 0.75rem; }
.page-header p  { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; position: relative; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1a6fa0 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3Ccircle cx='0' cy='0' r='10'/%3E%3Ccircle cx='80' cy='80' r='10'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; color: #fff; max-width: 680px; padding: 3rem 0; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content h1 span { color: var(--accent-light); }
.hero-content .hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.88); margin-bottom: 2rem; max-width: 540px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-bg-icon { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); font-size: 300px; opacity: .04; user-select: none; pointer-events: none; }

/* ===== Stats ===== */
.stats-section { background: #fff; box-shadow: var(--shadow); position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stat-item { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { color: var(--text-muted); margin-top: .5rem; font-size: .9rem; }
@media (max-width: 580px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ===== Feature cards ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 2rem 1.5rem;
  box-shadow: var(--shadow); transition: all var(--tr); border-top: 4px solid var(--primary);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 1.25rem;
}
.feature-card h3 { color: var(--primary); margin-bottom: .5rem; }

/* ===== Products Grid ===== */
.products-controls { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; margin-bottom: 2rem; }
.search-box { flex: 1; min-width: 200px; position: relative; }
.search-box input {
  width: 100%; padding: .65rem 1rem .65rem 2.75rem;
  border: 2px solid var(--border); border-radius: 50px;
  font-size: .95rem; transition: border-color var(--tr); background: var(--card-bg);
}
.search-box input:focus { outline: none; border-color: var(--primary); }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.filter-select {
  padding: .65rem 1rem; border: 2px solid var(--border); border-radius: 50px;
  font-size: .9rem; background: var(--card-bg); cursor: pointer;
  min-width: 155px; transition: border-color var(--tr);
}
.filter-select:focus { outline: none; border-color: var(--primary); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(275px,1fr)); gap: 1.5rem; }
.product-card {
  background: var(--card-bg); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: all var(--tr);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-img {
  width: 100%; height: 195px;
  background: linear-gradient(135deg, #dde8f2, #bdd1e6);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--primary-light); overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: .72rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .4rem; }
.product-name { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: .45rem; }
.product-desc { font-size: .85rem; flex: 1; margin-bottom: 1rem; line-height: 1.55; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-ref { font-size: .75rem; color: var(--text-muted); font-family: monospace; }
.no-products { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.no-products .icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px,1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; color: var(--primary); opacity: .1; line-height: 1; font-family: Georgia, serif;
}
.testimonial-text { font-style: italic; color: var(--text); margin-bottom: 1.5rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--primary); }
.testimonial-role { font-size: .78rem; color: var(--text-muted); }

/* ===== CTA Banner ===== */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; text-align: center; padding: 5rem 2rem; }
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Timeline ===== */
.timeline { position: relative; padding: 1.5rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--primary-light), var(--accent));
  transform: translateX(-50%);
}
.timeline-item { display: grid; grid-template-columns: 1fr 64px 1fr; gap: 1.5rem; margin-bottom: 2.5rem; align-items: start; }
.timeline-content {
  background: var(--card-bg); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); border-left: 4px solid var(--primary);
}
.timeline-item:nth-child(even) .timeline-content { border-left: none; border-right: 4px solid var(--accent); grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-dot  { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; grid-row: 1; }
.timeline-content h3 { color: var(--primary); margin-bottom: .5rem; }
.timeline-dot {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .75rem; text-align: center; line-height: 1.25;
  box-shadow: 0 4px 12px rgba(26,82,118,.3); flex-shrink: 0;
}
@media (max-width: 680px) {
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .timeline-empty { display: none; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 1; border-right: none; border-left: 4px solid var(--accent); }
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; grid-row: 1; }
  .timeline-dot { width: 48px; height: 48px; font-size: .65rem; }
}

/* ===== Values ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.value-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); text-align: center; transition: all var(--tr);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-icon {
  font-size: 2rem; width: 68px; height: 68px;
  background: linear-gradient(135deg, #e8f4fd, #d1e8f5);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-card h3 { color: var(--primary); margin-bottom: .5rem; }

/* ===== Mission / Vision ===== */
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.mv-card { border-radius: var(--radius); padding: 2.5rem; position: relative; overflow: hidden; }
.mv-card.mission { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.mv-card.vision  { background: linear-gradient(135deg, var(--accent), #1e8449); }
.mv-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: #fff; }
.mv-card p  { color: rgba(255,255,255,.9); font-size: 1rem; line-height: 1.75; }
.mv-bg-icon { font-size: 6rem; position: absolute; right: 1.5rem; bottom: 1rem; opacity: .08; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.team-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); text-align: center; transition: all var(--tr);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; font-weight: 700;
}
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: .2rem; }
.team-role { color: var(--accent); font-size: .82rem; font-weight: 600; margin-bottom: .75rem; }

/* ===== Contact ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; align-items: start; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--primary); border-radius: var(--radius); padding: 2.5rem; color: #fff; }
.contact-info-card h3 { color: #fff; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px; background: rgba(255,255,255,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.ci-label { font-size: .78rem; opacity: .7; margin-bottom: .2rem; }
.ci-value { font-weight: 500; font-size: .95rem; }
.social-links { display: flex; gap: .75rem; margin-top: 2rem; }
.social-link {
  width: 40px; height: 40px; background: rgba(255,255,255,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; transition: all var(--tr);
}
.social-link:hover { background: var(--accent); transform: translateY(-2px); }
.contact-form-card { background: var(--card-bg); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-card h3 { color: var(--primary); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .68rem 1rem;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: .93rem; transition: border-color var(--tr); background: var(--bg); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.map-section { margin-top: 3rem; }
.map-section h3 { color: var(--primary); margin-bottom: 1rem; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
#map { height: 100%; width: 100%; }

/* ===== Cert strip ===== */
.cert-strip { background: var(--card-bg); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); text-align: center; }
.cert-strip h3 { color: var(--primary); margin-bottom: 1.5rem; }
.cert-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cert-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; padding: .45rem 1.2rem; border-radius: 50px; font-weight: 700; font-size: .82rem;
}

/* ===== Toast ===== */
.toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: #fff; border-radius: var(--radius); padding: 1rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.15); border-left: 4px solid var(--accent);
  display: flex; align-items: center; gap: .75rem; min-width: 270px;
  transform: translateX(120%); transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.toast.show { transform: translateX(0); }
.toast.error { border-left-color: var(--danger); }
.toast-icon { font-size: 1.25rem; }
.toast-text { flex: 1; font-size: .875rem; color: var(--text); font-weight: 500; }
.toast-close { cursor: pointer; opacity: .5; font-size: 1.1rem; background: none; border: none; color: var(--text); }
.toast-close:hover { opacity: 1; }

/* ===== Footer ===== */
footer { background: var(--primary-dark); color: rgba(255,255,255,.75); padding: 4rem 0 1.5rem; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand h3 { color: #fff; font-size: 1.25rem; margin-bottom: .75rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: .95rem; }
.footer-col li { margin-bottom: .5rem; }
.footer-col li a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color var(--tr); }
.footer-col li a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--accent-light); }

/* ===== Page Loader ===== */
body.page-loading { opacity: 0; }
body { transition: opacity .45s ease; }

#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.25rem;
}
#page-loader .pl-icon {
  font-size: 3rem; color: rgba(255,255,255,.9);
  animation: pl-pulse 1.4s ease-in-out infinite;
}
#page-loader .pl-spinner {
  width: 44px; height: 44px;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: pl-spin .75s linear infinite;
}
#page-loader .pl-text {
  color: rgba(255,255,255,.8); font-size: .95rem; font-weight: 500; letter-spacing: .5px;
}
@keyframes pl-spin  { to { transform: rotate(360deg); } }
@keyframes pl-pulse { 0%,100% { transform: scale(1); opacity:.9; } 50% { transform: scale(1.12); opacity:1; } }

#page-loader.fade-out {
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
