@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

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

:root {
  --brand: #27b1ec;
  --brand-2: #4bc9ff;
  --dark: #07131a;
  --ink: #212529;
  --muted: rgba(255,255,255,0.78);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fafafa;
  color: #212529;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
  position: relative;
}

.logo {
  height: 45px;
}

.nav-links {
  display: flex;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #212529;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.nav-links a:hover { color: var(--brand); }

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #212529;
  z-index: 1100;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 2rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    z-index: 999;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: bold;
  }

  body.about-page .nav .logo {
    display: none !important;
  }

  body.about-page .nav-links {
    display: none !important;
  }

  body.about-page #menu-toggle:checked ~ .nav-links {
    display: flex !important;
  }

  body.about-page .hamburger {
    display: block !important;
  }
}

.hero-full {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-full .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) blur(2px);
}

.hero-text-centered {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 3rem 4rem;
  border-radius: 1rem;
  text-align: left;
  max-width: 500px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text-centered h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text-centered p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #388e3c;
}

.services {
  background: linear-gradient(180deg, #0f4f6a 0%, #0b3f56 100%);
  color: white;
  padding: 5.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 20% 10%, rgba(39,177,236,0.18) 0%, rgba(0,0,0,0) 60%),
              radial-gradient(900px 420px at 80% 90%, rgba(75,201,255,0.10) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services h2 {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  margin-bottom: 2.2rem;
  letter-spacing: -0.02em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  justify-items: stretch;
}

.card {
  grid-column: span 3;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 22px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.8s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.11);
  border-color: rgba(75,201,255,0.35);
}

.card i {
  margin-bottom: 12px;
  color: var(--brand);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .card { grid-column: span 6; }
}

@media (max-width: 640px) {
  .cards { gap: 14px; }
  .card { grid-column: span 12; }
}

footer {
  background: linear-gradient(180deg, #0a3b52 0%, #072d3e 100%);
  color: white;
  padding: 3.5rem 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 50% 0%, rgba(39,177,236,0.15) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}

footer.reveal {
  opacity: 1;
  transform: translateY(0);
}

footer h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

footer p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
}

footer i {
  margin-right: 0.5rem;
  color: var(--brand-2);
}

footer .copyright {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}

.about-hero-image {
  background-image: url('about-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.about-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

.highlight-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 2rem;
}

.highlight {
  flex: 1;
  background: #f0f0f0;
  padding: 2rem;
  border-radius: 12px;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.highlight:hover {
  transform: translateY(-5px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 600px;
  margin-top: 2rem;
}

.form-grid input,
.form-grid textarea {
  padding: 0.75rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-text-centered {
    padding: 2rem;
    left: 10%;
    transform: translateY(-50%);
    max-width: 90%;
  }

  .hero-text-centered h1 {
    font-size: 2rem;
  }

  .hero-text-centered p {
    font-size: 1rem;
  }

  .highlight-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .highlight {
    padding: 1.5rem;
    font-size: 1rem;
    word-break: break-word;
    width: 100%;
  }

  .about-overlay {
    padding: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-overlay h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .about-overlay p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-hero-image {
    padding-top: 100px;
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .highlight {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .about-overlay {
    padding: 1.2rem;
    font-size: 0.95rem;
  }
}

.hero-v2 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-v2 .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.hero-v2 .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.28) 45%,
    rgba(0,0,0,0.08) 100%
  );
}

.hero-v2 .hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* ===== Felső címke ===== */

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-tag-line {
  width: 4px;
  height: 16px;
  background: #27b1ec;
  border-radius: 99px;
}

.hero-tag-text {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ===== Főcím ===== */

.hero-title {
  margin: 16px 0 12px;
  letter-spacing: -0.02em;
}

.hero-title-white,
.hero-title-accent {
  display: block;
  font-weight: 900;
  font-size: clamp(30px, 4.1vw, 64px);
  line-height: 1.06;
  padding-bottom: 4px; /* ékezet spacing fix */
  text-transform: uppercase;
}

.hero-title-white {
  color: #ffffff;
}

.hero-title-accent {
  color: #27b1ec;
}

/* ===== Leírás ===== */

.hero-desc {
  max-width: 600px;
  color: rgba(255,255,255,0.80);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.65;
}

/* ===== Gombok ===== */

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero-v2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  min-width: 230px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-v2 .btn-primary {
  background: #27b1ec;
  border: 2px solid #27b1ec;
  color: #07131a;
}

.hero-v2 .btn-primary:hover {
  background: #4bc9ff;
  border-color: #4bc9ff;
}

.hero-v2 .btn-outline {
  background: rgba(0,0,0,0.18);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-v2 .btn-outline:hover {
  border-color: #4bc9ff;
  background: rgba(0,0,0,0.25);
}

/* ===== Mobil ===== */

@media (max-width: 768px) {

  .hero-v2 {
    height: 92vh;
  }

  .hero-v2 .hero-content {
    width: 92%;
  }

  .hero-tag-text {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-v2 .btn {
    width: 100%;
    min-width: 0;
  }
}

.about-hero-image {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background-image: url('about-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.30) 48%,
    rgba(0,0,0,0.10) 100%
  );
}

.about-overlay {
  position: relative;
  z-index: 1;
  width: min(1100px, 92%);
  margin: 0 auto;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 28px 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  text-align: left;
  max-width: none;
}

.about-overlay h1 {
  font-size: clamp(30px, 3.2vw, 48px);
  margin: 14px 0 12px;
  letter-spacing: -0.02em;
  color: #fff;
}

.about-overlay p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 12px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
}

.about-tag-line {
  width: 4px;
  height: 16px;
  background: #27b1ec;
  border-radius: 99px;
}

.about-tag-text {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.about-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.about-actions .btn {
  padding: 12px 18px;
  border-radius: 10px;
  min-width: 220px;
}

@media (max-width: 768px) {
  .about-hero-image {
    min-height: 70vh;
    padding: 110px 0 60px;
  }

  .about-overlay {
    padding: 18px 16px;
  }

  .about-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .about-tag-text {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

.offer-page {
  background: linear-gradient(180deg, #0f4f6a 0%, #0c455e 50%, #09364a 100%);
  color: #fff;
  min-height: 100vh;
  padding-bottom: 80px;
}

.offer-hero {
  position: relative;
  padding: 130px 0 44px;
  overflow: hidden;
}

.offer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.18) 50%,
    rgba(0,0,0,0.08) 100%
  );
  pointer-events: none;
}

.offer-hero-inner {
  position: relative;
  width: min(1100px, 92%);
  margin: 0 auto;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.offer-tag-line {
  width: 4px;
  height: 16px;
  background: #27b1ec;
  border-radius: 99px;
}

.offer-tag-text {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.offer-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -0.02em;
}

.offer-desc {
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-size: 1.05rem;
}

.offer-content {
  padding: 40px 0 70px;
}

.offer-card {
  width: min(1100px, 92%);
  margin: 28px auto 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 26px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.offer-card-title {
  font-size: 1.35rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.offer-card-sub {
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Form finomhangolás CSAK itt */
.offer-form label {
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  margin-top: 6px;
}

.offer-form input,
.offer-form textarea {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.offer-form input::placeholder,
.offer-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.offer-form input:focus,
.offer-form textarea:focus {
  border-color: rgba(75,201,255,0.65);
  box-shadow: 0 0 0 4px rgba(39,177,236,0.18);
  background: rgba(0,0,0,0.26);
}

/* Submit gomb: hero kék vibe, csak ezen az oldalon */
.offer-submit {
  background: #27b1ec;
  border: 2px solid #27b1ec;
  color: #07131a;
  padding: 0.9rem 1.4rem;
}

.offer-submit:hover {
  background: #4bc9ff;
  border-color: #4bc9ff;
}

.offer-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
}

.offer-hint-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #4bc9ff;
  box-shadow: 0 0 0 4px rgba(39,177,236,0.18);
}

@media (max-width: 768px) {
  .offer-hero {
    padding: 115px 0 36px;
  }

  .offer-card {
    padding: 18px 16px;
  }
}

.gallery-page {
  background: linear-gradient(180deg, #0f4f6a 0%, #0c455e 50%, #09364a 100%);
  color: #fff;
  min-height: 100vh;
  padding-bottom: 80px;
}

.gallery-container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.gallery-hero {
  position: relative;
  padding: 130px 0 44px;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 20% 10%, rgba(39,177,236,0.18) 0%, rgba(0,0,0,0) 60%),
              radial-gradient(900px 420px at 80% 30%, rgba(75,201,255,0.10) 0%, rgba(0,0,0,0) 60%),
              linear-gradient(90deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.16) 55%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

.gallery-tag-line {
  width: 4px;
  height: 16px;
  background: #27b1ec;
  border-radius: 99px;
}

.gallery-tag-text {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.gallery-title {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.gallery-desc {
  max-width: 780px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.gallery-content {
  padding: 28px 0 0;
}

.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.g-item {
  position: relative;
  display: block;
  grid-column: span 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transform: translateY(0);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  text-decoration: none;
}

.g-item:hover {
  transform: translateY(-4px);
  border-color: rgba(75,201,255,0.35);
  background: rgba(255,255,255,0.08);
}

.g-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
  transform: scale(1.01);
}

.g-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity .2s ease;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-badge {
  align-self: flex-start;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.g-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.g-video {
  grid-column: span 8;
}

.g-video video {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
}

.g-overlay-static {
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .g-item { grid-column: span 6; }
  .g-video { grid-column: span 12; }
}

@media (max-width: 640px) {
  .gallery-hero { padding: 115px 0 36px; }
  .gallery-grid-v2 { gap: 12px; }
  .g-item { grid-column: span 12; }
  .g-item img, .g-video video { height: 240px; }
  .gallery-tag-text { font-size: 11px; letter-spacing: 0.12em; }
}

/* Lightbox (CSS only) */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.lightbox:target {
  display: block;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.lb-inner {
  position: relative;
  width: min(1100px, 92%);
  margin: 70px auto 0;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
}

.lb-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.lb-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(39,177,236,0.95);
  color: #07131a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.16);
}

@media (max-width: 768px) {
  .lb-inner {
    margin: 90px auto 0;
  }

  .lb-close {
    top: -12px;
    right: -12px;
  }
}

footer {
  opacity: 1;
  transform: none;
}

.about-page {
  background: linear-gradient(180deg, #0f4f6a 0%, #0c455e 50%, #09364a 100%);
  color: #fff;
}

.hero-v2 .hero-content {
  width: min(1100px, 92%);
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .hero-v2 .hero-content {
    margin-left: 5%; 
    transform: none; 
  }
}