/* ═══════════════════════════════════════════════════════════
   GlobalEnergy — CSS
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Palette Navy  */
  --navy:       #0a1628;
  --navy-2:     #0e1f3a;
  --navy-3:     #142847;
  --navy-mid:   #1e3a5f;
  --blue:       #1a56a4;
  --blue-light: #2e74d4;
  --sky:        #4a9fd4;
  --sky-pale:   rgba(74,159,212,0.12);
  --sky-line:   rgba(74,159,212,0.3);

  /* Neutrals */
  --slate:      #354768;
  --muted:      #6a7d9a;
  --silver:     #a2b2c8;
  --fog:        #dce5f0;
  --paper:      #f5f8fc;
  --white:      #ffffff;

  /* Accent */
  --accent:     #2e74d4;
  --accent-dim: #1a56a4;
  --accent-pale:rgba(46,116,212,0.1);

  /* Typography */
  --ff-main:    'Outfit', system-ui, sans-serif;
  --ff-serif:   'Lora', Georgia, serif;

  /* Layout */
  --nav-h:   72px;
  --r:       5px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --dur:     0.3s;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-main);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: var(--ff-main); font-weight: 600; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
#mainNav {
  height: var(--nav-h);
  background: transparent;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  z-index: 1000;
  border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(74,159,212,0.2);
  border-bottom-color: rgba(74,159,212,0.2);
}

/* Brand */
.brand-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--blue-light);
  color: var(--white);
  font-family: var(--ff-main);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 6px;
  flex-shrink: 0;
}
.brand-icon--sm { width: 30px; height: 30px; font-size: 11px; }

.brand-text {
  font-family: var(--ff-main);
  font-size: 17px; font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 0;
}
.brand-text strong { font-weight: 700; }
.navbar-brand { display: flex; align-items: center; gap: 10px; }

/* Nav links */
.navbar-nav .nav-link {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 6px 12px !important;
  transition: color var(--dur);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 12px; right: 12px;
  height: 1px; background: var(--sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* CTA nav button */
.nav-cta {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  background: var(--blue-light);
  border: 1px solid var(--blue-light);
  padding: 8px 20px; border-radius: var(--r);
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggler {
  border: none; background: transparent;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.ham {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--dur);
}

/* Lang switcher */
.lang-switcher {
  display: flex; gap: 2px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px; padding: 3px 5px;
}
.lang-btn {
  background: transparent; border: none;
  font-family: var(--ff-main); font-size: 10px;
  font-weight: 500; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  padding: 3px 8px; border-radius: 14px;
  cursor: pointer; transition: var(--dur);
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { background: var(--blue-light); color: var(--white); font-weight: 600; }

@media (max-width: 991px) {
  .lang-switcher { margin: 12px 0 6px; }
  .navbar-collapse {
    background: rgba(10,22,40,0.97);
    padding: 20px 16px;
    border-top: 1px solid var(--sky-line);
    margin-top: 4px;
  }
  .nav-cta { margin: 8px 0 4px; }
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.04);
  animation: kenBurns 14s ease-out forwards;
}
@keyframes kenBurns {
  to { transform: scale(1); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.7) 55%, rgba(10,22,40,0.3) 100%),
    linear-gradient(to top, rgba(10,22,40,0.65) 0%, transparent 45%);
}

.hero-body {
  position: relative; z-index: 1;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 120px;
}

.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sky);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 30px; height: 1px;
  background: var(--sky);
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--ease) forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}

.hero-lead {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 500px; line-height: 1.85;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s var(--ease) forwards;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease) forwards;
}

/* Buttons — primary */
.btn-primary {
  display: inline-flex; align-items: center;
  font-family: var(--ff-main);
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue-light);
  border: 1px solid var(--blue-light);
  padding: 13px 30px; border-radius: var(--r);
  cursor: pointer;
  transition: background var(--dur), border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,116,212,0.35);
}

/* Buttons — secondary */
.btn-secondary {
  display: inline-flex; align-items: center;
  font-family: var(--ff-main);
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 30px; border-radius: var(--r);
  cursor: pointer;
  transition: border-color var(--dur), color var(--dur), transform var(--dur);
}
.btn-secondary:hover {
  border-color: var(--sky); color: var(--sky);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s 1.3s forwards;
}
.scroll-pill {
  width: 26px; height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 13px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.scroll-dot-inner {
  width: 4px; height: 8px;
  background: var(--sky);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ══════════════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════════════ */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 2px; background: var(--accent);
}
.eyebrow--light { color: var(--sky); }
.eyebrow--light::before { background: var(--sky); }

.sec-title {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500; color: var(--navy);
  line-height: 1.2; margin-bottom: 20px;
}
.sec-title--light { color: var(--white); }

.sec-body {
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.85;
  margin-bottom: 16px;
}
.sec-body--light { color: var(--silver); }

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
.section-services {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--fog);
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--fog);
  border-radius: 8px;
  padding: 36px 32px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
}
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(10,22,40,0.1);
  transform: translateY(-5px);
  border-color: var(--sky-line);
}
.svc-card--featured {
  background: var(--navy-2);
  border-color: var(--navy-mid);
}
.svc-card--featured .svc-card-title { color: var(--white); }
.svc-card--featured .svc-card-body  { color: var(--silver); }
.svc-card--featured .svc-card-ico   { color: var(--sky); }

.svc-card-ico {
  font-size: 30px; color: var(--blue-light);
  margin-bottom: 20px; display: block;
}
.svc-card-title {
  font-family: var(--ff-main);
  font-size: 19px; font-weight: 600;
  color: var(--navy); margin-bottom: 12px;
}
.svc-card-body {
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  margin-bottom: 20px;
}
.svc-card-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover .svc-card-line { transform: scaleX(1); }

/* ══════════════════════════════════════════════
   WHY GNL
   ══════════════════════════════════════════════ */
.section-why {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
}

.section-why .container { position: relative; z-index: 1; }

/* Photo #2 */
.why-photo-wrap {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  position: relative;
}
.why-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(46,116,212,0.15), transparent);
  border-radius: 8px;
}
.why-photo {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 8px;
  filter: saturate(0.8) brightness(0.9);
  transition: filter 0.5s;
}
.why-photo-wrap:hover .why-photo {
  filter: saturate(1) brightness(0.95);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px 20px;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--sky-line);
  transform: translateY(-3px);
}
.why-card-ico {
  font-size: 24px; color: var(--sky);
  flex-shrink: 0; margin-top: 2px;
  width: 32px;
}
.why-card-title {
  font-size: 15px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
}
.why-card-body {
  font-size: 13px; font-weight: 300;
  color: var(--silver); line-height: 1.75;
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.section-about {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--fog);
}

.about-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--fog);
}
.ad-item { display: flex; flex-direction: column; gap: 4px; }
.ad-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.ad-val {
  font-size: 13px; font-weight: 400; color: var(--navy);
}

.about-values { display: flex; flex-direction: column; }

.av-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--fog);
}
.av-item:first-child { padding-top: 0; }
.av-item:last-child { border-bottom: none; padding-bottom: 0; }

.av-num {
  font-family: var(--ff-serif);
  font-size: 32px; font-weight: 400;
  color: var(--sky-line);
  flex-shrink: 0; line-height: 1;
  width: 40px;
}
.av-title {
  font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.av-body {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.75;
}

/* ══════════════════════════════════════════════
   SUSTAINABILITY
   ══════════════════════════════════════════════ */
.section-sustain {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--fog);
}

.sustain-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 30px;
}
.s-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue);
  border: 1px solid var(--fog);
  border-radius: 20px; padding: 5px 14px;
  background: var(--accent-pale);
  transition: border-color var(--dur), background var(--dur);
}
.s-badge i { font-size: 12px; color: var(--blue-light); }
.s-badge:hover { border-color: var(--sky-line); background: var(--sky-pale); }

/* Photo #3 */
.sustain-photo-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.sustain-photo {
  width: 100%; height: 420px;
  object-fit: cover; border-radius: 8px;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.5s;
}
.sustain-photo-wrap:hover .sustain-photo { filter: saturate(1); }

.sustain-photo-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--sky-line);
  border-radius: 6px;
  padding: 10px 18px;
  color: var(--sky);
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
}
.sustain-photo-badge i { font-size: 16px; }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.section-contact {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid rgba(74,159,212,0.15);
}

/* Form */
.cf-wrap { display: flex; flex-direction: column; gap: 20px; }
.cf-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 575px) { .cf-2col { grid-template-columns: 1fr; } }

.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-field label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--silver);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--ff-main);
  font-size: 14px; font-weight: 300;
  padding: 12px 16px;
  outline: none; width: 100%;
  transition: border-color var(--dur), box-shadow var(--dur);
  appearance: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--slate); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(74,159,212,0.12);
}
.cf-field select { cursor: pointer; }
.cf-field textarea { resize: vertical; min-height: 110px; }

/* Privacy checkbox */
.cf-privacy { margin-top: 4px; }
.cf-check-label {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer;
  color: #a2b2c8;
}
.cf-check-label input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 3px; accent-color: var(--blue-light);
  cursor: pointer;
}
.cf-check-label span {
  font-size: 12px; font-weight: 300; color: var(--silver); line-height: 1.6;
}
.cf-check-label a { color: var(--sky); text-decoration: underline; }

.cf-bottom { display: flex; gap: 16px; align-items: center; }

.cf-feedback {
  padding: 12px 16px; border-radius: var(--r); font-size: 13px; margin-top: 4px;
}
.cf-feedback.success {
  background: rgba(52,199,89,0.08); border: 1px solid rgba(52,199,89,0.3); color: #4cde7a;
}
.cf-feedback.error {
  background: rgba(255,69,58,0.08); border: 1px solid rgba(255,69,58,0.3); color: #ff6b63;
}

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 28px; }

.ci-group-title {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.ci-group-title::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--sky);
}

.ci-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 12px;
}
.ci-item:last-child { margin-bottom: 0; }
.ci-ico { font-size: 14px; color: var(--sky); flex-shrink: 0; margin-top: 3px; }
.ci-label {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2px;
}
.ci-val {
  display: block; font-size: 14px; font-weight: 300; color: var(--silver);
}
.ci-val a { color: var(--silver); transition: color var(--dur); }
.ci-val a:hover { color: var(--sky); }

.ci-depts {
  display: flex; flex-direction: column; gap: 8px;
}
.ci-depts a {
  font-size: 13px; font-weight: 300; color: var(--silver);
  display: flex; align-items: center; gap: 8px;
  transition: color var(--dur);
}
.ci-depts a i { font-size: 13px; color: var(--slate); }
.ci-depts a:hover { color: var(--sky); }
.ci-depts a:hover i { color: var(--sky); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-2);
  border-top: 1px solid rgba(74,159,212,0.15);
  padding: 60px 0 0;
}

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.fg-tagline {
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 10px;
}
.fg-meta {
  font-size: 12px; font-weight: 300; color: var(--slate);
  line-height: 1.7; margin-bottom: 4px;
}
.fg-meta a { color: var(--slate); transition: color var(--dur); }
.fg-meta a:hover { color: var(--sky); }

.fg-links-title {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 14px;
}

.fg-links, .fg-contacts, .fg-sedi { display: flex; flex-direction: column; gap: 10px; }
.fg-links a, .fg-contacts a {
  font-size: 13px; font-weight: 300; color: var(--muted);
  transition: color var(--dur), padding-left var(--dur);
}
.fg-links a:hover, .fg-contacts a:hover { color: var(--sky); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 11px; font-weight: 300; color: var(--slate);
}

.fg-social { display: flex; gap: 10px; }
.fg-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
  transition: var(--dur);
}
.fg-social a:hover { border-color: var(--sky-line); color: var(--sky); }

/* ══════════════════════════════════════════════
   ANIMATIONS & REVEAL
   ══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

#fService {
  color: #fefefe; /* blu scuro */
}

#fService option {
  color: #0b2a4a; /* blu scuro */
}