:root {
  --navy: #051225;
  --navy-2: #0a223b;
  --navy-3: #102d4b;
  --gold: #d4a94f;
  --gold-2: #f0cf82;
  --cream: #f7f3eb;
  --paper: #fffdfa;
  --ink: #142033;
  --muted: #667085;
  --line: rgba(212, 169, 79, 0.35);
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 27, 49, 0.14);
  --radius: 18px;
  --serif: "Poppins";
  --sans: "Poppins";
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

span.icon1 svg {
  width: 25%;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
}
.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #051225;
  border-bottom: 1px solid rgba(212, 169, 79, 0.5);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

article.feature-card svg {
  width: 10%;
  height: 30%;
}

.brand-mark {
  width: 52px;
  color: var(--gold);
  display: inline-grid;
  place-items: center;
  flex: none;
}
.brand-mark svg {
  width: 100%;
  stroke: currentColor;
  stroke-width: 2.2;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong {
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0.08em;
  font-size: 22px;
  font-weight: 700;
}
.brand-copy small {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #d6dbe1;
  margin-top: 7px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

article.package-card h6 {
  text-align: center;
  font-size: 40px;
  padding: 0;
  margin: 0;
  color: #d4a94f;
  text-shadow: 1px 3px #000000;
}

.main-nav > a,
.nav-drop-button {
  position: relative;
  padding: 29px 0 24px;
  background: none;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}
.main-nav > a:after,
.nav-drop-button:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}
.main-nav > a:hover:after,
.main-nav > a.active:after,
.nav-drop-button:hover:after,
.nav-drop-button.active:after {
  right: 0;
}
.nav-dropdown {
  position: relative;
}
.nav-drop-button span {
  color: var(--gold);
  margin-left: 3px;
}
.nav-drop-menu {
  position: absolute;
  top: 68px;
  left: -20px;
  width: 220px;
  background: white;
  color: var(--ink);
  padding: 10px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
}
.nav-drop-menu a:hover {
  background: var(--cream);
  color: #9a6e18;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), #c39233);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(212, 169, 79, 0.24);
}
.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-block {
  width: 100%;
}
.nav-cta {
  padding: 0 20px;
  min-height: 44px;
}
.nav-cta:after {
  display: none !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  background: transparent;
  padding: 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0 0 0 38%;
  background-image:
    linear-gradient(
      90deg,
      var(--navy) 0%,
      rgba(7, 27, 49, 0.62) 26%,
      rgba(7, 27, 49, 0.18) 100%
    ),
    url("../images/hero-library.jpg");
  background-size: cover;
  background-position: center right;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 25%, #051225, transparent 42%);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-copy {
  width: min(560px, 58%);
  padding: 120px 0 120px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a77a24;
  font-weight: 700;
  font-size: 12px;
}
.eyebrow:before,
.eyebrow:after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.left:before {
  display: none;
}
.hero h1,
.page-hero h1 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 0.94;
  margin: 12px 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero h1 span {
  color: var(--gold-2);
}
.hero p {
  font-size: 18px;
  max-width: 520px;
  color: #edf1f5;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-mini {
  display: flex;
  gap: 28px;
  margin-top: 36px;
}
.hero-mini div {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-mini div:last-child {
  border: 0;
}
.hero-mini strong {
  display: block;
  font-family: "Poppins";
  font-size: 26px;
  color: var(--gold-2);
  line-height: 1;
}
.hero-mini span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d9e1e8;
}

.trust-strip {
  background: var(--navy);
  border-top: 1px solid var(--line);
  color: white;
  padding: 24px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.trust-item:first-child {
  padding-left: 0;
}
.trust-item:last-child {
  border: 0;
}
.icon {
  width: 45px;
  height: 45px;
  color: var(--gold);
}
.icon svg {
  width: 100%;
  height: 100%;
}
.trust-item strong {
  display: block;
  color: var(--gold-2);
  font-size: 14px;
}
.trust-item span {
  font-size: 12px;
  color: #dbe2e8;
}

.section {
  padding: 88px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-cream {
  background: var(--cream);
}
.section-navy {
  background: var(--navy);
  color: white;
}
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}
.section-title h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  margin: 10px 0 12px;
  text-transform: uppercase;
}
.section-title p {
  color: var(--muted);
  margin: 0;
}
.section-navy .section-title p {
  color: #cbd5df;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #e8e1d5;
  padding: 28px 22px 24px;
  min-height: 260px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(7, 27, 49, 0.06);
  transition: 0.25s;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-card:hover:before {
  transform: scaleX(1);
}
.service-card .icon {
  margin: 0 auto 16px;
  width: 52px;
  height: 52px;
}
.service-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
}
.text-link {
  color: #a87618;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.visual-card {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0b2a48, #061629);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-library.jpg") center/cover;
  opacity: 0.72;
}
.visual-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 27, 49, 0.84));
}
.visual-badge {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.95);
  padding: 22px;
  border-left: 4px solid var(--gold);
}
.visual-badge strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 20px;
  display: block;
}
.visual-badge span {
  font-size: 12px;
  color: var(--muted);
}
.content-block h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 48px;
  line-height: 1.05;
  margin: 10px 0 18px;
}
.content-block p {
  color: var(--muted);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid #ece6dc;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5ead0;
  color: #9b6e18;
  font-weight: 900;
  font-size: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: steps;
}
.process-card {
  position: relative;
  padding: 30px 22px;
  border-top: 1px solid rgba(212, 169, 79, 0.45);
  counter-increment: steps;
}
.process-card:before {
  content: "0" counter(steps);
  font-family: "Poppins";
  font-size: 48px;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: bold;
}
.process-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.process-card p {
  font-size: 13px;
  color: #cbd4dd;
  margin: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.package-card {
  position: relative;
  border: 1px solid rgba(212, 169, 79, 0.55);
  padding: 28px 26px 25px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
}
.package-card.popular {
  background: linear-gradient(
    180deg,
    rgba(212, 169, 79, 0.13),
    rgba(255, 255, 255, 0.02)
  );
  border-color: var(--gold);
}
.package-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  right: 20px;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px;
}
.package-card h3 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 25px;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}
.price {
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 19px;
  line-height: 1;
  color: var(--gold-2);
  margin: 8px 0 20px;
  text-transform: uppercase;
}
.price small {
  font-family: var(--sans);
  font-size: 12px;
  color: #cbd4dd;
}
.package-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.package-card li {
  font-size: 13px;
  padding: 8px 0 8px 24px;
  position: relative;
}
.package-card li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.quote-card {
  background: white;
  border: 1px solid #e7dfd2;
  padding: 28px;
  box-shadow: 0 8px 22px rgba(7, 27, 49, 0.05);
}
.quote-mark {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 0.6;
}
.quote-card p {
  font-size: 14px;
}
.stars {
  color: #c9932e;
  letter-spacing: 2px;
}
.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 800;
}
.person strong {
  display: block;
  font-size: 13px;
}
.person span {
  font-size: 11px;
  color: #cf911b;
  font-weight: 600;
}

.cta-band {
  background: linear-gradient(120deg, #051225, #061628);
  color: white;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.cta-band p {
  margin: 0;
  color: #cbd4dd;
}

.page-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(7, 27, 49, 0.98), rgba(7, 27, 49, 0.7)),
    url("../images/hero-library.jpg") center/cover;
  color: white;
  padding: 108px 0 90px;
}
.page-hero .container {
  position: relative;
}
.page-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 12px;
}
.page-hero p {
  max-width: 680px;
  color: #dce4eb;
  font-size: 17px;
}
.breadcrumbs {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  padding: 28px;
  border: 1px solid #e8e1d5;
  background: white;
}
.feature-card .icon {
  width: 42px;
  height: 42px;
}
.feature-card h3 {
  margin: 14px 0 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(212, 169, 79, 0.35);
}
.stat strong {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 44px;
  color: var(--gold-2);
}
.stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #cbd4dd;
}

.timeline {
  display: grid;
  gap: 16px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: start;
}
.timeline-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
}
.timeline-content {
  padding: 0 0 24px;
  border-bottom: 1px solid #e9e2d7;
}
.timeline-content h3 {
  margin: 0 0 6px;
}
.timeline-content p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #ded7cc;
}
.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: 0;
  padding: 20px 0;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}
.faq-button span {
  font-size: 24px;
  color: var(--gold);
  transition: 0.2s;
}
.faq-item.open .faq-button span {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
}
.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.contact-panel {
  background: var(--navy);
  color: white;
  padding: 38px;
  border-radius: var(--radius);
}
.contact-panel h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 40px;
  margin: 0 0 16px;
}
.contact-line {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-line .icon {
  width: 28px;
  height: 28px;
}
.contact-line strong {
  display: block;
  color: var(--gold-2);
  font-size: 13px;
}
.contact-line span,
.contact-line a {
  font-size: 13px;
  color: #d8e1e8;
}
.form-card {
  padding: 38px;
  border: 1px solid #e6ded2;
  background: white;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid.two {
  grid-template-columns: 1fr 1fr;
}
.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid #d9d2c8;
  background: #fff;
  padding: 12px 13px;
  border-radius: 4px;
  outline: none;
  color: var(--ink);
}
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 169, 79, 0.14);
}
.lead-form textarea {
  resize: vertical;
}
.form-status {
  min-height: 22px;
  font-size: 12px;
  margin-top: 8px;
}
.form-status.error {
  color: #b42318;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
}

.site-footer {
  background: #051225;
  color: white;
  padding: 58px 0 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.85fr 1fr;
  gap: 40px;
}
.footer-grid > div:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 34px;
}
.site-footer h3 {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-2);
  margin: 0 0 16px;
}
.site-footer a, .site-footer span {
    display: block;
    font-size: 12px;
    color: #878787;
    margin: 7px 0;
}

.site-footer a:hover {
  color: var(--gold-2);
}
.footer-brand p {
  max-width: 310px;
  font-size: 12px;
  color: #cbd4dd;
}
.brand-footer .brand-copy strong {
  font-size: 20px;
}
.footer-link {
  border: 0;
  background: transparent;
  color: var(--gold-2);
  padding: 0;
  font-size: 12px;
}
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
}
.footer-bottom span,
.footer-bottom a {
  display: inline;
  margin: 0;
  color: #9fb0c1;
  font-size: 11px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 23, 0.78);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--paper);
  padding: 38px;
  border-top: 5px solid var(--gold);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}
.modal-card h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
  margin: 10px 0;
}
.modal-card > p {
  color: var(--muted);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  font-size: 24px;
}
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  border: 0;
  border-radius: 40px;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 18px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7, 27, 49, 0.25);
}

.notice {
  padding: 14px 16px;
  border-radius: 6px;
  margin: 20px 0;
  font-size: 14px;
}
.notice.success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #abefc6;
}
.notice.error {
  background: #fef3f2;
  color: #b42318;
  border: 1px solid #fecdca;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }
  .brand-copy strong {
    font-size: 18px;
  }
  .brand-copy small {
    display: none;
  }
  .services-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .hero:before {
    inset: 0 0 0 30%;
  }
  .hero-copy {
    width: 64%;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-grid > div:nth-child(4) {
    grid-column: 2/4;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    background: var(--navy);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 26px;
    gap: 0;
    border-top: 1px solid rgba(212, 169, 79, 0.35);
    max-height: calc(100vh - 78px);
    overflow: auto;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a,
  .nav-drop-button {
    padding: 14px 0;
    text-align: left;
    width: 100%;
  }
  .main-nav > a:after,
  .nav-drop-button:after {
    bottom: 6px;
  }
  .nav-cta {
    margin-top: 12px;
  }
  .nav-drop-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #0b2845;
    color: white;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 2px 0 10px;
  }
  .nav-dropdown.open .nav-drop-menu {
    display: block;
  }
  .nav-dropdown:hover .nav-drop-menu {
    display: none;
  }
  .nav-dropdown.open:hover .nav-drop-menu {
    display: block;
  }
  .hero {
    min-height: 620px;
  }
  .hero:before {
    inset: 0;
    background-image:
      linear-gradient(90deg, rgba(7, 27, 49, 0.96), rgba(7, 27, 49, 0.62)),
      url("../images/hero-library.jpg");
    opacity: 0.9;
  }
  .hero-copy {
    width: 100%;
    max-width: 620px;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .visual-card {
    min-height: 350px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div {
    border-left: 0 !important;
    padding-left: 0 !important;
  }
  .footer-grid > div:nth-child(4) {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .brand-mark {
    width: 42px;
  }
  .brand-copy strong {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .section {
    padding: 65px 0;
  }
  .hero-copy {
    padding: 65px 0;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-mini {
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-mini div {
    min-width: 120px;
  }
  .trust-grid,
  .services-grid,
  .packages-grid,
  .process-grid,
  .feature-grid,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0;
    padding: 8px 0;
  }
  .package-card {
    min-height: auto;
  }
  .form-grid.two {
    grid-template-columns: 1fr;
  }
  .modal-card {
    padding: 28px 20px;
  }
  .page-hero {
    padding: 78px 0 65px;
  }
  .content-block h2,
  .cta-band h2 {
    font-size: 38px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .floating-cta {
    right: 12px;
    bottom: 12px;
    padding: 11px 14px;
    font-size: 12px;
  }
}

/* =====================================================
   WhatsApp Chat Widget
===================================================== */

.whatsapp-widget {
  --whatsapp-green: #25d366;
  --whatsapp-dark: #075e54;
  --brand-navy: #071b2f;
  --brand-gold: #d3aa54;

  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  font-family: "Poppins", sans-serif;
}

/* Floating Button */

.whatsapp-floating-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: #ffffff;
  background: var(--whatsapp-green);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.whatsapp-floating-button:hover {
  background: #1ebe5d;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.whatsapp-floating-button:focus-visible {
  outline: 3px solid rgba(211, 170, 84, 0.55);
  outline-offset: 4px;
}

.whatsapp-floating-button svg {
  width: 34px;
  height: 34px;
}

.whatsapp-notification {
  position: absolute;
  top: -4px;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  color: #ffffff;
  background: #e53935;
  border: 2px solid #ffffff;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
}

/* Main Chat Box */

.whatsapp-chat-box {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 355px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.whatsapp-chat-box.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */

.whatsapp-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: #ffffff;
  background: var(--brand-navy);
}

.whatsapp-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-profile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: #ffffff;
  background: var(--whatsapp-green);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.whatsapp-profile-icon svg {
  width: 27px;
  height: 27px;
}

.whatsapp-profile-content {
  display: flex;
  flex-direction: column;
}

.whatsapp-profile-content strong {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.whatsapp-profile-content span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.whatsapp-profile-content span i {
  width: 7px;
  height: 7px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.whatsapp-close {
  width: 34px;
  height: 34px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.whatsapp-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Chat Body */

.whatsapp-chat-body {
  min-height: 185px;
  padding: 25px 18px;
  background-color: #efeae2;
  background-image: radial-gradient(
    circle at 20% 30%,
    rgba(7, 94, 84, 0.035) 0,
    rgba(7, 94, 84, 0.035) 2px,
    transparent 2px
  );
  background-size: 26px 26px;
}

.whatsapp-message {
  position: relative;
  max-width: 88%;
  padding: 14px 15px 11px;
  background: #ffffff;
  border-radius: 0 10px 10px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.whatsapp-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  border-top: 10px solid #ffffff;
  border-left: 10px solid transparent;
}

.whatsapp-message-brand {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-gold);
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-message p {
  margin: 0 0 6px;
  color: #303030;
  font-size: 13px;
  line-height: 1.65;
}

.whatsapp-message p:last-of-type {
  margin-bottom: 0;
}

.whatsapp-message small {
  display: block;
  margin-top: 5px;
  color: #8b8b8b;
  font-size: 10px;
  text-align: right;
}

/* Message Input */

.whatsapp-chat-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  background: #f7f7f7;
  border-top: 1px solid #e8e8e8;
}

.whatsapp-chat-footer textarea {
  width: 100%;
  min-height: 44px;
  max-height: 100px;
  margin: 0;
  padding: 11px 14px;
  color: #222222;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 22px;
  outline: none;
  resize: none;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-chat-footer textarea:focus {
  border-color: var(--whatsapp-green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
}

.whatsapp-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  padding: 0;
  color: #ffffff;
  background: var(--whatsapp-green);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.whatsapp-send:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

.whatsapp-send svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

/* Start Chat Button */

.whatsapp-start-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  padding: 13px 18px;
  color: #ffffff;
  background: var(--whatsapp-green);
  border: 0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.whatsapp-start-button:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.whatsapp-start-button svg {
  width: 21px;
  height: 21px;
}

/* Mobile Responsive */

@media (max-width: 575px) {
  .whatsapp-widget {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-floating-button {
    width: 56px;
    height: 56px;
  }

  .whatsapp-floating-button svg {
    width: 31px;
    height: 31px;
  }

  .whatsapp-chat-box {
    position: fixed;
    right: 12px;
    bottom: 82px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 105px);
  }

  .whatsapp-chat-body {
    min-height: 155px;
  }
}

/* WhatsApp Widget - Left Side Position */

.whatsapp-widget {
  right: auto;
  left: 24px;
}

.whatsapp-chat-box {
  right: auto;
  left: 0;
  transform-origin: bottom left;
}

/* Mobile Position */

@media (max-width: 575px) {
  .whatsapp-widget {
    right: auto;
    left: 15px;
  }

  .whatsapp-chat-box {
    right: 12px;
    left: 12px;
  }
}

/* =====================================================
   Screenplay Video Banner
===================================================== */

.screenplay-video-section {
  position: relative;
  width: 100%;
  padding: 40px 20px 65px;
  overflow: hidden;
  background: #f8f7f3;
  font-family: "Poppins", sans-serif;
}

.screenplay-video-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* =====================================================
   Video Frame
===================================================== */

.screenplay-video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #05080b;
  border: 3px solid #b68a3d;
  border-radius: 44px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(182, 138, 61, 0.15);
}

.screenplay-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

/* =====================================================
   Autoplay Video Without Controls
===================================================== */

.screenplay-banner-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 700px;
  object-fit: cover;
  background: #05080b;
  border: 0;
  border-radius: inherit;
  outline: none;

  /* User video ko click, pause ya control nahi kar sakega */
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* Chrome, Safari, Edge and mobile browser controls hide */

.screenplay-banner-video::-webkit-media-controls {
  display: none !important;
  opacity: 0 !important;
}

.screenplay-banner-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.screenplay-banner-video::-webkit-media-controls-panel {
  display: none !important;
}

.screenplay-banner-video::-webkit-media-controls-play-button {
  display: none !important;
}

.screenplay-banner-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.screenplay-banner-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

.screenplay-banner-video::-webkit-media-controls-timeline {
  display: none !important;
}

.screenplay-banner-video::-webkit-media-controls-current-time-display,
.screenplay-banner-video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

.screenplay-banner-video::-webkit-media-controls-mute-button,
.screenplay-banner-video::-webkit-media-controls-volume-slider {
  display: none !important;
}

.screenplay-banner-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* =====================================================
   Buttons Area
===================================================== */

.screenplay-video-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.screenplay-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  min-height: 52px;
  padding: 4px 5px 4px 25px;
  border: 0;
  border-radius: 40px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.screenplay-action-button:hover {
  transform: translateY(-3px);
}

/* Gold Button */

.screenplay-gold-button {
  color: #ffffff;
  background: #b58a42;
  box-shadow: 0 9px 24px rgba(181, 138, 66, 0.24);
}

.screenplay-gold-button:hover {
  color: #ffffff;
  background: #c59a4c;
  box-shadow: 0 13px 30px rgba(181, 138, 66, 0.32);
}

/* Navy Button */

.screenplay-navy-button {
  color: #ffffff;
  background: #11195a;
  border: 2px solid #b58a42;
  box-shadow: 0 9px 24px rgba(17, 25, 90, 0.22);
}

.screenplay-navy-button:hover {
  color: #ffffff;
  background: #18216b;
  box-shadow: 0 13px 30px rgba(17, 25, 90, 0.3);
}

/* =====================================================
   Button Arrow
===================================================== */

.screenplay-button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-left: 18px;
  color: #071b2f;
  background: #f6deb0;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 400;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.screenplay-navy-button .screenplay-button-arrow {
  color: #ffffff;
  background: #a87c34;
}

.screenplay-action-button:hover .screenplay-button-arrow {
  transform: translateX(3px);
}

/* =====================================================
   Tablet Responsive
===================================================== */

@media (max-width: 991px) {
  .screenplay-video-section {
    padding: 35px 18px 55px;
  }

  .screenplay-video-frame {
    border-radius: 30px;
  }

  .screenplay-banner-video {
    min-height: 340px;
  }
}

/* =====================================================
   Mobile Responsive
===================================================== */

@media (max-width: 767px) {
  .screenplay-video-section {
    padding: 25px 14px 45px;
  }

  .screenplay-video-frame {
    border-width: 2px;
    border-radius: 22px;
  }

  .screenplay-banner-video {
    min-height: 260px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .screenplay-video-actions {
    gap: 12px;
    margin-top: 25px;
  }

  .screenplay-action-button {
    width: 100%;
    max-width: 330px;
  }
}

/* =====================================================
   Small Mobile
===================================================== */

@media (max-width: 480px) {
  .screenplay-video-section {
    padding-right: 10px;
    padding-left: 10px;
  }

  .screenplay-video-frame {
    border-radius: 16px;
  }

  .screenplay-banner-video {
    min-height: 215px;
  }

  .screenplay-action-button {
    min-height: 50px;
    padding-left: 20px;
    font-size: 13px;
  }

  .screenplay-button-arrow {
    width: 40px;
    height: 40px;
    margin-left: 12px;
  }
}

/* =====================================================
   Screenplay Video Banner with Background Image
===================================================== */

.screenplay-video-section {
  position: relative;
  width: 100%;
  padding: 80px 20px 65px;
  overflow: hidden;
  isolation: isolate;
  background-color: #07111c;
  background-image: url("../images/bannerjpg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-family: "Poppins", sans-serif;
}

/* Dark overlay over background image */

.screenplay-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    rgba(3, 12, 22, 0.92) 0%,
    rgba(3, 12, 22, 0.7) 50%,
    rgba(3, 12, 22, 0.92) 100%
  );
  pointer-events: none;
}

/* Gold cinematic glow */

.screenplay-video-section::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  z-index: -1;
  width: 800px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(182, 138, 61, 0.2) 0%,
    rgba(182, 138, 61, 0.06) 45%,
    transparent 72%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.screenplay-video-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* =====================================================
   Main Header
===================================================== */

.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #061426;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.header-container {
  width: calc(100% - 40px);
  max-width: 1440px;
  min-height: 76px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

/* =====================================================
   Logo
===================================================== */

.site-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  flex: 0 0 auto;
  text-decoration: none;
}

.site-logo img {
  display: block;
  width: 70%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* =====================================================
   Desktop Navigation
===================================================== */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  flex: 1;
  min-width: 0;
  gap: clamp(22px, 2vw, 38px);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1;
  min-width: 0;
  gap: clamp(13px, 1.15vw, 24px);
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 3px 0 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.nav-links a:hover {
  color: #e5b94f;
}

/* Active menu underline */

.nav-links a::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: 19px;

  width: 0;
  height: 2px;

  background: #e5b94f;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #ffffff;
}

/* =====================================================
   Get Started Button
===================================================== */

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
  min-width: 126px;
  min-height: 44px;
  padding: 12px 22px;

  border: 1px solid #e1ae3f;
  border-radius: 4px;
  outline: none;

  background: #e1ae3f;
  color: #061426;

  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(225, 174, 63, 0.18);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #061426;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   Hamburger Button
===================================================== */

.menu-toggle {
  display: none;

  width: 46px;
  height: 42px;
  padding: 9px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 100%;
  height: 2px;
  margin: 5px 0;

  border-radius: 10px;
  background: #ffffff;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* Hamburger animation */

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   Medium Desktop
===================================================== */

@media (max-width: 1370px) {
  .header-container {
    width: calc(100% - 30px);
    gap: 22px;
  }

  .site-logo img {
    width: 245px;
  }

  .main-nav {
    gap: 20px;
  }

  .nav-links {
    gap: 13px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .nav-cta {
    min-width: 112px;
    min-height: 42px;
    padding: 11px 16px;
    font-size: 11px;
  }
}

/* =====================================================
   Tablet and Mobile Navigation
===================================================== */

@media (max-width: 1180px) {
  .site-header {
    position: relative;
  }

  .header-container {
    position: relative;

    width: 100%;
    min-height: 72px;
    padding: 0 24px;
    gap: 20px;
  }

  .site-logo img {
    width: clamp(220px, 34vw, 285px);
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;

    top: calc(100% + 1px);
    left: 20px;
    right: 20px;

    display: block;

    max-height: 0;
    padding: 0 24px;

    overflow: hidden;
    visibility: hidden;
    opacity: 0;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 8px 8px;

    background: #061426;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);

    transform: translateY(-8px);

    transition:
      max-height 0.35s ease,
      padding 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.35s ease;
  }

  .main-nav.open {
    max-height: 750px;
    padding: 16px 24px 24px;

    visibility: visible;
    opacity: 1;

    transform: translateY(0);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;
    gap: 0;
  }

  .nav-links a {
    justify-content: flex-start;

    width: 100%;
    min-height: 48px;
    padding: 14px 4px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 13px;
    text-align: left;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    color: #e5b94f;
  }

.nav-cta {
    width: 35%;
    min-height: 45px;
    margin-top: 0px;
}
}

.footer-brand span {
    text-align: center !important;
}

#libertyPopup .popup-heading h2 {
    margin: 30px 0 8px 0;
    font-size: 20px;
}

/* =====================================================
   Small Mobile
===================================================== */

@media (max-width: 575px) {
  .header-container {
    min-height: 68px;
    padding: 0 15px;
  }

  .site-logo img {
    width: 205px;
  }

  .menu-toggle {
    width: 42px;
    height: 40px;
    padding: 8px;
  }

  .main-nav {
    left: 10px;
    right: 10px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .main-nav.open {
    padding: 12px 18px 20px;
  }

  .nav-links a {
    min-height: 46px;
    font-size: 12px;
  }
}

/* Very small screens */

@media (max-width: 370px) {
  .site-logo img {
    width: 175px;
  }

  .header-container {
    gap: 10px;
  }
}

:root {
  --bs-gold: #b68a3d;
  --bs-gold-bright: #d5ac5e;
  --bs-gold-pale: #f2dfb4;
  --bs-blue: #d5ac5e;
  --bs-blue-deep: #474747;
  --bs-black: #080a0c;
  --bs-ink: #161616;
  --bs-cream: #f7f3ea;
  --bs-paper: #fbf8f1;
  --bs-white: #ffffff;
  --bs-muted: #6c6963;
  --bs-border: rgba(182, 138, 61, 0.55);
  --bs-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.book-screenplay-page,
.book-screenplay-page {
  margin: 0;
  background: var(--bs-paper);
  color: var(--bs-ink);
  font-family: "Poppins", Arial, sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

.bs-page {
  overflow: hidden;
}

.bs-page img,
.bs-page video {
  display: block;
  max-width: 100%;
}

.bs-page a {
  color: inherit;
}

.bs-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.bs-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--bs-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-transform: uppercase;
}

.bs-section-heading h1,
.bs-section-heading h2,
.bs-understand-copy h2,
.bs-book-cta-copy h2,
.bs-help-card h2 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.bs-section-heading h1 {
  font-size: clamp(38px, 5.5vw, 72px);
}

.bs-section-heading h2,
.bs-understand-copy h2,
.bs-book-cta-copy h2,
.bs-help-card h2 {
  font-size: clamp(36px, 4.5vw, 62px);
}

.bs-section-heading p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--bs-muted);
  font-size: 15px;
  line-height: 1.85;
}

.bs-section-heading-center {
  text-align: center;
}

.bs-heading-light h2,
.bs-heading-light p {
  color: #fff;
}

.bs-heading-light p {
  color: rgba(255, 255, 255, 0.72);
}

/* Buttons */
.bs-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.bs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.bs-btn-icon,
.bs-btn > span:last-child {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.bs-btn-gold {
  background: var(--bs-gold-bright);
  color: #111;
}

.bs-btn-blue {
  background: var(--bs-blue);
  color: #fff;
}

.bs-btn-light {
  background: #fff;
  border-color: #111;
  color: #111;
}

.bs-center-actions,
.bs-left-actions,
.bs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bs-center-actions,
.bs-hero-actions {
  justify-content: center;
}

/* Hero */
.bs-hero {
  position: relative;
  padding: 54px 0 34px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(182, 138, 61, 0.15),
      transparent 30%
    ),
    repeating-radial-gradient(
      ellipse at 50% 110%,
      rgba(182, 138, 61, 0.18) 0 2px,
      transparent 2px 22px
    ),
    linear-gradient(115deg, #080706 0%, #140c08 48%, #060606 100%);
  isolation: isolate;
}

.bs-hero::before,
.bs-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bs-hero::before {
  background:
    linear-gradient(
      25deg,
      transparent 45%,
      rgba(182, 138, 61, 0.09) 46% 47%,
      transparent 48%
    ),
    linear-gradient(
      -25deg,
      transparent 45%,
      rgba(182, 138, 61, 0.07) 46% 47%,
      transparent 48%
    );
  background-size: 90px 90px;
  opacity: 0.65;
}

.bs-video-frame {
  position: relative;
  width: min(980px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border: 2px solid var(--bs-gold);
  border-radius: 34px;
  background: #050505;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.bs-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.bs-video {
  width: 100%;
  aspect-ratio: 16/8.3;
  object-fit: cover;
}

.bs-hero-actions {
  margin-top: 24px;
}

/* Story */
.bs-story {
  position: relative;
  padding: 86px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
    radial-gradient(
      circle at 10% 20%,
      rgba(182, 138, 61, 0.12),
      transparent 25%
    ),
    var(--bs-paper);
}

.bs-story::after {
  content: "HOLLYWOOD";
  position: absolute;
  right: 4%;
  bottom: 108px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(72px, 13vw, 190px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  pointer-events: none;
}

.bs-story-shell {
  position: relative;
  z-index: 1;
}

.bs-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(720px, 100%);
  margin: 40px auto 48px;
}

.bs-divider span {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.25),
    transparent
  );
}

.bs-divider i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--bs-gold);
  border-radius: 50%;
  color: var(--bs-gold);
  font-style: normal;
  font-size: 11px;
}

.bs-format-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: center;
  padding-bottom: 70px;
}

.bs-format-intro h2 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(31px, 3.3vw, 49px);
  line-height: 0.98;
}

.bs-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.bs-format-card1 h3 {
  max-width: 180px;
  margin: 32px 0 0;
  color: #302c27;
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
}

.bs-format-badge {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  font-weight: 800;
}

.bs-badge-red {
  background: #bd1010;
}
.bs-badge-gold {
  background: var(--bs-gold);
}
.bs-badge-blue {
  background: #1382d3;
}
.bs-badge-dark {
  background: #151b28;
}

.bs-story-ribbon {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 1.45fr) 1fr;
  min-height: 110px;
  color: #fff;
  text-align: center;
}

.bs-story-ribbon-side,
.bs-story-ribbon-center {
  display: grid;
  place-items: center;
  padding: 24px 28px;
}

.bs-story-ribbon-side {
  background: #a47b37;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.bs-story-ribbon-center {
  background: var(--bs-blue-deep);
  font-size: 13px;
  line-height: 1.75;
}

/* Services */
.bs-services {
  position: relative;
  padding: 92px 0 84px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(182, 138, 61, 0.14),
      transparent 23%
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(255, 255, 255, 0.05),
      transparent 20%
    ),
    linear-gradient(rgba(8, 10, 12, 0.93), rgba(8, 10, 12, 0.97)),
    url("/assets/images/book-screenplay/studio-background.jpg") center/cover
      no-repeat,
    #080a0c;
  color: #fff;
}

.bs-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.13) 0.65px,
    transparent 0.65px
  );
  background-size: 5px 5px;
  opacity: 0.14;
  pointer-events: none;
}

.bs-services > .bs-shell {
  position: relative;
  z-index: 1;
}

.bs-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(900px, 100%);
  margin: 46px auto 0;
}

.bs-service-card {
  min-height: 280px;
  padding: 34px 28px;
  border: 1px solid var(--bs-border);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.72),
    rgba(12, 14, 17, 0.86)
  );
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.bs-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--bs-gold-bright);
  background: linear-gradient(145deg, rgb(105 93 70), rgba(12, 14, 17, 0.92));
}

.bs-service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  place-items: center;
  color: var(--bs-gold-bright);
}

.bs-service-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bs-service-card h3 {
  margin: 0;
  color: var(--bs-gold-pale);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.1;
}

.bs-service-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.75;
}

.bs-center-actions {
  margin-top: 34px;
}

/* Process */
.bs-process-panel {
  position: relative;
  padding: 52px 42px 48px;
  overflow: hidden;
  border: 2px solid var(--bs-gold);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, #625339, transparent 48%),
    linear-gradient(160deg, #040403, #0f1216 62%, #080a18);
  box-shadow:
    0 28px 65px rgb(7 9 11),
    inset 0 0 60px rgb(7 9 11);
  width: 100%;
  margin-top: 10%;
}

.bs-process-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}

.bs-process-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.bs-process-heading h2 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 0.98;
}

.bs-process-heading p {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.bs-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.bs-process-line {
  position: absolute;
  top: 65%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bs-gold), transparent);
  opacity: 0.75;
}

.bs-process-step {
  position: relative;
  text-align: center;
}

.bs-process-step::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border: 3px solid var(--bs-gold);
  border-radius: 50%;
  background: var(--bs-blue-deep);
  box-shadow: 0 0 0 5px rgba(182, 138, 61, 0.15);
}

.bs-process-step span {
  color: var(--bs-gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.bs-process-step h3 {
  margin: 11px 0 0;
  color: var(--bs-gold-pale);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.15;
}

.bs-process-step p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10.5px;
  line-height: 1.65;
}

/* Understand */
.bs-understand {
  position: relative;
  padding: 86px 0;
  background:
    radial-gradient(
      circle at 10% 45%,
      rgba(182, 138, 61, 0.08),
      transparent 18%
    ),
    linear-gradient(rgba(248, 244, 235, 0.92), rgba(248, 244, 235, 0.92)),
    url("/assets/images/book-screenplay/paper-texture.jpg") center/cover,
    var(--bs-cream);
}

.bs-understand-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.bs-understand-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #5e5a54;
  font-size: 14px;
  line-height: 1.9;
}

.bs-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
  margin-top: 26px;
}

.bs-check-grid span {
  position: relative;
  padding-left: 24px;
  font-size: 12px;
  font-weight: 600;
}

.bs-check-grid span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--bs-gold);
  color: #fff;
  font-size: 10px;
}

.bs-subsection-title {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.bs-subsection-title h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.02;
}

.bs-subsection-title h3 em {
  color: var(--bs-blue);
  font-style: normal;
}

.bs-subsection-title p {
  margin-top: 8px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 25px;
}

.bs-check-grid-small {
  margin-bottom: 28px;
}

.bs-understand-media {
  position: relative;
  width: min(430px, 100%);
  margin-inline: auto;
}

.bs-media-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--bs-blue);
  border-radius: 18px;
  background: #ddd;
  box-shadow: var(--bs-shadow);
}

.bs-media-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.bs-media-card figcaption {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 34, 93, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.bs-media-card-bottom {
  margin-top: -20px;
  margin-left: 40px;
}

.bs-media-arrow {
  position: relative;
  z-index: 3;
  display: grid;
  width: 62px;
  height: 62px;
  margin: -25px auto -25px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--bs-gold);
  color: #fff;
  font-size: 32px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.22);
}

/* Testimonials */
.bs-testimonials {
  padding: 62px 0 56px;
  background:
    linear-gradient(rgba(244, 244, 242, 0.92), rgba(244, 244, 242, 0.92)),
    url("/assets/images/book-screenplay/testimonial-background.jpg")
      center/cover,
    #f2f2f0;
}

.bs-testimonial-topline {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 30px;
  align-items: center;
}

.bs-trust-block,
.bs-rating-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.bs-rating-block {
  align-items: flex-end;
}

.bs-rating-block strong {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--bs-gold);
  color: #111;
}

.bs-rating-block span {
  color: #d89f20;
  letter-spacing: 0.08em;
}

.bs-testimonial-heading h2 {
  font-size: clamp(32px, 3.6vw, 48px);
}

.bs-testimonial-viewport {
  margin-top: 36px;
  overflow: hidden;
}

.bs-testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.bs-testimonial-card {
  min-width: calc((100% - 36px) / 3);
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.08);
}

.bs-testimonial-card header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
}

.bs-testimonial-card header span {
  color: #d89f20;
}

.bs-testimonial-card p {
  margin: 18px 0 0;
  color: #555;
  font-size: 12px;
  line-height: 1.75;
}

.bs-slider-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.bs-slider-actions button {
  width: 46px;
  height: 46px;
  border: 1px solid #222;
  border-radius: 50%;
  background: transparent;
  color: #222;
  font-size: 22px;
  cursor: pointer;
}

/* CTA */
.bs-book-cta {
  position: relative;
  padding: 46px 0;
  background:
    linear-gradient(
      164deg,
      transparent 58%,
      #443e32 58.3% 72%,
      transparent 72.3%
    ),
    radial-gradient(
      circle at 90% 50%,
      rgba(182, 138, 61, 0.15),
      transparent 26%
    ),
    linear-gradient(110deg, #06070a, #111317);
  color: #fff;
}

.bs-book-cta::after {
  content: "";
  position: absolute;
  left: 12%;
  top: 14%;
  width: 220px;
  height: 220px;
  border: 18px dotted rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.bs-book-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: center;
}

.bs-book-mockup img {
  width: 210px;
  margin-inline: auto;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.5));
}

.bs-book-cta-copy h2 {
  color: var(--bs-gold-bright);
}

.bs-book-cta-copy p {
  max-width: 700px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.8;
}

/* FAQ */
.bs-faq {
  padding: 72px 0 82px;
  background:
    linear-gradient(rgba(11, 10, 9, 0.88), rgba(11, 10, 9, 0.94)),
    url("/assets/images/book-screenplay/faq-background.jpg") center/cover,
    #0a0908;
  color: #fff;
}

.bs-faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: 70px;
  align-items: start;
}

.bs-help-card {
  padding-top: 16px;
}

.bs-help-card h2 {
  color: var(--bs-gold-bright);
}

.bs-help-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.bs-help-card a {
  text-decoration: none;
}

.bs-faq-wrap .bs-section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.bs-accordion {
  display: grid;
  gap: 9px;
  margin-top: 28px;
}

.bs-faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.bs-faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.bs-faq-item button i {
  color: var(--bs-gold-bright);
  font-style: normal;
  font-size: 22px;
}

.bs-faq-answer {
  padding: 0 18px 18px;
}

.bs-faq-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 1024px) {
  .bs-format-layout,
  .bs-understand-grid,
  .bs-faq-grid {
    grid-template-columns: 1fr;
  }

  .bs-format-intro {
    text-align: center;
  }

  .bs-format-intro h2 br {
    display: none;
  }

  .bs-understand-media {
    width: min(520px, 100%);
  }

  .bs-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-process-line {
    display: none;
  }

  .bs-process-step::before {
    position: static;
    display: block;
    margin: 0 auto 14px;
    transform: none;
  }

  .bs-testimonial-card {
    min-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  .bs-shell {
    width: min(100% - 26px, 1180px);
  }

  .bs-hero {
    padding: 24px 0 28px;
  }

  .bs-video-frame {
    border-radius: 19px;
  }

  .bs-video {
    aspect-ratio: 16/10;
  }

  .bs-story,
  .bs-services,
  .bs-understand,
  .bs-faq {
    padding-top: 62px;
  }

  .bs-format-grid,
  .bs-service-grid,
  .bs-check-grid,
  .bs-process-grid,
  .bs-testimonial-topline,
  .bs-book-cta-grid {
    grid-template-columns: 1fr;
  }

  .bs-format-card1 {
    min-height: 120px;
  }

  .bs-story-ribbon {
    grid-template-columns: 1fr;
  }

  .bs-story-ribbon-side {
    min-height: 72px;
  }

  .bs-service-card {
    min-height: auto;
  }

  .bs-process-panel {
    padding: 42px 22px;
    border-radius: 18px;
  }

  .bs-process-grid {
    gap: 34px;
  }

  .bs-media-card img {
    height: 230px;
  }

  .bs-media-card-bottom {
    margin-left: 18px;
  }

  .bs-testimonial-topline {
    text-align: center;
  }

  .bs-rating-block {
    align-items: center;
  }

  .bs-testimonial-card {
    min-width: 100%;
  }

  .bs-book-cta-grid {
    text-align: center;
  }

  .bs-book-cta-copy p {
    margin-inline: auto;
  }

  .bs-left-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bs-section-heading h1 {
    font-size: 38px;
  }

  .bs-section-heading h2,
  .bs-understand-copy h2,
  .bs-book-cta-copy h2,
  .bs-help-card h2 {
    font-size: 35px;
  }

  .bs-btn {
    width: 100%;
  }

  .bs-hero-actions,
  .bs-center-actions,
  .bs-left-actions {
    width: 100%;
  }

  .bs-format-layout {
    padding-bottom: 45px;
  }

  .bs-format-card1 {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.bs-format-card1 h3 {
  color: #fff !important;
  padding: 0px !important;
}

.bs-format-card1 {
  min-height: 148px;
  padding: 0px !important;
}

.bs-format-badge {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  font-weight: 800;
  border: solid 1px #fff;
}

.bs-format-card2 {
  min-height: 148px;
  padding: 24px;
  border: 1px solid #000000;
  border-radius: 10px;
  background: rgb(182 138 61);
  box-shadow: 0 13px 40px rgba(25, 40, 75, 0.05);
}

.bs-format-card2 h3 {
  color: #fff !important;
}

.bs-format-badge {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  font-weight: 800;
  border: solid 1px #fff;
}

.bs-format-card3 {
  min-height: 148px;
  padding: 24px;
  border: 1px solid #000000;
  border-radius: 10px;
  background: rgb(19 130 211);
  box-shadow: 0 13px 40px rgba(25, 40, 75, 0.05);
}

.bs-format-card3 h3 {
  color: #fff !important;
}

.bs-format-badge {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  font-weight: 800;
  border: solid 1px #fff;
}

.bs-format-card4 {
  min-height: 148px;
  padding: 24px;
  border: 1px solid #000000;
  border-radius: 10px;
  background: #039746;
  box-shadow: 0 13px 40px rgba(25, 40, 75, 0.05);
}

.bs-format-card4 h3 {
  color: #fff !important;
}

.bs-format-badge {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  font-weight: 800;
  border: solid 1px #fff;
}

.bs-format-card5 {
  min-height: 148px;
  padding: 24px;
  border: 1px solid #000000;
  border-radius: 10px;
  background: rgb(21 27 40);
  box-shadow: 0 13px 40px rgba(25, 40, 75, 0.05);
}

.bs-format-card5 h3 {
  color: #fff !important;
}

.bs-format-badge {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  font-weight: 800;
  border: solid 1px #fff;
}

.bs-format-card1 {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
  background-size: cover;
}

.bs-format-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ===================================================
   LIBERTY BOOK HOUSE POPUP
=================================================== */

.liberty-popup {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 999999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* Popup Open */
.liberty-popup.popup-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==============================
   DARK BACKGROUND
============================== */

.liberty-popup-overlay {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ==============================
   POPUP CONTENT
============================== */

.liberty-popup-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 750px;

  max-height: 90vh;
  overflow-y: auto;

  background: #ffffff;

  padding: 35px;

  border-radius: 14px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

  transform: translateY(30px) scale(0.96);

  transition: transform 0.3s ease;
}

/* Animation */
.liberty-popup.popup-show .liberty-popup-content {
  transform: translateY(0) scale(1);
}

/* ==============================
   CLOSE BUTTON
============================== */

.liberty-popup-close {
  position: absolute;

  top: 10px;
  right: 15px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;

  background: transparent;

  color: #222222;

  font-size: 35px;
  line-height: 1;

  cursor: pointer;

  padding: 0;

  z-index: 10;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.liberty-popup-close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

/* ==============================
   HEADING
============================== */

.liberty-popup-heading {
  text-align: center;

  margin-bottom: 25px;

  padding: 0 25px;
}

.liberty-popup-heading h2 {
  margin: 0 0 8px;
}

.liberty-popup-heading p {
  margin: 0;
}

/* ==============================
   CONSENT
============================== */

.popup-consent {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  padding-top: 15px;
  padding-bottom: 15px;

  font-weight: 500;
}

.popup-consent input {
  width: auto !important;

  min-width: auto;

  margin-top: 5px;
}

/* ==============================
   PAGE SCROLL LOCK
============================== */

body.popup-open {
  overflow: hidden;
}

/* ==============================
   SCROLLBAR
============================== */

.liberty-popup-content::-webkit-scrollbar {
  width: 6px;
}

.liberty-popup-content::-webkit-scrollbar-thumb {
  background: #999999;

  border-radius: 20px;
}

/* ==============================
   MOBILE
============================== */

@media screen and (max-width: 767px) {
  .liberty-popup {
    padding: 10px;
  }

  .liberty-popup-content {
    padding: 30px 20px 22px;

    max-height: 94vh;
  }

  .liberty-popup .form-grid.two {
    grid-template-columns: 1fr !important;
  }

  .liberty-popup-heading {
    padding: 0 15px;
  }

  .liberty-popup-heading h2 {
    font-size: 24px;
  }
}

/* =========================================================
   BOOK SCREENPLAY LP
   NEW SECTIONS
========================================================= */

/* =========================================================
   01 - BOOK TO SCREENPLAY TRANSFORMATION
========================================================= */

.screenplay-transform-section {
  overflow: hidden;
}

.screenplay-transform-grid {
  max-width: 1000px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    140px
    minmax(0, 1fr);

  gap: 25px;

  align-items: center;

  margin: 55px auto 0;
}

.screenplay-format-card {
  position: relative;

  min-height: 420px;

  padding: 38px;

  border-radius: 14px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.screenplay-format-book {
  color: #fff;

  background:
    radial-gradient(
      circle at 70% 10%,
      rgba(208, 160, 58, 0.14),
      transparent 30%
    ),
    #071525;

  border: 1px solid rgba(208, 160, 58, 0.35);
}

.screenplay-format-script {
  color: #182337;

  background: #fff;

  border: 1px solid #e0d8c9;
}

.screenplay-format-label {
  display: inline-block;

  margin-bottom: 28px;

  color: #c8952d;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}

.screenplay-format-icon {
  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  color: #d5a23a;

  border: 1px solid rgba(208, 160, 58, 0.4);

  border-radius: 50%;
}

.screenplay-format-icon svg {
  width: 23px;
  height: 23px;
}

.screenplay-format-card h3 {
  margin: 0 0 25px;

  font-size: 32px;

  line-height: 1.1;
}

.screenplay-format-card ul {
  display: grid;

  gap: 15px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.screenplay-format-card li {
  position: relative;

  padding-left: 23px;

  font-size: 14px;

  line-height: 1.5;
}

.screenplay-format-card li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: #d3a03a;

  font-weight: 900;
}

.screenplay-format-book li {
  color: #b8c2ce;
}

.screenplay-transform-center {
  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;
}

.screenplay-transform-center > span {
  color: #a77922;

  font-size: 10px;

  font-weight: 900;

  letter-spacing: 2px;
}

.screenplay-transform-center > div {
  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 12px 0;

  color: #e2b754;

  border: 1px solid #d3a03a;

  border-radius: 50%;

  background: #071525;

  font-size: 27px;

  box-shadow: 0 8px 30px rgba(208, 160, 58, 0.2);
}

.screenplay-transform-center small {
  max-width: 110px;

  color: #777;

  font-size: 10px;

  line-height: 1.5;
}

/* =========================================================
   02 - SCREEN READY CARDS
========================================================= */

.screenplay-ready-section {
  position: relative;

  overflow: hidden;
}



.screenplay-ready-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 14px;

  margin-top: 50px;
}

.screenplay-ready-card {
  position: relative;

  min-height: 300px;

  padding: 35px 26px;

  overflow: hidden;

  border: 1px solid rgba(210, 160, 56, 0.25);

  border-radius: 10px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.005)
  );

  transition: 0.25s ease;
}

.screenplay-ready-card:hover {
  transform: translateY(-6px);

  border-color: rgba(210, 160, 56, 0.7);

  background: linear-gradient(
    145deg,
    rgba(210, 160, 56, 0.06),
    rgba(255, 255, 255, 0.005)
  );
}

.screenplay-ready-number {
  position: absolute;
  right: 15px;
  top: 10px;
  color: rgb(255 255 255 / 47%);
  font-size: 55px;
  font-weight: 900;
}

.screenplay-ready-card .icon1 {
  position: relative;

  z-index: 2;

  margin-bottom: 25px;
}

.screenplay-ready-card h3 {
  position: relative;

  z-index: 2;

  margin: 0 0 14px;

  color: #fff;

  font-size: 20px;
}

.screenplay-ready-card p {
  position: relative;

  z-index: 2;

  margin: 0;

  color: #9ba5b1;

  font-size: 13px;

  line-height: 1.75;
}

.screenplay-ready-cta {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 40px;
}

.screenplay-ready-cta p {
  margin: 0;

  color: #bac3cc;

  font-size: 13px;
}

/* =========================================================
   03 - SCREEN FORMAT OPTIONS
========================================================= */

.screen-format-options {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 55px;
}

.screen-format-option {
  position: relative;

  min-height: 520px;

  display: flex;

  flex-direction: column;

  padding: 38px 30px;

  border: 1px solid #ddd6ca;

  background: #fff;

  box-shadow: 0 15px 35px rgba(10, 20, 34, 0.06);
}

.screen-format-featured {
  transform: translateY(-12px);

  color: #fff;

  border-color: #bd8e2e;

  background:
    radial-gradient(circle at 50% 0, rgba(210, 160, 56, 0.17), transparent 30%),
    #071525;

  box-shadow: 0 25px 55px rgba(4, 13, 24, 0.2);
}

.screen-format-badge {
  position: absolute;

  top: -15px;

  left: 50%;

  transform: translateX(-50%);

  padding: 8px 14px;

  white-space: nowrap;

  color: #081321;

  background: linear-gradient(90deg, #f0cf7c, #ca962e);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 1px;
}

.screen-format-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding-bottom: 18px;

  border-bottom: 1px solid #e4ded5;
}

.screen-format-featured .screen-format-top {
  border-color: rgba(255, 255, 255, 0.12);
}

.screen-format-top span {
  color: #bd8b27;

  font-size: 11px;

  font-weight: 900;
}

.screen-format-top strong {
  color: #a47722;

  font-size: 10px;

  letter-spacing: 1.4px;
}

.screen-format-featured .screen-format-top strong {
  color: #d9ae50;
}

.screen-format-option h3 {
  margin: 30px 0 15px;

  font-size: 26px;

  line-height: 1.1;
}

.screen-format-option > p {
  min-height: 90px;

  margin: 0;

  color: #707989;

  font-size: 13px;

  line-height: 1.7;
}

.screen-format-featured > p {
  color: #a9b3bf;
}

.screen-format-option .check-list {
  flex-grow: 1;

  margin-top: 25px;
}

.screen-format-featured .check-list li {
  color: #d8dfe7;
}

.screen-format-option .text-link {
  align-self: flex-start;

  margin-top: 20px;

  padding: 0;

  border: 0;

  background: none;

  cursor: pointer;
}

/* =========================================================
   04 - CHANGE VS PROTECT
========================================================= */

.screenplay-balance-grid {
  display: grid;

  grid-template-columns:
    0.8fr
    1.2fr;

  gap: 75px;

  align-items: center;
}

.screenplay-balance-intro h2 {
  margin: 0 0 22px;

  color: #fff;

  font-family: var(--serif);

  font-size: 48px;

  line-height: 1.04;
}

.screenplay-balance-intro > p {
  margin: 0 0 28px;

  color: #9ca7b4;

  font-size: 14px;

  line-height: 1.8;
}

.screenplay-balance-panels {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;
}

.screenplay-balance-panel {
  min-height: 390px;

  padding: 35px 28px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.025);
}

.screenplay-balance-gold {
  border-color: rgba(210, 160, 56, 0.5);

  background: linear-gradient(
    145deg,
    rgba(210, 160, 56, 0.11),
    rgba(210, 160, 56, 0.025)
  );
}

.screenplay-balance-title {
  display: block;

  margin-bottom: 30px;

  color: #d2a038;

  font-size: 10px;

  font-weight: 900;

  letter-spacing: 2px;
}

.screenplay-balance-panel ul {
  display: grid;

  gap: 18px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.screenplay-balance-panel li {
  position: relative;

  padding-left: 28px;

  color: #bec6d0;

  font-size: 14px;
}

.screenplay-balance-panel li::before {
  content: "—";

  position: absolute;

  left: 0;

  color: #d2a038;
}

.screenplay-balance-gold li::before {
  content: "✓";
}

/* =========================================================
   05 - DELIVERABLES
========================================================= */

.screenplay-deliverables-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;

  margin-top: 55px;
}

.screenplay-deliverable-card {
  position: relative;

  min-height: 265px;

  padding: 35px 28px;

  border: 1px solid #e1dbd1;

  background: #fff;

  transition: 0.25s ease;
}

.screenplay-deliverable-card:hover {
  transform: translateY(-5px);

  border-color: #c99a34;

  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.07);
}

.screenplay-deliverable-card > span {
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgb(5 18 37);
  font-size: 44px;
  font-weight: 900;
}

.screenplay-deliverable-card .icon {
  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  color: #b98523;

  border: 1px solid #d9b76d;

  border-radius: 50%;
}

.screenplay-deliverable-card .icon svg {
  width: 22px;
  height: 22px;
}

.screenplay-deliverable-card h3 {
  max-width: 250px;

  margin: 0 0 12px;

  font-size: 20px;

  line-height: 1.15;
}

.screenplay-deliverable-card p {
  margin: 0;

  color: #747d8b;

  font-size: 12px;

  line-height: 1.75;
}

/* =========================================================
   06 - COLLABORATION JOURNEY
========================================================= */

.screenplay-journey {
  display: grid;

  grid-template-columns:
    1fr 45px
    1fr 45px
    1fr 45px
    1fr;

  align-items: center;

  gap: 8px;

  margin-top: 60px;
}

.screenplay-journey-step {
  min-height: 235px;

  padding: 28px 23px;

  border: 1px solid rgba(210, 160, 56, 0.3);

  background: rgba(255, 255, 255, 0.02);
}

.screenplay-journey-step > span {
  display: block;

  margin-bottom: 30px;

  color: #d2a038;

  font-size: 11px;

  font-weight: 900;
}

.screenplay-journey-step h3 {
  margin: 0 0 10px;

  color: #fff;

  font-size: 18px;

  line-height: 1.15;
}

.screenplay-journey-step p {
  margin: 0;

  color: #909aa6;

  font-size: 12px;

  line-height: 1.7;
}

.screenplay-journey-arrow {
  color: #c9952f;

  text-align: center;

  font-size: 24px;
}

/* =========================================================
   07 - FAQ
========================================================= */

.screenplay-faq-grid {
  display: grid;

  grid-template-columns: 0.7fr 1.3fr;

  gap: 80px;
}

.screenplay-faq-title h2 {
  margin: 0 0 18px;

  font-family: var(--serif);

  font-size: 46px;

  line-height: 1.05;
}

.screenplay-faq-title > p {
  margin: 0 0 25px;

  color: #727c8a;

  font-size: 14px;

  line-height: 1.75;
}

.screenplay-faq-list {
  border-top: 1px solid #ddd6cb;
}

.screenplay-faq-list details {
  border-bottom: 1px solid #ddd6cb;
}

.screenplay-faq-list summary {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 23px 0;

  list-style: none;

  cursor: pointer;

  color: #172337;

  font-size: 14px;

  font-weight: 800;
}

.screenplay-faq-list summary::-webkit-details-marker {
  display: none;
}

.screenplay-faq-list summary span {
  color: #b98625;

  font-size: 24px;

  transition: transform 0.2s ease;
}

.screenplay-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.screenplay-faq-list details p {
  margin: -4px 0 23px;

  padding-right: 40px;

  color: #747d89;

  font-size: 13px;

  line-height: 1.75;
}

/* =========================================================
   08 - BIG CTA
========================================================= */

.screenplay-big-cta {
  position: relative;

  overflow: hidden;

  padding: 85px 0;

  background:
    radial-gradient(
      circle at 25% 45%,
      rgba(210, 160, 56, 0.14),
      transparent 32%
    ),
    linear-gradient(135deg, #071525, #03080d);
}

.screenplay-big-cta::after {
  content: "";

  position: absolute;

  right: -100px;
  bottom: -60px;

  width: 750px;
  height: 180px;

  transform: rotate(-11deg);

  background: linear-gradient(90deg, transparent, rgba(210, 160, 56, 0.17));
}

.screenplay-big-cta-inner {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

.screenplay-big-cta h2 {
  max-width: 760px;

  margin: 0 0 17px;

  color: #fff;

  font-family: var(--serif);

  font-size: 50px;

  line-height: 1.03;
}

.screenplay-big-cta h2 span {
  display: block;

  color: #e0b34e;
}

.screenplay-big-cta p {
  max-width: 650px;

  margin: 0;

  color: #9ca7b3;

  font-size: 14px;

  line-height: 1.7;
}

.screenplay-big-cta-actions {
  min-width: 220px;

  display: grid;

  gap: 10px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media screen and (max-width: 1050px) {
  .screenplay-ready-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-format-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-format-featured {
    transform: none;
  }

  .screenplay-deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenplay-journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenplay-journey-arrow {
    display: none;
  }
}

@media screen and (max-width: 850px) {
  .screenplay-transform-grid {
    grid-template-columns: 1fr;

    max-width: 600px;
  }

  .screenplay-transform-center {
    padding: 10px 0;
  }

  .screenplay-transform-center > div {
    transform: rotate(90deg);
  }

  .screenplay-balance-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .screenplay-faq-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .screenplay-big-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }
}

@media screen and (max-width: 650px) {
  .screenplay-ready-grid,
  .screen-format-options,
  .screenplay-deliverables-grid,
  .screenplay-balance-panels,
  .screenplay-journey {
    grid-template-columns: 1fr;
  }

  .screen-format-option {
    min-height: auto;
  }

  .screen-format-option > p {
    min-height: auto;
  }

  .screenplay-balance-intro h2,
  .screenplay-faq-title h2,
  .screenplay-big-cta h2 {
    font-size: 36px;
  }

  .screenplay-format-card {
    min-height: auto;
  }

  .screenplay-ready-cta {
    flex-direction: column;

    align-items: flex-start;
  }

  .screenplay-big-cta-actions {
    width: 100%;
  }

  .screenplay-big-cta-actions .btn {
    width: 100%;
  }
}


.icon1 {
    width: 17%;
}













/* =========================================================
   LIBERTY BOOK HOUSE - LEAD POPUP
========================================================= */

.lb-lead-popup {
    position: fixed;
    inset: 0;
    z-index: 9999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .25s ease, visibility .25s ease;
}


.lb-lead-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* DARK OVERLAY */

.lb-lead-popup-overlay {
    position: absolute;
    inset: 0;

    background: rgba(3, 10, 18, .84);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


/* POPUP BOX */

.lb-lead-popup-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 720px;

    max-height: 92vh;
    overflow-y: auto;

    padding: 40px;

    background: #fffdf9;

    border-top: 5px solid #d3a13a;

    border-radius: 8px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);

    transform: translateY(25px) scale(.97);

    transition: transform .3s ease;
}


.lb-lead-popup.is-open .lb-lead-popup-box {
    transform: translateY(0) scale(1);
}


/* CLOSE BUTTON */

.lb-lead-popup-close {
    position: absolute;

    top: 12px;
    right: 14px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #ddd;
    border-radius: 50%;

    background: #fff;

    color: #0a1727;

    font-size: 27px;
    line-height: 1;

    cursor: pointer;

    z-index: 5;
}


.lb-lead-popup-close:hover {
    background: #f4f1eb;
}


/* POPUP HEADER */

.lb-lead-popup-header {
    margin-bottom: 28px;

    text-align: center;
}


.lb-lead-popup-header .eyebrow {
    justify-content: center;

    margin-bottom: 10px;
}


.lb-lead-popup-header h2 {
    margin: 0 0 10px;

    color: #142033;

    font-family: var(--serif);

    font-size: 40px;
    line-height: 1.05;
}


.lb-lead-popup-header p {
    max-width: 520px;

    margin: 0 auto;

    color: #737c89;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   FORM
========================================================= */

.lb-lead-popup .lead-form .form-grid.two {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 17px !important;

    width: 100%;
}


.lb-lead-popup .lead-form label {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    color: #283348;

    font-size: 13px;
    font-weight: 700;
}


.lb-lead-popup .lead-form label > span {
    display: block;

    margin-bottom: 7px;
}


.lb-lead-popup .lead-form
input:not([type="checkbox"]):not(.hp-field),

.lb-lead-popup .lead-form select,

.lb-lead-popup .lead-form textarea {

    display: block !important;

    width: 100% !important;

    box-sizing: border-box !important;

    margin: 7px 0 0 !important;

    padding: 13px 14px !important;

    border: 1px solid #d8d2c9 !important;
    border-radius: 4px !important;

    background: #fff !important;

    color: #172337 !important;

    font-family: inherit !important;
    font-size: 14px !important;

    outline: none !important;

    box-shadow: none !important;
}


.lb-lead-popup .lead-form
input:not([type="checkbox"]):not(.hp-field),

.lb-lead-popup .lead-form select {
    height: 48px !important;
}


.lb-lead-popup .lead-form input:focus,
.lb-lead-popup .lead-form select:focus,
.lb-lead-popup .lead-form textarea:focus {
    border-color: #d3a13a !important;
}


.lb-popup-message {
    display: block !important;

    margin-top: 17px !important;
}


.lb-popup-message textarea {
    min-height: 105px;
    resize: vertical;
}


/* CONSENT */

.lb-popup-consent {
    display: flex !important;

    align-items: flex-start !important;

    gap: 10px !important;

    padding: 16px 2px !important;

    font-size: 12px !important;

    font-weight: 500 !important;

    line-height: 1.5 !important;
}


.lb-popup-consent input[type="checkbox"] {
    width: 15px !important;
    height: 15px !important;

    min-width: 15px !important;

    margin: 2px 0 0 !important;

    padding: 0 !important;

    accent-color: #d3a13a;
}


.lb-popup-consent span {
    display: block !important;

    margin: 0 !important;
}


/* BUTTON */

.lb-lead-popup .btn.btn-gold.btn-block {
    width: 100% !important;

    min-height: 50px !important;

    border: 0 !important;

    cursor: pointer;
}


/* HONEYPOT */

.lb-lead-popup .hp-field {
    position: absolute !important;

    left: -99999px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;

    pointer-events: none !important;
}


/* BODY SCROLL LOCK */

body.lb-popup-open {
    overflow: hidden;
}


/* MOBILE */

@media screen and (max-width: 700px) {

    .lb-lead-popup {
        padding: 10px;
    }



.lb-lead-popup-box {
    padding: 70px 20px 24px;
    max-height: 80vh;
}


    .lb-lead-popup-header h2 {
        font-size: 30px;
    }


    .lb-lead-popup .lead-form .form-grid.two {
        grid-template-columns: 1fr !important;
    }

}






/* =========================================================
   MOBILE HEADER / MENU FIX
   Desktop remains unchanged
========================================================= */


/* Desktop: hamburger hidden */
@media screen and (min-width: 992px) {

    .menu-toggle {
        display: none !important;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media screen and (max-width: 991px) {


    /* HEADER */

    .site-header {
        position: relative;
        z-index: 99999;
    }


    .header-container {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
    }


    /* =========================
       LOGO
    ========================= */

    .site-logo {
        position: relative;
        z-index: 100002;

        display: flex;
        align-items: center;
    }


    .site-logo img {
        display: block;

        width: auto;
        max-width: 190px;
        height: auto;
    }


    /* =========================
       HAMBURGER
    ========================= */

    .menu-toggle {
        position: relative;
        z-index: 100002;

        width: 46px;
        height: 46px;

        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        flex: 0 0 46px;

        gap: 5px;

        padding: 0;

        margin-left: auto;

        border: 1px solid rgba(255, 255, 255, 0.30);
        border-radius: 6px;

        background: transparent;

        cursor: pointer;

        appearance: none;
        -webkit-appearance: none;
    }


    .menu-toggle span {
        display: block !important;

        width: 23px;
        height: 2px;

        margin: 0 !important;
        padding: 0;

        border: 0;
        border-radius: 10px;

        background: #ffffff;

        transform-origin: center;

        transition:
            transform 0.25s ease,
            opacity 0.2s ease;
    }


    /* Hamburger -> X */

    .menu-toggle.is-open span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }


    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.is-open span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* =========================
       MOBILE NAV
    ========================= */

    .main-nav {
        position: absolute !important;

        top: 100% !important;
        left: 0 !important;
        right: 0 !important;

        z-index: 100001;

        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;

        max-height: 0;

        margin: 0 !important;
        padding: 0 22px !important;

        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        background: #061426;

        border-top: 1px solid rgba(210, 160, 56, 0.25);

        box-shadow:
            0 20px 35px rgba(0, 0, 0, 0.35);

        transform: translateY(-8px);

        pointer-events: none;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease,
            padding 0.25s ease;
    }


    /* OPEN MENU */

    .main-nav.is-open {
        max-height: calc(100vh - 80px);

        padding-top: 12px !important;
        padding-bottom: 22px !important;

        overflow-y: auto;

        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* =========================
       NAV LINKS
    ========================= */

    .main-nav .nav-links {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;

        gap: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .main-nav .nav-links a {
        display: flex !important;
        align-items: center;

        width: 100% !important;

        min-height: 48px;

        margin: 0 !important;

        padding: 13px 4px !important;

        color: #ffffff;

        border: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);

        background: transparent;

        font-size: 12px;
        font-weight: 700;
        line-height: 1.3;

        text-align: left;

        text-decoration: none;

        text-transform: uppercase;

        transition:
            color 0.2s ease,
            padding-left 0.2s ease,
            background 0.2s ease;
    }


    .main-nav .nav-links a:hover,
    .main-nav .nav-links a:focus {
        padding-left: 10px !important;

        color: #e0b34e;

        background: rgba(255,255,255,0.025);
    }


    /* ACTIVE PAGE */

    .main-nav .nav-links a.active {
        color: #e0b34e;
    }


    /* =========================
       GET STARTED
    ========================= */

    .main-nav .nav-cta {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 100% !important;

        min-height: 48px;

        margin: 17px 0 0 !important;

        flex: none;
    }


}


/* =========================================================
   SMALL PHONES
========================================================= */

@media screen and (max-width: 480px) {

    .site-logo img {
        max-width: 170px;
    }


    .menu-toggle {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }


    .main-nav {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }


    .main-nav .nav-links a {
        min-height: 46px;

        font-size: 11px;
    }

} 