:root {
  --navy: #0f2438;
  --navy-dark: #0a1a2a;
  --blue: #0f7ac5;
  --blue-light: #2a9cf5;
  --mist: #f4f7fb;
  --ink: #0a1522;
  --card: #ffffff;
  --text: #102136;
  --muted: #5c6a7a;
  --shadow-soft: 0 10px 40px rgba(10, 33, 54, 0.12);
  --shadow-card: 0 20px 60px rgba(10, 33, 54, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(15, 122, 197, 0.06), transparent 38%),
              radial-gradient(circle at 80% 10%, rgba(15, 122, 197, 0.08), transparent 35%),
              var(--mist);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6vw;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 36, 56, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo,
.footer__logo,
.card__logo {
  object-fit: contain;
}

.brand__logo {
  width: 108px;
  height: auto;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(10, 33, 54, 0.12);
}

.brand__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
  font-weight: 600;
}

.brand__name {
  margin: 2px 0 0;
  font-weight: 800;
  color: var(--navy-dark);
  font-size: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.nav a {
  padding: 10px 12px;
  position: relative;
  transition: color 0.2s ease;
  color: var(--navy-dark);
}

.nav a:not(.btn):after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav a:not(.btn):hover:after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  padding: 80px 6vw 80px;
  overflow: hidden;
  min-height: 600px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 36, 56, 0.98), rgba(15, 122, 197, 0.92)),
              radial-gradient(circle at 15% 20%, rgba(10, 26, 38, 0.5), transparent 40%),
              linear-gradient(120deg, rgba(10, 21, 34, 0.95), rgba(15, 36, 56, 0.9)),
              #0a1a2a;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 60% 100%, 0 85%);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero__text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  line-height: 1.15;
  margin: 10px 0 12px;
  text-shadow: 0 2px 12px rgba(10, 21, 34, 0.4);
  font-weight: 700;
}

.hero__text .lede {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  margin: 0 0 24px;
  text-shadow: 0 1px 8px rgba(10, 21, 34, 0.3);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  color: #e8f1f9;
  background: rgba(10, 21, 34, 0.6);
  padding: 16px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat__number {
  margin: 0;
  font-weight: 800;
  font-size: 20px;
  text-shadow: 0 1px 8px rgba(10, 21, 34, 0.3);
}

.stat__label {
  margin: 2px 0 0;
  color: rgba(232, 241, 249, 0.9);
  font-size: 14px;
  text-shadow: 0 1px 6px rgba(10, 21, 34, 0.25);
  font-weight: 500;
}

.hero__card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 36, 56, 0.08);
}

.hero__card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.card__logo {
  width: 160px;
  height: auto;
  flex-shrink: 0;
  border-radius: 14px;
}

.card__eyebrow {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.card__title {
  margin: 4px 0 0;
  font-weight: 700;
  color: var(--navy);
}

.card__list {
  padding-left: 18px;
  margin: 12px 0 16px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15, 122, 197, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(15, 122, 197, 0.3);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.btn--ghost:hover {
  color: #fff;
  border-color: #fff;
}

.btn--full {
  width: 100%;
}

.section {
  padding: 70px 6vw;
}

.section__header {
  max-width: 760px;
}

.section__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
  margin: 6px 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section__lede {
  color: var(--muted);
  margin: 0 0 22px;
  font-weight: 500;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  font-size: 12px;
  margin: 0;
}

.hero__text .eyebrow {
  color: rgba(42, 156, 245, 0.95);
  text-shadow: 0 1px 6px rgba(10, 21, 34, 0.3);
}

.grid {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: center;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 36, 56, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 33, 54, 0.2);
  border-color: rgba(15, 122, 197, 0.2);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15, 122, 197, 0.12);
  font-size: 22px;
  margin-bottom: 8px;
}

.card__icon svg,
.card__icon img {
  width: 40px;
  height: 40px;
  display: block;
}

.card h3 {
  margin: 4px 0 8px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--muted);
  margin: 0 0 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pill-list li {
  background: rgba(15, 122, 197, 0.08);
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
  justify-items: center;
}

.gallery__item {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 36, 56, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.gallery__item h3 {
  margin: 16px 18px 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
}

.gallery__item p {
  margin: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  background: #f0f3f6;
}

.comparison__side {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.comparison__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison__label {
  position: absolute;
  top: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comparison__label--before {
  left: 12px;
  background: rgba(92, 106, 122, 0.9);
  color: #fff;
}

.comparison__label--after {
  right: 12px;
  background: rgba(15, 122, 197, 0.95);
  color: #fff;
}

.gallery__note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(15, 122, 197, 0.08);
  border-radius: 12px;
  border-left: 4px solid var(--blue);
}

.gallery__note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.gallery__note strong {
  color: var(--navy);
}

.section--band {
  background: radial-gradient(circle at 10% 10%, rgba(15, 122, 197, 0.07), transparent 40%), #fff;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: var(--card);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 36, 56, 0.07);
  box-shadow: var(--shadow-soft);
}

.timeline__item h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.timeline__item p {
  font-weight: 500;
}

.timeline__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.quote {
  background: linear-gradient(145deg, rgba(15, 36, 56, 0.9), rgba(15, 122, 197, 0.7));
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.quote__text {
  margin: 0 0 10px;
  font-size: 16px;
}

.quote__author {
  margin: 0;
  opacity: 0.85;
  font-weight: 600;
}

.cta {
  padding: 70px 6vw;
  background: linear-gradient(120deg, rgba(15, 36, 56, 0.94), rgba(15, 122, 197, 0.7));
  color: #fff;
}

.cta__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
}

.form {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 36, 56, 0.18);
  font-family: inherit;
  font-size: 15px;
}

textarea {
  resize: vertical;
}

.form__note {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.footer {
  padding: 60px 6vw 24px;
  background: var(--ink);
  color: #f0f4f8;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(220, 230, 243, 0.15);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.footer__brand .brand__name {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
}

.footer__brand .brand__eyebrow {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.footer__logo {
  width: 72px;
  height: auto;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.footer__contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer__contact-section h4 {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer__phone {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer__phone:hover {
  color: var(--blue-light);
  transform: scale(1.05);
}

.social-facebook-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1877f2, #0e5dbf);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
  text-decoration: none;
}

.social-facebook-large:hover {
  background: linear-gradient(135deg, #0e5dbf, #0a4a9a);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
  color: #fff;
}

.social-facebook-large svg {
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.footer__legal {
  display: flex;
  gap: 16px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--blue-light);
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .brand__logo {
    width: 84px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 60px;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: 1;
    align-items: center;
  }

  .footer__logo {
    width: 60px;
  }
}
