@charset "UTF-8";
:root {
  --verde-ubc: #27D045;
  --verde-glow: #52F177;
  --bg-primar: #141618;
  --bg-secundar: #202428;
  --bg-card: #282D32;
  --text-alb: #FFFFFF;
  --text-gri: #A0A6AC;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(16, 20, 25, 0.85);
  --glass-border: rgba(46, 204, 113, 0.2);
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  --header-bg: rgba(20, 22, 24, 0.85);
  --footer-bg: #0c0d0e;
  --input-bg: rgba(255, 255, 255, 0.05);
  --intro-bg: #0a0c0e;
}

[data-theme=light],
body.light-theme {
  --bg-primar: #F8FAFC;
  --bg-secundar: #FFFFFF;
  --bg-card: #FFFFFF;
  --text-alb: #0F172A;
  --text-gri: #334155;
  --verde-ubc: #15803D;
  --verde-glow: #16A34A;
  --border-subtle: rgba(15, 23, 42, 0.2);
  --glass-bg: #FFFFFF;
  --glass-border: #0F172A;
  --card-shadow: 0 12px 30px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.15);
  --header-bg: rgba(255, 255, 255, 0.96);
  --footer-bg: #E2E8F0;
  --input-bg: #F1F5F9;
  --intro-bg: #F8FAFC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: var(--bg-primar);
  color: var(--text-alb);
  line-height: 1.6;
  overflow-x: hidden;
}

header.site-header {
  background-color: var(--header-bg);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.header-subtitle {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-alb);
  background: linear-gradient(135deg, rgba(39, 208, 69, 0.18), rgba(39, 208, 69, 0.05));
  border: 1.5px solid rgba(39, 208, 69, 0.4);
  box-shadow: 0 0 16px rgba(39, 208, 69, 0.22);
  padding: 7px 18px;
  border-radius: 25px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.header-subtitle .highlight {
  color: var(--verde-ubc);
  text-shadow: 0 0 12px rgba(46, 204, 113, 0.6);
  margin-left: 5px;
}

.logo-ubc {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}
.logo-ubc .logo-u {
  color: var(--verde-ubc);
  text-shadow: 0 0 15px rgba(46, 204, 113, 0.4);
}
.logo-ubc .logo-bc {
  color: var(--text-alb);
}

nav ul,
nav li {
  list-style: none !important;
  list-style-type: none !important;
}

@media (min-width: 769px) {
  nav#main-nav {
    width: 50%;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  nav#main-nav ul {
    list-style: none !important;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    flex-wrap: nowrap;
  }
}
.btn-menu {
  background: var(--input-bg);
  color: var(--text-gri) !important;
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.btn-menu:hover, .btn-menu.active {
  background: rgba(46, 204, 113, 0.15);
  color: var(--text-alb) !important;
  border-color: var(--verde-ubc);
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.25);
  transform: translateY(-2px);
}

.btn-suna {
  background: linear-gradient(135deg, var(--verde-ubc), #27ae60);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--verde-glow);
}
.btn-suna:hover {
  background: linear-gradient(135deg, var(--verde-glow), var(--verde-ubc));
  box-shadow: 0 0 25px rgba(63, 239, 139, 0.7);
  transform: translateY(-2px) scale(1.02);
}

.theme-toggle-btn {
  background: var(--input-bg);
  color: var(--text-alb);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.theme-toggle-btn:hover {
  background: rgba(46, 204, 113, 0.2);
  border-color: var(--verde-ubc);
  transform: scale(1.1) rotate(15deg);
}

.hamburger-btn {
  display: none;
}

@media (max-width: 768px) {
  header.site-header {
    padding: 12px 18px;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 0;
  }
  .hamburger-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: background 0.2s;
    grid-column: 1;
    justify-self: start;
  }
  .hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-alb);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s;
  }
  .hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header-brand {
    grid-column: 2;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 1001;
    position: relative;
  }
  .logo-ubc {
    grid-column: auto;
    justify-self: auto;
    font-size: 26px;
    letter-spacing: 0;
    line-height: 1;
  }
  .header-subtitle {
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 2px 8px;
    border-radius: 8px;
  }
  .header-subtitle::before {
    display: none;
  }
}
.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  padding-top: 80px;
  min-height: calc(100vh - 100px);
}
.page-view.active {
  display: block;
  opacity: 1;
  animation: fadeInPage 0.4s ease-out;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-video-banner {
  width: 100%;
  padding-top: 75px;
  background-color: var(--bg-primar);
  position: relative;
}
.hero-video-banner .hero-video-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  max-height: 520px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
}
.hero-video-banner .hero-video-player {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border: none;
}

.hero-text-section {
  padding: 45px 20px 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--bg-primar);
}

.hero-box {
  background: var(--glass-bg);
  padding: 45px 55px;
  border-radius: 18px;
  max-width: 850px;
  width: 100%;
  border: 2px solid var(--glass-border);
  border-left: 6px solid var(--verde-ubc);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(12px);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.hero-box h1 {
  color: var(--text-alb);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
}
.hero-box p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-gri);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-bar {
  background-color: var(--bg-secundar);
  padding: 35px 0;
  display: flex;
  justify-content: space-around;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.trust-item h3 {
  color: var(--verde-ubc);
  font-size: 1.6rem;
  font-weight: 900;
}
.trust-item p {
  color: var(--text-alb);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calc-section,
.produse,
.section-generica {
  padding: 90px 20px;
  text-align: center;
}

.calc-section {
  background-color: var(--bg-primar);
  color: var(--text-alb);
  transition: background-color 0.4s ease, color 0.4s ease;
}
.calc-section h2 {
  color: var(--text-alb);
}
.calc-section p {
  color: var(--text-gri);
}

.produse {
  background-color: var(--bg-secundar);
  transition: background-color 0.4s ease;
}
.produse h2 {
  color: var(--text-alb);
}
.produse p {
  color: var(--text-gri);
}

.calc-box {
  background-color: var(--glass-bg);
  max-width: 700px;
  margin: 0 auto;
  padding: 45px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 2px solid var(--glass-border);
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.calc-inputs-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.calc-group {
  flex: 1;
  text-align: left;
}
.calc-group label {
  color: var(--text-gri);
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.calc-input {
  width: 100%;
  padding: 14px;
  background-color: var(--input-bg);
  border: 1px solid var(--border-subtle);
  color: var(--text-alb);
  border-radius: 8px;
  font-size: 1.1rem;
  text-align: center;
  outline: none;
  transition: all 0.3s;
  font-weight: 700;
}
.calc-input:focus {
  border-color: var(--verde-ubc);
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

.calc-result-box {
  margin: 30px 0;
  padding: 25px 30px;
  background: var(--input-bg);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 30px;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.calc-pillar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.calc-pillar {
  width: 60px;
  height: 140px;
  border: 2px solid var(--verde-ubc);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secundar);
  box-shadow: 0 0 20px rgba(46, 204, 113, 0.08), inset 0 0 20px rgba(0, 0, 0, 0.2);
}
.calc-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0px, transparent 27px, var(--border-subtle) 28px);
  z-index: 1;
  pointer-events: none;
}
.calc-pillar__fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, rgba(63, 239, 139, 0.95) 0%, rgba(46, 204, 113, 0.9) 40%, rgba(22, 160, 70, 0.95) 100%);
  transition: height 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: height;
  z-index: 2;
}
.calc-pillar__wave {
  position: absolute;
  top: -7px;
  left: -25%;
  width: 150%;
  height: 14px;
  background: rgba(100, 255, 170, 0.5);
  border-radius: 50%;
  animation: wave-sway 2.2s ease-in-out infinite;
}

.calc-result-info {
  flex: 1;
  text-align: left;
}
.calc-result-info span {
  color: var(--text-gri);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.calc-result-info #rezultat-volum {
  color: var(--verde-ubc);
  font-size: 3.5rem;
  margin: 4px 0;
  font-weight: 900;
  line-height: 1;
}

.calc-breakdown {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(46, 204, 113, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(46, 204, 113, 0.2);
  font-size: 0.82rem;
  color: var(--text-gri);
  line-height: 1.5;
}

@keyframes wave-sway {
  0%, 100% {
    transform: translateX(-8px) scaleX(0.92);
  }
  50% {
    transform: translateX(8px) scaleX(1.08);
  }
}
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--input-bg);
  color: var(--text-gri);
  border: 2px solid var(--border-subtle);
  padding: 14px 35px;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-btn.active {
  background: var(--verde-ubc);
  color: #FFFFFF !important;
  border-color: var(--verde-ubc);
  box-shadow: 0 0 25px rgba(46, 204, 113, 0.35);
}

.grid-produse {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1250px;
  margin: 0 auto;
}
.grid-produse.hidden {
  display: none !important;
}

.card {
  background-color: var(--glass-bg);
  padding: 40px 30px;
  border-radius: 16px;
  width: 340px;
  border: 2px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--verde-ubc);
  box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
}
.card h3 {
  font-size: 2.3rem;
  margin-bottom: 5px;
  font-weight: 900;
  color: var(--text-alb);
}
.card .standard {
  color: var(--verde-ubc);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: block;
}
.card p {
  color: var(--text-gri);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(46, 204, 113, 0.15);
  color: var(--verde-ubc);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  text-transform: uppercase;
}
.card-badge.heavy {
  background: rgba(255, 76, 76, 0.15);
  color: #DC2626;
  border-color: rgba(255, 76, 76, 0.3);
}

.card-footer-info {
  border-top: 1px solid var(--border-subtle);
  padding-top: 15px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-gri);
}

[data-theme=light] .hero__overlay, body.light-theme .hero__overlay {
  background: linear-gradient(160deg, rgba(248, 250, 252, 0.6) 0%, rgba(241, 245, 249, 0.45) 50%, rgba(248, 250, 252, 0.6) 100%);
}
[data-theme=light] .hero-box, body.light-theme .hero-box {
  background: #FFFFFF;
  border: 2px solid #0F172A;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}
[data-theme=light] .hero-box h1, body.light-theme .hero-box h1 {
  color: #0F172A !important;
}
[data-theme=light] .hero-box p, body.light-theme .hero-box p {
  color: #334155 !important;
}
[data-theme=light] .trust-bar, body.light-theme .trust-bar {
  background: #FFFFFF;
  border-top: 2px solid #0F172A;
  border-bottom: 2px solid #0F172A;
}
[data-theme=light] .trust-bar .trust-item h3, body.light-theme .trust-bar .trust-item h3 {
  color: #15803D !important;
}
[data-theme=light] .trust-bar .trust-item p, body.light-theme .trust-bar .trust-item p {
  color: #0F172A !important;
}
[data-theme=light] .calc-box, body.light-theme .calc-box {
  background: #FFFFFF;
  border: 2px solid #0F172A;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}
[data-theme=light] .calc-input, body.light-theme .calc-input {
  background: #F8FAFC;
  color: #0F172A !important;
  border: 2px solid #334155;
}
[data-theme=light] .calc-input:focus, body.light-theme .calc-input:focus {
  border-color: #15803D;
}
[data-theme=light] .calc-result-box, body.light-theme .calc-result-box {
  background: #F1F5F9;
  border: 2px solid #0F172A;
}
[data-theme=light] .tab-btn, body.light-theme .tab-btn {
  background: #FFFFFF;
  color: #0F172A;
  border: 2px solid #0F172A;
}
[data-theme=light] .tab-btn.active, body.light-theme .tab-btn.active {
  background: #15803D;
  color: #FFFFFF !important;
  border-color: #15803D;
}
[data-theme=light] .card, body.light-theme .card {
  background: #FFFFFF;
  border: 2px solid #0F172A;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .card h3, body.light-theme .card h3 {
  color: #0F172A !important;
}
[data-theme=light] .card p, body.light-theme .card p {
  color: #334155 !important;
}
[data-theme=light] .card .card-footer-info, body.light-theme .card .card-footer-info {
  color: #475569 !important;
  border-top: 1px solid #E2E8F0;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

#page-despre {
  padding-top: 0;
}

.dp-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 900px) {
  .dp-section {
    background-attachment: scroll;
  }
}

.dp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.78);
  z-index: 0;
}

.dp-overlay--story {
  background: linear-gradient(135deg, rgba(8, 10, 13, 0.88) 0%, rgba(14, 20, 26, 0.72) 100%);
}

.dp-overlay--certs {
  background: linear-gradient(270deg, rgba(8, 10, 13, 0.92) 30%, rgba(14, 20, 26, 0.6) 100%);
}

.dp-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
@media (max-width: 600px) {
  .dp-content {
    padding: 100px 22px 60px;
  }
}

.dp-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-ubc);
  margin-bottom: 14px;
}
.dp-eyebrow::before {
  content: "─── ";
  opacity: 0.45;
}

.dp-hero {
  background-image: url("/photos/Statie.jpg");
  text-align: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}
.dp-hero h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin: 16px 0 22px;
}
.dp-hero h1 span {
  color: var(--verde-ubc);
}

.dp-hero__content {
  text-align: center;
  padding-top: 100px;
}

.dp-hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.85;
}

.dp-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.dp-scroll-hint:hover {
  opacity: 0.7;
}
.dp-scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.dp-scroll-arrow {
  width: 2px;
  height: 48px;
  background: linear-gradient(180deg, var(--verde-ubc), transparent);
  animation: dpScrollBounce 1.6s ease-in-out infinite;
}

@keyframes dpScrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}
.dp-story {
  background-image: url("/photos/Statie2.jpg");
}

.dp-story__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .dp-story__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.dp-story__right {
  margin-top: 40px;
}
@media (max-width: 900px) {
  .dp-story__right {
    margin-top: 0;
  }
}

.dp-year-badge {
  font-size: 7rem;
  font-weight: 900;
  color: var(--verde-ubc);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.88;
  text-shadow: 0 0 50px rgba(46, 204, 113, 0.25);
}
@media (max-width: 600px) {
  .dp-year-badge {
    font-size: 5rem;
  }
}

.dp-story__left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}
.dp-story__left p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.dp-story__left p strong {
  color: var(--verde-ubc);
  font-weight: 700;
}

.dp-milestone-list {
  display: flex;
  flex-direction: column;
  border-left: 2px solid rgba(46, 204, 113, 0.2);
  padding-left: 24px;
  gap: 0;
}

.dp-milestone {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
}
.dp-milestone:last-child {
  border-bottom: none;
}
.dp-milestone::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--verde-ubc);
  box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.dp-milestone__year {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--verde-ubc);
  line-height: 1;
}

.dp-milestone__text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dp-stats {
  background: #0a0c0e;
  min-height: 70vh;
  flex-direction: column;
  justify-content: center;
}
.dp-stats h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}

.dp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 900px) {
  .dp-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .dp-stats__grid {
    grid-template-columns: 1fr;
  }
}

.dp-stat {
  padding: 54px 28px;
  text-align: center;
  background: rgba(20, 23, 27, 0.95);
  transition: background 0.3s;
}
.dp-stat:hover {
  background: rgba(26, 32, 38, 0.95);
}
.dp-stat__num {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #FFFFFF !important;
  text-shadow: 0 0 25px rgba(39, 208, 69, 0.4);
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}
.dp-stat__suffix {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--verde-ubc) !important;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(39, 208, 69, 0.6);
}
.dp-stat__label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.dp-pillars {
  background-image: url("/photos/Statie3.jpg");
}

.dp-section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.2;
}

.dp-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .dp-pillars__grid {
    grid-template-columns: 1fr;
  }
}

.dp-pillar-card {
  background: rgba(16, 20, 25, 0.88);
  border: 1px solid rgba(46, 204, 113, 0.15);
  border-radius: 20px;
  padding: 38px 30px;
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.dp-pillar-card:hover {
  transform: translateY(-10px);
  border-color: rgba(46, 204, 113, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(46, 204, 113, 0.08);
}

.dp-pillar-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.dp-pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--text-alb);
}
.dp-pillar-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.dp-pillar-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(46, 204, 113, 0.12);
  padding-top: 18px;
}
.dp-pillar-detail span {
  font-size: 0.8rem;
  color: var(--verde-ubc);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dp-certs {
  background-image: url("/photos/Statie4.jpg");
}

.dp-certs__content {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .dp-certs__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.dp-certs__left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
}
.dp-certs__left p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  line-height: 1.8;
}

.dp-certs__right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.dp-cert-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: rgba(16, 20, 25, 0.88);
  border: 1px solid rgba(46, 204, 113, 0.14);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: border-color 0.35s, box-shadow 0.35s;
}
.dp-cert-card:hover {
  border-color: rgba(46, 204, 113, 0.38);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.dp-cert-badge {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--verde-ubc);
  background: rgba(46, 204, 113, 0.08);
  border: 2px solid rgba(46, 204, 113, 0.28);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  flex-shrink: 0;
  min-width: 58px;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.dp-cert-badge small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.75;
}

.dp-cert-info {
  flex: 1;
}
.dp-cert-info h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-alb);
}
.dp-cert-info p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
  line-height: 1.72;
  margin-bottom: 14px;
}
.dp-cert-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dp-cert-info ul li {
  font-size: 0.8rem;
  color: var(--verde-ubc);
  font-weight: 700;
}
.dp-cert-info ul li::before {
  content: "✓  ";
}

.dp-vision {
  background-image: url("/photos/Statie5.jpg");
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

.dp-vision__content {
  text-align: center;
}
.dp-vision__content h2 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 24px;
}
.dp-vision__content h2 span {
  color: var(--verde-ubc);
}
.dp-vision__content > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto 52px;
}

.dp-vision__values {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.dp-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.dp-value__icon {
  font-size: 1.8rem;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.22);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.dp-value__icon:hover {
  background: rgba(46, 204, 113, 0.16);
  transform: translateY(-4px);
}
.dp-value span:last-child {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

.dp-vision__cta {
  display: inline-flex;
  margin: 0 auto;
  padding: 16px 36px;
  font-size: 1rem;
}

.dp-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.dp-reveal.dp-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.dp-reveal--delay-1 {
  transition-delay: 0.1s;
}

.dp-reveal--delay-2 {
  transition-delay: 0.22s;
}

.dp-reveal--delay-3 {
  transition-delay: 0.34s;
}

.dp-reveal--delay-4 {
  transition-delay: 0.46s;
}

.dp-section--active .dp-overlay {
  transition: background 0.8s ease;
}

[data-theme=light] .dp-overlay, body.light-theme .dp-overlay {
  background: rgba(248, 250, 252, 0.88);
}
[data-theme=light] .dp-overlay--story,
[data-theme=light] .dp-overlay--certs, body.light-theme .dp-overlay--story,
body.light-theme .dp-overlay--certs {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.92) 0%, rgba(241, 245, 249, 0.82) 100%);
}
[data-theme=light] .dp-hero h1,
[data-theme=light] .dp-story__left h2,
[data-theme=light] .dp-certs__left h2,
[data-theme=light] .dp-vision h2,
[data-theme=light] .dp-stat__val,
[data-theme=light] .dp-pillar-card h3,
[data-theme=light] .dp-cert-card h3, body.light-theme .dp-hero h1,
body.light-theme .dp-story__left h2,
body.light-theme .dp-certs__left h2,
body.light-theme .dp-vision h2,
body.light-theme .dp-stat__val,
body.light-theme .dp-pillar-card h3,
body.light-theme .dp-cert-card h3 {
  color: #0F172A !important;
}
[data-theme=light] .dp-hero__sub,
[data-theme=light] .dp-story__left p,
[data-theme=light] .dp-certs__left p,
[data-theme=light] .dp-vision p,
[data-theme=light] .dp-pillar-card p,
[data-theme=light] .dp-cert-card p, body.light-theme .dp-hero__sub,
body.light-theme .dp-story__left p,
body.light-theme .dp-certs__left p,
body.light-theme .dp-vision p,
body.light-theme .dp-pillar-card p,
body.light-theme .dp-cert-card p {
  color: #334155 !important;
}
[data-theme=light] .dp-cert-card,
[data-theme=light] .dp-stat-card,
[data-theme=light] .dp-pillar-card,
[data-theme=light] .dp-manifest-box,
[data-theme=light] .dp-lab-card, body.light-theme .dp-cert-card,
body.light-theme .dp-stat-card,
body.light-theme .dp-pillar-card,
body.light-theme .dp-manifest-box,
body.light-theme .dp-lab-card {
  background: #FFFFFF !important;
  border: 2px solid #0F172A !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .dp-milestone, body.light-theme .dp-milestone {
  border-bottom-color: #E2E8F0;
}
[data-theme=light] .dp-milestone__title, body.light-theme .dp-milestone__title {
  color: #0F172A !important;
}
[data-theme=light] .dp-milestone__desc, body.light-theme .dp-milestone__desc {
  color: #475569 !important;
}

.ut-header {
  padding: 100px 40px 40px;
  text-align: center;
  background: var(--bg-secundar);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
@media (max-width: 600px) {
  .ut-header {
    padding: 80px 22px 30px;
  }
}

.ut-header__inner {
  max-width: 720px;
  margin: 0 auto;
}

.ut-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-ubc);
  margin-bottom: 14px;
}
.ut-eyebrow::before {
  content: "─── ";
  opacity: 0.4;
}

.ut-header h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-alb);
}
.ut-header h1 span {
  color: var(--verde-ubc);
}
.ut-header p {
  color: var(--text-gri);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.ut-hero-showcase {
  max-width: 1200px;
  margin: 40px auto 50px;
  padding: 0 30px;
}
@media (max-width: 600px) {
  .ut-hero-showcase {
    padding: 0 16px;
    margin: 30px auto 40px;
  }
}

.ut-showcase-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(12px);
}
@media (max-width: 960px) {
  .ut-showcase-card {
    grid-template-columns: 1fr;
  }
}

.ut-showcase-card__image-wrap {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.ut-showcase-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.ut-showcase-card:hover .ut-showcase-card__img {
  transform: scale(1.04);
}

.ut-showcase-card__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--verde-ubc);
  padding: 12px 20px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.ut-showcase-card__badge span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--verde-ubc);
}
.ut-showcase-card__badge strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-alb);
  line-height: 1.1;
}

.ut-showcase-card__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 600px) {
  .ut-showcase-card__content {
    padding: 30px 22px;
  }
}
.ut-showcase-card__content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 14px 0 18px;
  color: var(--text-alb);
}
.ut-showcase-card__content h2 span {
  color: var(--verde-ubc);
}
.ut-showcase-card__content p {
  color: var(--text-gri);
  font-size: 1rem;
  line-height: 1.8;
}

.ut-cat-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid;
  width: fit-content;
}

.ut-cat--productie {
  background: rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.4);
  color: var(--verde-ubc);
}

.ut-simple-list-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 80px;
}
@media (max-width: 600px) {
  .ut-simple-list-section {
    padding: 0 18px 60px;
  }
}

.ut-list-title {
  text-align: center;
  margin-bottom: 40px;
}
.ut-list-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-alb);
}
.ut-list-title h2 span {
  color: var(--verde-ubc);
}
.ut-list-title p {
  color: var(--text-gri);
  font-size: 0.98rem;
}

.ut-simple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 840px) {
  .ut-simple-grid {
    grid-template-columns: 1fr;
  }
}

.ut-simple-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 30px;
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
}

.ut-simple-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.ut-simple-card__head h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-alb);
}
.ut-simple-card__head small {
  color: var(--text-gri);
  font-size: 0.8rem;
  display: block;
}

.ut-simple-icon {
  font-size: 1.6rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ut-simple-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ut-simple-ul li {
  color: var(--text-alb);
  font-size: 0.98rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ut-simple-ul li span {
  color: var(--verde-ubc);
  font-weight: 900;
}

[data-theme=light] .ut-header, body.light-theme .ut-header {
  background: #FFFFFF;
  border-bottom: 2px solid #0F172A;
}
[data-theme=light] .ut-header h1, body.light-theme .ut-header h1 {
  color: #0F172A !important;
}
[data-theme=light] .ut-header p, body.light-theme .ut-header p {
  color: #334155 !important;
}
[data-theme=light] .ut-showcase-card,
[data-theme=light] .ut-simple-card, body.light-theme .ut-showcase-card,
body.light-theme .ut-simple-card {
  background: #FFFFFF !important;
  border: 2px solid #0F172A !important;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .ut-showcase-card h2, [data-theme=light] .ut-showcase-card h3,
[data-theme=light] .ut-simple-card h2,
[data-theme=light] .ut-simple-card h3, body.light-theme .ut-showcase-card h2, body.light-theme .ut-showcase-card h3,
body.light-theme .ut-simple-card h2,
body.light-theme .ut-simple-card h3 {
  color: #0F172A !important;
}
[data-theme=light] .ut-showcase-card p, [data-theme=light] .ut-showcase-card small, [data-theme=light] .ut-showcase-card li,
[data-theme=light] .ut-simple-card p,
[data-theme=light] .ut-simple-card small,
[data-theme=light] .ut-simple-card li, body.light-theme .ut-showcase-card p, body.light-theme .ut-showcase-card small, body.light-theme .ut-showcase-card li,
body.light-theme .ut-simple-card p,
body.light-theme .ut-simple-card small,
body.light-theme .ut-simple-card li {
  color: #334155 !important;
}
[data-theme=light] .ut-showcase-card__badge, body.light-theme .ut-showcase-card__badge {
  background: #0F172A !important;
  border: 2px solid #0F172A !important;
}
[data-theme=light] .ut-showcase-card__badge strong, body.light-theme .ut-showcase-card__badge strong {
  color: #FFFFFF !important;
}
[data-theme=light] .ut-showcase-card__badge span, body.light-theme .ut-showcase-card__badge span {
  color: #22C55E !important;
}
[data-theme=light] .ut-simple-card__head, body.light-theme .ut-simple-card__head {
  border-bottom: 1px solid #E2E8F0;
}

.pf-header {
  padding: 100px 40px 60px;
  text-align: center;
  background: var(--bg-secundar);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
@media (max-width: 600px) {
  .pf-header {
    padding: 80px 22px 44px;
  }
}

.pf-header__inner {
  max-width: 680px;
  margin: 0 auto;
}

.pf-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-ubc);
  margin-bottom: 14px;
}
.pf-eyebrow::before {
  content: "─── ";
  opacity: 0.4;
}

.pf-header h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-alb);
}
.pf-header h1 span {
  color: var(--verde-ubc);
}
.pf-header p {
  color: var(--text-gri);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.pf-servicii-section {
  max-width: 1400px;
  margin: 40px auto 40px;
  padding: 0 30px;
}
@media (max-width: 600px) {
  .pf-servicii-section {
    padding: 0 16px;
    margin: 30px auto 30px;
  }
}

.pf-servicii-card {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 20px;
  padding: 38px 32px;
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
}

.pf-servicii-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.pf-servicii-head .pf-servicii-icon {
  font-size: 1.8rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pf-servicii-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text-alb);
}
.pf-servicii-head h2 span {
  color: var(--verde-ubc);
}
.pf-servicii-head p {
  color: var(--text-gri);
  font-size: 0.95rem;
}

.pf-servicii-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  list-style: none;
}
@media (max-width: 900px) {
  .pf-servicii-grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .pf-servicii-grid-list {
    grid-template-columns: 1fr;
  }
}
.pf-servicii-grid-list li {
  color: var(--text-alb);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pf-servicii-grid-list li span {
  color: var(--verde-ubc);
  font-weight: 900;
}

.pf-gallery-title {
  text-align: center;
  margin-bottom: 30px;
}
.pf-gallery-title h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--text-alb);
}
.pf-gallery-title h2 span {
  color: var(--verde-ubc);
}
.pf-gallery-title p {
  color: var(--text-gri);
  font-size: 0.95rem;
}

.pf-gallery {
  padding: 40px 30px 60px;
  background: var(--bg-primar);
  transition: background-color 0.4s ease;
}
@media (max-width: 600px) {
  .pf-gallery {
    padding: 30px 16px 40px;
  }
}
.pf-gallery--sec {
  border-top: 1px solid var(--border-subtle);
  padding-top: 60px;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 550px) {
  .pf-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.pf-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}
.pf-item:hover .pf-item__overlay {
  opacity: 1;
}
.pf-item:hover .pf-item__img {
  transform: scale(1.06);
}

.pf-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pf-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}
.pf-item__overlay svg {
  width: 32px;
  height: 32px;
  color: var(--verde-ubc);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pf-lightbox[hidden] {
  display: none !important;
}

.pf-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.92);
  backdrop-filter: blur(8px);
}

.pf-lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.pf-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pf-lightbox__close:hover {
  background: rgba(231, 76, 60, 0.8);
  border-color: #e74c3c;
  transform: scale(1.1);
}

.pf-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pf-lightbox__nav:hover {
  background: var(--verde-ubc);
  border-color: var(--verde-ubc);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}
.pf-lightbox__nav--prev {
  left: 24px;
}
.pf-lightbox__nav--next {
  right: 24px;
}

[data-theme=light] .pf-header, body.light-theme .pf-header {
  background: #FFFFFF;
  border-bottom: 2px solid #0F172A;
}
[data-theme=light] .pf-header h1, body.light-theme .pf-header h1 {
  color: #0F172A !important;
}
[data-theme=light] .pf-header p, body.light-theme .pf-header p {
  color: #334155 !important;
}
[data-theme=light] .pf-servicii-card,
[data-theme=light] .pf-item, body.light-theme .pf-servicii-card,
body.light-theme .pf-item {
  background: #FFFFFF !important;
  border: 2px solid #0F172A !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .pf-servicii-head, body.light-theme .pf-servicii-head {
  border-bottom: 1px solid #E2E8F0;
}
[data-theme=light] .pf-servicii-head h2, body.light-theme .pf-servicii-head h2 {
  color: #0F172A !important;
}
[data-theme=light] .pf-servicii-head p, body.light-theme .pf-servicii-head p {
  color: #334155 !important;
}
[data-theme=light] .pf-servicii-grid-list li, body.light-theme .pf-servicii-grid-list li {
  color: #1E293B !important;
}
[data-theme=light] .pf-gallery-title h2, body.light-theme .pf-gallery-title h2 {
  color: #0F172A !important;
}
[data-theme=light] .pf-gallery-title p, body.light-theme .pf-gallery-title p {
  color: #334155 !important;
}

.servicii-section {
  padding: 80px 30px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .servicii-section {
    padding: 60px 18px;
  }
}

.servicii-header {
  text-align: center;
  margin-bottom: 50px;
}
.servicii-header .servicii-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-ubc);
  margin-bottom: 12px;
  display: inline-block;
}
.servicii-header .servicii-eyebrow::before {
  content: "─── ";
  opacity: 0.4;
}
.servicii-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--text-alb);
}
.servicii-header h2 span {
  color: var(--verde-ubc);
}
.servicii-header p {
  color: var(--text-gri);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.servicii-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 960px) {
  .servicii-grid {
    grid-template-columns: 1fr;
  }
}

.servicii-card {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 20px;
  padding: 38px 32px;
  backdrop-filter: blur(12px);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.4s ease;
}
.servicii-card:hover {
  transform: translateY(-4px);
  border-color: var(--verde-ubc);
}
.servicii-card .servicii-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.servicii-card .servicii-card__head .servicii-icon {
  font-size: 1.8rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.servicii-card .servicii-card__head h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-alb);
  letter-spacing: 0.02em;
}

.servicii-list--2cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
}
@media (max-width: 600px) {
  .servicii-list--2cols {
    grid-template-columns: 1fr;
  }
}
.servicii-list--2cols li {
  position: relative;
  padding-left: 24px;
  color: var(--text-alb);
  font-size: 0.93rem;
  line-height: 1.55;
  font-weight: 500;
}
.servicii-list--2cols li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--verde-ubc);
  font-weight: 900;
  font-size: 0.9rem;
}

[data-theme=light] .servicii-card, body.light-theme .servicii-card {
  background: #FFFFFF;
  border: 2px solid #0F172A;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .servicii-card .servicii-card__head, body.light-theme .servicii-card .servicii-card__head {
  border-bottom: 1px solid #E2E8F0;
}
[data-theme=light] .servicii-card .servicii-card__head h3, body.light-theme .servicii-card .servicii-card__head h3 {
  color: #0F172A !important;
}
[data-theme=light] .servicii-list--2cols li, body.light-theme .servicii-list--2cols li {
  color: #1E293B !important;
}

.gl-header {
  padding: 100px 40px 40px;
  text-align: center;
  background: var(--bg-secundar);
  border-bottom: 1px solid var(--border-subtle);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
@media (max-width: 600px) {
  .gl-header {
    padding: 80px 22px 30px;
  }
}

.gl-header__inner {
  max-width: 720px;
  margin: 0 auto;
}

.gl-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-ubc);
  margin-bottom: 14px;
}
.gl-eyebrow::before {
  content: "─── ";
  opacity: 0.4;
}

.gl-header h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-alb);
}
.gl-header h1 span {
  color: var(--verde-ubc);
}
.gl-header p {
  color: var(--text-gri);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.gl-section-title {
  text-align: center;
  margin-bottom: 35px;
}
.gl-section-title h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-alb);
}
.gl-section-title h2 span {
  color: var(--verde-ubc);
}
.gl-section-title p {
  color: var(--text-gri);
  font-size: 1rem;
}

.gl-gallery-section {
  max-width: 1400px;
  margin: 40px auto 70px;
  padding: 0 30px;
}
@media (max-width: 600px) {
  .gl-gallery-section {
    padding: 0 16px;
    margin: 30px auto 50px;
  }
}

.gl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .gl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 500px) {
  .gl-grid {
    grid-template-columns: 1fr;
  }
}

.gl-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}
.gl-item:hover .gl-item__overlay {
  opacity: 1;
}
.gl-item:hover .gl-item__img {
  transform: scale(1.06);
}

.gl-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gl-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}
.gl-item__overlay svg {
  width: 32px;
  height: 32px;
  color: var(--verde-ubc);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.gl-parteneri-section {
  max-width: 1400px;
  margin: 0 auto 90px;
  padding: 0 30px;
}
@media (max-width: 600px) {
  .gl-parteneri-section {
    padding: 0 16px 60px;
  }
}

.gl-partners-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 30px 24px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(16px);
}

.gl-partners-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 10px;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  scrollbar-width: none;
}
.gl-partners-track::-webkit-scrollbar {
  display: none;
}

.gl-partner-card {
  flex: 0 0 320px;
  height: 180px;
  background: #ffffff;
  border: 2px solid rgba(46, 204, 113, 0.35);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.gl-partner-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--verde-ubc);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 35px rgba(46, 204, 113, 0.3);
}
@media (max-width: 768px) {
  .gl-partner-card {
    flex: 0 0 250px;
    height: 140px;
    padding: 18px 24px;
  }
}
@media (max-width: 480px) {
  .gl-partner-card {
    flex: 0 0 210px;
    height: 120px;
    padding: 14px 18px;
  }
}

.gl-partner-logo {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}
.gl-partner-card:hover .gl-partner-logo {
  transform: scale(1.06);
}

.gl-logo-fallback {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

.gl-partners-arrow {
  background: var(--input-bg);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  color: var(--text-alb);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.gl-partners-arrow:hover {
  background: var(--verde-ubc);
  border-color: var(--verde-ubc);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(46, 204, 113, 0.5);
}
@media (max-width: 600px) {
  .gl-partners-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }
}

[data-theme=light] .gl-header, body.light-theme .gl-header {
  background: #FFFFFF;
  border-bottom: 2px solid #0F172A;
}
[data-theme=light] .gl-header h1, body.light-theme .gl-header h1 {
  color: #0F172A !important;
}
[data-theme=light] .gl-header p, body.light-theme .gl-header p {
  color: #334155 !important;
}
[data-theme=light] .gl-section-title h2, body.light-theme .gl-section-title h2 {
  color: #0F172A !important;
}
[data-theme=light] .gl-section-title p, body.light-theme .gl-section-title p {
  color: #334155 !important;
}
[data-theme=light] .gl-item, body.light-theme .gl-item {
  background: #FFFFFF !important;
  border: 2px solid #0F172A !important;
}
[data-theme=light] .gl-partners-container, body.light-theme .gl-partners-container {
  background: #FFFFFF !important;
  border: 2px solid #0F172A !important;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .gl-partner-card, body.light-theme .gl-partner-card {
  background: #FFFFFF !important;
  border: 2px solid #0F172A !important;
}
[data-theme=light] .gl-partners-arrow, body.light-theme .gl-partners-arrow {
  background: #F1F5F9;
  color: #0F172A;
  border: 2px solid #0F172A;
}
[data-theme=light] .gl-partners-arrow:hover, body.light-theme .gl-partners-arrow:hover {
  background: #15803D;
  color: #FFFFFF;
  border-color: #15803D;
}

.contact-section {
  padding: 90px 40px;
  background-color: var(--bg-primar);
  transition: background-color 0.4s ease;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.contact-info {
  flex: 1;
  background-color: var(--bg-secundar);
  padding: 45px;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  text-align: left;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}
.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 900;
  color: var(--text-alb);
}

.info-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  transition: border-color 0.3s;
}
.info-block h4 {
  color: var(--verde-ubc);
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
}
.info-block p {
  color: var(--text-alb);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}
.info-block a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-alb);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
  margin: -10px -16px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  position: relative;
}
.info-block a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--verde-ubc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.info-block a:hover {
  color: var(--verde-ubc);
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.25);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.15);
  transform: translateX(4px);
}
.info-block a:hover::after {
  transform: scaleX(1);
}
.info-block a:active {
  transform: translateX(2px) scale(0.98);
}

.contact-map {
  flex: 1.2;
  position: relative;
  min-height: 450px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

footer {
  background-color: var(--footer-bg);
  padding: 40px;
  text-align: center;
  color: var(--text-gri);
  font-size: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

#page-contact.active ~ .contact-section,
#page-contact.active ~ footer {
  display: none !important;
}

[data-theme=light] .contact-section, body.light-theme .contact-section {
  background-color: #F8FAFC;
}
[data-theme=light] .contact-info, body.light-theme .contact-info {
  background-color: #FFFFFF;
  border: 2px solid #0F172A !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .contact-info h2, body.light-theme .contact-info h2 {
  color: #0F172A !important;
}
[data-theme=light] .contact-info p, body.light-theme .contact-info p {
  color: #334155 !important;
}
[data-theme=light] .info-block, body.light-theme .info-block {
  border-top: 1px solid #E2E8F0;
}
[data-theme=light] .info-block h4, body.light-theme .info-block h4 {
  color: #15803D !important;
}
[data-theme=light] .info-block p, [data-theme=light] .info-block a, body.light-theme .info-block p, body.light-theme .info-block a {
  color: #0F172A !important;
}
[data-theme=light] .contact-map, body.light-theme .contact-map {
  border: 2px solid #0F172A !important;
}
[data-theme=light] footer, body.light-theme footer {
  background-color: #E2E8F0;
  color: #1E293B !important;
  border-top: 2px solid #0F172A;
}

.impact-stats {
  position: relative;
  background: linear-gradient(160deg, #0d0f11 0%, #141618 40%, #0b1a0e 100%);
  padding: 90px 40px;
  overflow: hidden;
  border-top: 1px solid rgba(245, 166, 35, 0.12);
  border-bottom: 1px solid rgba(245, 166, 35, 0.12);
}
.impact-stats__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 900;
  color: rgba(245, 166, 35, 0.04);
  letter-spacing: 0.15em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.impact-stats::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, #F5A623, transparent);
}
.impact-stats__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.impact-stats__divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(245, 166, 35, 0.3), transparent);
  margin: 0 60px;
  flex-shrink: 0;
}

.impact-stat {
  text-align: center;
  flex: 1;
  max-width: 320px;
}
.impact-stat__number {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin-bottom: 18px;
}
.impact-stat__number .impact-counter {
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 900;
  color: #F5A623;
  text-shadow: 0 0 40px rgba(245, 166, 35, 0.35), 0 0 80px rgba(245, 166, 35, 0.15);
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  transition: text-shadow 0.3s;
}
.impact-stat__number .impact-suffix {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #FFD080;
  letter-spacing: -1px;
}
.impact-stat__label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.5;
}
.impact-stat:hover .impact-counter {
  text-shadow: 0 0 30px #F5A623, 0 0 60px rgba(245, 166, 35, 0.35), 0 0 100px rgba(245, 166, 35, 0.2);
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.impact-stat.is-visible .impact-stat__number {
  animation: countUp 0.6s ease forwards;
}

.video-section {
  background-color: var(--bg-secundar);
  padding: 90px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.video-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.video-section__header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin: 12px 0 14px;
}
.video-section__header p {
  color: var(--text-gri);
  font-size: 1.05rem;
  line-height: 1.6;
}
.video-section__tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  color: #F5A623;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.video-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-secundar), var(--bg-secundar)) padding-box, linear-gradient(135deg, #F5A623 0%, var(--verde-ubc) 100%) border-box;
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.08), 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(245, 166, 35, 0.08);
  padding-top: 56.25%;
  transition: box-shadow 0.4s ease;
}
.video-wrapper:hover {
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.2), 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 100px rgba(245, 166, 35, 0.14);
}
.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}
.video-wrapper video {
  object-fit: contain;
  cursor: pointer;
}

@media (max-width: 768px) {
  .impact-stats {
    padding: 60px 20px;
  }
  .impact-stats__divider {
    height: 60px;
    margin: 0 24px;
  }
  .impact-stats__bg-text {
    font-size: 30vw;
  }
  .impact-stat__number .impact-counter {
    font-size: clamp(3.5rem, 14vw, 5.5rem);
  }
  .impact-stat__number .impact-suffix {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }
  .impact-stat__label {
    font-size: 0.82rem;
    letter-spacing: 1px;
  }
  .video-section {
    padding: 60px 16px;
  }
  .video-section__header {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .impact-stats__inner {
    flex-direction: column;
    gap: 40px;
  }
  .impact-stats__divider {
    width: 80px;
    height: 1px;
    margin: 0;
    background: linear-gradient(to right, transparent, rgba(245, 166, 35, 0.3), transparent);
  }
  .impact-stat {
    max-width: 100%;
  }
}
#page-contact {
  background-color: var(--bg-primar);
  color: var(--text-alb);
  min-height: 100vh;
}

.cp-header {
  background: linear-gradient(180deg, rgba(20, 22, 24, 0.95) 0%, rgba(32, 36, 40, 0.8) 100%), url("/photos/Statie.jpg") center/cover no-repeat;
  padding: 120px 20px 70px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(46, 204, 113, 0.15);
  position: relative;
}
.cp-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--verde-ubc), transparent);
}
.cp-header__inner {
  max-width: 850px;
  margin: 0 auto;
}
.cp-header .cp-eyebrow {
  display: inline-block;
  color: var(--verde-ubc);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(46, 204, 113, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(46, 204, 113, 0.25);
}
.cp-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--text-alb);
}
.cp-header h1 span {
  color: var(--verde-ubc);
  text-shadow: 0 0 25px rgba(46, 204, 113, 0.35);
}
.cp-header p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-gri);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.cp-cards-section {
  padding: 60px 20px 40px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.cp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.cp-card {
  background: var(--bg-secundar);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.cp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--verde-ubc);
  opacity: 0.7;
}
.cp-card:hover {
  transform: translateY(-4px);
  border-color: var(--verde-ubc);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.cp-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.cp-card__header h2 {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0;
  color: var(--text-alb);
}

.cp-card__icon {
  font-size: 1.8rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 14px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-card__tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--verde-ubc);
  display: block;
  margin-bottom: 2px;
}

.cp-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cp-card__main-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-alb);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: color 0.2s ease;
}
.cp-card__main-val:hover {
  color: var(--verde-ubc);
}

.cp-card__main-val--email {
  font-size: 1.25rem;
  word-break: break-all;
}

.cp-card__main-val--text {
  font-size: 1.35rem;
}

.cp-card__desc {
  font-size: 0.92rem;
  color: var(--text-gri);
  line-height: 1.55;
  margin-bottom: 18px;
}

.cp-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-gri);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.cp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde-ubc);
  box-shadow: 0 0 10px var(--verde-ubc);
}
.cp-status-dot--gold {
  background: #f1c40f;
  box-shadow: 0 0 10px #f1c40f;
}

.cp-card__actions {
  margin-top: 22px;
}

.cp-card__btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.95rem;
}

.cp-btn-secondary {
  background: var(--input-bg);
  border: 1px solid var(--border-subtle);
  color: var(--text-alb);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.cp-btn-secondary:hover {
  border-color: var(--verde-ubc);
  color: var(--verde-ubc);
  background: rgba(46, 204, 113, 0.1);
}

.cp-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--border-subtle);
  padding-bottom: 8px;
}
.cp-hours-list li span {
  color: var(--text-gri);
}
.cp-hours-list li strong {
  color: var(--text-alb);
}

.cp-map-section {
  padding: 20px 20px 60px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.cp-map-box {
  background: var(--bg-secundar);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--card-shadow);
}
.cp-map-box .cp-tag-mini {
  color: var(--verde-ubc);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 6px;
}

.cp-map-header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.cp-map-header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
  color: var(--text-alb);
}
.cp-map-header h2 span {
  color: var(--verde-ubc);
}
.cp-map-header p {
  color: var(--text-gri);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.cp-map-frame {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
}
.cp-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cp-map-footer {
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: 12px;
  color: var(--text-alb);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.cp-trust-section {
  padding: 0 20px 80px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.cp-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.cp-trust-item {
  background: var(--bg-secundar);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cp-trust-item .cp-trust-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.cp-trust-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--verde-ubc);
}
.cp-trust-item p {
  font-size: 0.9rem;
  color: var(--text-gri);
  margin: 0;
  line-height: 1.5;
}

[data-theme=light] #page-contact, body.light-theme #page-contact {
  background-color: #F8FAFC;
  color: #0F172A;
}
[data-theme=light] .cp-header, body.light-theme .cp-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.88) 100%), url("/photos/Statie.jpg") center/cover no-repeat;
  border-bottom: 2px solid #0F172A;
}
[data-theme=light] .cp-header h1, body.light-theme .cp-header h1 {
  color: #0F172A !important;
}
[data-theme=light] .cp-header p, body.light-theme .cp-header p {
  color: #334155 !important;
}
[data-theme=light] .cp-card,
[data-theme=light] .cp-map-box,
[data-theme=light] .cp-trust-item, body.light-theme .cp-card,
body.light-theme .cp-map-box,
body.light-theme .cp-trust-item {
  background: #FFFFFF !important;
  border: 2px solid #0F172A !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
[data-theme=light] .cp-card h2, [data-theme=light] .cp-card h4,
[data-theme=light] .cp-map-box h2,
[data-theme=light] .cp-map-box h4,
[data-theme=light] .cp-trust-item h2,
[data-theme=light] .cp-trust-item h4, body.light-theme .cp-card h2, body.light-theme .cp-card h4,
body.light-theme .cp-map-box h2,
body.light-theme .cp-map-box h4,
body.light-theme .cp-trust-item h2,
body.light-theme .cp-trust-item h4 {
  color: #0F172A !important;
}
[data-theme=light] .cp-card p, [data-theme=light] .cp-card .cp-card__main-val, [data-theme=light] .cp-card .cp-hours-list li span, [data-theme=light] .cp-card .cp-hours-list li strong,
[data-theme=light] .cp-map-box p,
[data-theme=light] .cp-map-box .cp-card__main-val,
[data-theme=light] .cp-map-box .cp-hours-list li span,
[data-theme=light] .cp-map-box .cp-hours-list li strong,
[data-theme=light] .cp-trust-item p,
[data-theme=light] .cp-trust-item .cp-card__main-val,
[data-theme=light] .cp-trust-item .cp-hours-list li span,
[data-theme=light] .cp-trust-item .cp-hours-list li strong, body.light-theme .cp-card p, body.light-theme .cp-card .cp-card__main-val, body.light-theme .cp-card .cp-hours-list li span, body.light-theme .cp-card .cp-hours-list li strong,
body.light-theme .cp-map-box p,
body.light-theme .cp-map-box .cp-card__main-val,
body.light-theme .cp-map-box .cp-hours-list li span,
body.light-theme .cp-map-box .cp-hours-list li strong,
body.light-theme .cp-trust-item p,
body.light-theme .cp-trust-item .cp-card__main-val,
body.light-theme .cp-trust-item .cp-hours-list li span,
body.light-theme .cp-trust-item .cp-hours-list li strong {
  color: #0F172A !important;
}
[data-theme=light] .cp-card .cp-card__desc,
[data-theme=light] .cp-map-box .cp-card__desc,
[data-theme=light] .cp-trust-item .cp-card__desc, body.light-theme .cp-card .cp-card__desc,
body.light-theme .cp-map-box .cp-card__desc,
body.light-theme .cp-trust-item .cp-card__desc {
  color: #334155 !important;
}
[data-theme=light] .cp-card__status,
[data-theme=light] .cp-hours-list li, body.light-theme .cp-card__status,
body.light-theme .cp-hours-list li {
  border-top-color: #E2E8F0;
  border-bottom-color: #E2E8F0;
}
[data-theme=light] .cp-map-header h2, body.light-theme .cp-map-header h2 {
  color: #0F172A !important;
}
[data-theme=light] .cp-map-header p, body.light-theme .cp-map-header p {
  color: #334155 !important;
}
[data-theme=light] .cp-map-footer, body.light-theme .cp-map-footer {
  background: rgba(21, 128, 61, 0.1);
  border: 1px solid #15803D;
  color: #0F172A !important;
}

#page-angajari {
  background-color: #0e1114;
  color: #ffffff;
  min-height: 100vh;
}

.angajari-section {
  padding: 60px 20px 90px 20px;
  max-width: 1150px;
  margin: 0 auto;
}

.angajari-container {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.angajari-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.angajari-intro .zone-eyebrow {
  display: inline-block;
  color: #2ECC71;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(46, 204, 113, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(46, 204, 113, 0.25);
}
.angajari-intro h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 900;
  margin: 14px 0 12px;
  color: #ffffff;
}
.angajari-intro h2 span {
  color: #2ECC71;
  text-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}
.angajari-intro p {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
}

.job-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.job-card {
  background: linear-gradient(145deg, rgba(28, 33, 39, 0.85) 0%, rgba(18, 22, 26, 0.95) 100%);
  border: 1px solid rgba(46, 204, 113, 0.22);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.job-card:hover {
  transform: translateY(-5px);
  border-color: #2ECC71;
  box-shadow: 0 14px 40px rgba(46, 204, 113, 0.2);
}
.job-card:hover .job-card__icon {
  background: rgba(46, 204, 113, 0.2);
  border-color: #2ECC71;
  transform: scale(1.05);
}
.job-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(46, 204, 113, 0.12);
  color: #2ECC71;
  border: 1px solid rgba(46, 204, 113, 0.3);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.job-card__icon {
  font-size: 2.2rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.job-card__content {
  margin-bottom: 24px;
}
.job-card__num {
  font-size: 0.8rem;
  font-weight: 900;
  color: #2ECC71;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.job-card h3 {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.job-card__sub {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.45;
}
.job-card__footer {
  margin-top: auto;
}
.job-card__btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 0.92rem;
}

.apply-box-card {
  background: linear-gradient(145deg, rgba(22, 27, 33, 0.95) 0%, rgba(14, 17, 20, 0.98) 100%);
  border: 1px solid rgba(46, 204, 113, 0.28);
  border-radius: 24px;
  padding: 42px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.apply-box__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px auto;
}
.apply-box__header h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}
.apply-box__header p {
  color: #94a3b8;
  font-size: 1.05rem;
}

.apply-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.apply-method-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.apply-method-card:hover {
  border-color: rgba(46, 204, 113, 0.4);
  background: rgba(46, 204, 113, 0.04);
  transform: translateY(-3px);
}
.apply-method-card__icon {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.apply-method-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}
.apply-method-card p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 16px;
}
.apply-method-card .apply-email-link,
.apply-method-card .apply-phone-link {
  font-size: 1.4rem;
  font-weight: 900;
  color: #2ECC71;
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
  word-break: break-all;
}
.apply-method-card .apply-email-link:hover,
.apply-method-card .apply-phone-link:hover {
  color: #3FEF8B;
  text-shadow: 0 0 12px rgba(63, 239, 139, 0.5);
}
.apply-method-card .apply-phone-alt {
  margin-top: 6px;
  font-size: 0.88rem;
  color: #94a3b8;
}
.apply-method-card .apply-btn-action {
  margin-top: 18px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  max-width: 260px;
}

@media (max-width: 768px) {
  .angajari-section {
    padding: 40px 16px;
  }
  .job-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .job-card {
    padding: 26px 20px;
  }
  .job-card__badge {
    top: 18px;
    right: 18px;
  }
  .apply-box-card {
    padding: 26px 18px;
  }
  .apply-methods-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .despre-grid {
    grid-template-columns: 1fr;
  }
  .contact-container {
    flex-direction: column;
  }
  .contact-map {
    min-height: 350px;
  }
  .grid-produse {
    gap: 18px;
  }
  .card {
    width: calc(50% - 10px);
    min-width: 260px;
  }
}
@media (max-width: 768px) {
  nav#main-nav,
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 85px 20px 28px 20px;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: block;
  }
  nav#main-nav.nav-open,
  nav.nav-open {
    transform: translateY(0);
  }
  nav#main-nav ul,
  nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none !important;
    list-style-type: none !important;
  }
  nav#main-nav li,
  nav li {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    list-style: none !important;
    list-style-type: none !important;
  }
  nav#main-nav a.btn-menu,
  nav#main-nav a.btn-suna,
  nav a.btn-menu,
  nav a.btn-suna {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 12px;
  }
  .hero {
    padding: 90px 15px 50px;
    background-attachment: scroll;
    min-height: 100svh;
  }
  .hero-box {
    padding: 28px 20px;
    border-left-width: 4px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons a {
    text-align: center;
    justify-content: center;
  }
  .trust-bar {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
  .calc-section,
  .produse,
  .section-generica {
    padding: 60px 15px;
  }
  .calc-box,
  .placeholder-box {
    padding: 24px 16px;
    margin: 0 5px;
  }
  .calc-inputs-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  #rezultat-volum {
    font-size: 2.4rem;
  }
  .card {
    width: 100%;
    min-width: unset;
    padding: 28px 20px;
  }
  .tab-btn {
    padding: 11px 16px;
    font-size: 0.85rem;
  }
  .despre-hero {
    padding: 24px 16px;
    margin: 16px 10px;
  }
  .despre-text h2 {
    font-size: 1.6rem;
  }
  .despre-piloni {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
}
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .logo-ubc {
    font-size: 19px;
  }
  .tab-btn {
    font-size: 0.78rem;
    padding: 10px 12px;
  }
}