:root {
  --ink: #081827;
  --navy: #0d2033;
  --navy2: #102b45;
  --blue: #6f96bd;
  --blue2: #9db8d7;
  --ice: #f2f7fc;
  --white: #fff;
  --muted: #6b7d8d;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(4, 18, 31, .22)
}
* {
  box-sizing: border-box
}
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: #f7fbff;
  color: var(--ink)
}
img {
  max-width: 100%;
  display: block
}
a {
  text-decoration: none;
  color: inherit
}
.container {
  width: min(1180px, 92%);
  margin: auto
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 18, 31, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line)
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px
}
.brand {
  background: linear-gradient(135deg, #162c42, #203b57);
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25)
}
.brand img {
  width: 250px
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  color: #dce8f5;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .86rem;
  letter-spacing: .04em
}
.nav-links a:hover {
  color: white
}
.nav-cta, .btn {
  background: linear-gradient(135deg, #7ea5cb, #4f78a4);
  color: white !important;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(77, 121, 164, .35)
}
.menu-toggle {
  display: none;
  background: #17304a;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 1.3rem
}
.hero {
  position: relative;
  isolation: isolate;
  color: white;
  background: radial-gradient(circle at 80% 20%, rgba(139, 179, 216, .4), transparent 28%), linear-gradient(135deg, #081827, #122f4c 60%, #07131f);
  overflow: hidden
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 17, 29, .92) 0%, rgba(6, 17, 29, .62) 45%, rgba(6, 17, 29, .15) 100%);
  z-index: -1
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/facebook-ad-style.png') center/cover no-repeat;
  opacity: .56
}
.hero-inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 42px;
  padding: 80px 0
}
.eyebrow {
  color: #8db9e4;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .82rem
}
.hero h1, .mini-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: .94;
  margin: 16px 0 22px;
  text-transform: uppercase;
  letter-spacing: -.05em
}
.hero h1 span {
  color: #a9c7e8
}
.lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #dce8f5;
  max-width: 650px
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 34px 0
}
.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3)
}
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 34px
}
.benefit-pill {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  padding: 16px;
  font-weight: 800
}
.hero-card {
  background: rgba(8, 24, 39, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow)
}
.hero-card img {
  border-radius: 22px
}
.section {
  padding: 92px 0
}
.section.dark {
  background: linear-gradient(135deg, #081827, #102b45);
  color: #fff
}
.section-head {
  margin-bottom: 36px
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 10px 0
}
.grid {
  display: grid;
  gap: 24px
}
.cards-3 {
  grid-template-columns: repeat(3, 1fr)
}
.cards-4 {
  grid-template-columns: repeat(4, 1fr)
}
.card, .service-card, .recommend-card, .price-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(13, 32, 51, .1);
  border: 1px solid rgba(13, 32, 51, .08)
}
.dark .service-card {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14)
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #87afd5, #4d78a6);
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 16px
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}
.image-frame {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid white
}
.mini-hero {
  background: linear-gradient(135deg, #081827, #133455);
  color: white;
  padding: 96px 0 70px;
  position: relative;
  overflow: hidden
}
.mini-hero:after {
  content: "";
  position: absolute;
  right: -10%;
  top: 0;
  width: 55%;
  height: 100%;
  background: url('../images/before-after-pro.png') center/cover no-repeat;
  opacity: .22
}
.mini-hero .container {
  position: relative;
  z-index: 1
}
.film-recommendations {
  padding: 60px 0;
  background: #eef6ff
}
.recommend-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 22px;
  border-left: 7px solid #6f96bd;
  overflow: hidden
}
.recommend-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 16px
}
.recommend-card h3 {
  margin: 0 0 8px;
  font-size: 1.55rem
}
.recommend-card strong {
  color: #3c78b8
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center
}
.showcase-image img {
  border-radius: 28px;
  box-shadow: var(--shadow)
}
.benefit-list {
  list-style: none;
  padding: 0
}
.benefit-list li {
  padding: 9px 0;
  font-weight: 700
}
.price-card.featured {
  background: linear-gradient(135deg, #0d2033, #173b60);
  color: white;
  transform: scale(1.03)
}
.price {
  font-size: 2.8rem;
  font-weight: 900;
  color: #6f96bd
}
.featured .price {
  color: #d8e9fb
}
.contact-box {
  background: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow)
}
input, textarea, select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d7e2ef;
  border-radius: 14px;
  margin-bottom: 14px;
  font: inherit
}
textarea {
  min-height: 140px
}
.site-footer {
  background: #07131f;
  color: #dce8f5;
  padding-top: 62px
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 34px
}
.footer-logo {
  width: 260px;
  background: #102b45;
  padding: 12px;
  border-radius: 16px
}
.site-footer a {
  display: block;
  color: #dce8f5;
  margin: 10px 0
}
.footer-cta {
  color: #9fc3e7 !important;
  font-weight: 900
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--line);
  padding: 22px;
  margin-top: 36px;
  color: #9aaec2
}
.draft-note {
  font-size: .85rem;
  color: #dc2626;
  font-weight: 700;
  max-width: 900px;
  margin: 10px auto 0;
  line-height: 1.5
}
.glass-bar {
  background: linear-gradient(135deg, #dcebf9, #fff);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(13, 32, 51, .1)
}
@media(max-width:900px) {
  .menu-toggle {
    display: block
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #081827;
    padding: 22px;
    flex-direction: column
  }
  .nav-links.open {
    display: flex
  }
  .hero-inner, .split, .showcase-grid {
    grid-template-columns: 1fr
  }
  .benefit-strip, .cards-3, .cards-4, .footer-grid {
    grid-template-columns: 1fr
  }
  .hero-inner {
    min-height: auto;
    padding: 58px 0
  }
  .brand img {
    width: 210px
  }
  .recommend-card {
    grid-template-columns: 1fr
  }
  .recommend-card img {
    height: 190px
  }
  .mini-hero:after {
    display: none
  }
}