:root {
  --orange: #f36b21;
  --orange-dark: #d95412;
  --ink: #181817;
  --ink-2: #242321;
  --muted: #6d6a66;
  --paper: #fbfaf9;
  --cream: #f5f2ed;
  --line: #e8e4df;
  --white: #fff;
  --shadow: 0 18px 50px rgba(27, 22, 18, 0.11);
  --shadow-soft: 0 10px 30px rgba(27, 22, 18, 0.07);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.76rem;
}
.eyebrow:before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
h1,
h2,
h3,
h4 {
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.7rem, 5vw, 3.35rem);
}
h2 {
  font-size: clamp(2rem, 3.4vw, 2.35rem);
}
h3 {
  font-size: 1.28rem;
}

@media (max-width: 900px) {
  .lead-card {
    display: none !important;
  }
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.lead {
  font-size: 1.12rem;
  line-height: 1.8;
}
.text-orange {
  color: var(--orange);
}
.text-white {
  color: #fff;
}
.section {
  padding: 92px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-cream {
  background: var(--cream);
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-heading.left {
  margin-left: 0;
  text-align: left;
}
.section-heading p {
  max-width: 680px;
  margin-inline: auto;
}
.section-heading.left p {
  margin-inline: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 5px;
  font-size: 0.83rem;
  letter-spacing: 0.03em;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.25s ease;
  white-space: nowrap;
  border: solid 1px #fff;
}

.contact-cta .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center !important;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 12px 28px rgba(243, 107, 33, 0.25);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}
.btn-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}
.btn-sm {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.73rem;
}
.btn-block {
  width: 100%;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 800;
}
.link-arrow:after {
  content: "→";
  transition: 0.2s;
}
.link-arrow:hover:after {
  transform: translateX(4px);
}

/* Header */
.site-header {
  height: 78px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(20, 20, 20, 0.07);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: 0.2s;
  backdrop-filter: saturate(150%) blur(10px);
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav > a,
.nav-dropdown__toggle {
  position: relative;
  border: 0;
  background: none;
  padding: 28px 0;
  color: #2b2927;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.main-nav > a:after,
.nav-dropdown__toggle:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.2s;
}
.main-nav > a:hover:after,
.main-nav > a.active:after,
.nav-dropdown__toggle:hover:after,
.nav-dropdown__toggle.active:after {
  transform: scaleX(1);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown__menu {
  position: absolute;
  top: 65px;
  left: -20px;
  width: 245px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #383532;
  font-size: 0.84rem;
  font-weight: 650;
}
.nav-dropdown__menu a:hover {
  background: #fff3ec;
  color: var(--orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  font-size: 14px;
  font-weight: 800;
  color: #2b2927;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 42px;
  height: 42px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #222;
  margin: 6px 0;
  transition: 0.2s;
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #101110;
  color: #fff;
  min-height: 660px;
  display: flex;
  align-items: center;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 42% 20%,
      rgba(243, 107, 33, 0.12),
      transparent 27%
    ),
    linear-gradient(110deg, #0b0c0be8 25%, #f36b216b 70%, #000000cc);
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: 42px;
    padding: 30px 0;
    height: 100vh;
}


.hero-copy {
  max-width: 660px;
}
.hero .eyebrow {
  margin-bottom: 0px;
}
.hero h1 {
  max-width: 680px;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
    color: #c7c6c3;
    max-width: 630px;
    font-size: 15px;
    margin-bottom: 16px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  color: #aeadab;
  font-size: 0.79rem;
}
.hero-trust strong {
  color: #fff;
}
.hero-stars {
  color: #ffad63;
  letter-spacing: 2px;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  border-radius: 24px;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.35));
}
.hero-badge {
  position: absolute;
  left: -16px;
  bottom: 22px;
  background: #fff;
  color: var(--ink);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 190px;
}
.hero-badge strong {
  display: block;
  font-size: 1.45rem;
  color: var(--orange);
}
.hero-badge span {
  font-size: 0.78rem;
  color: #666;
}

/* Logos / stats */
.featured {
  padding: 42px 0 48px;
  border-bottom: 1px solid var(--line);
}
.featured-label {
  text-align: center;
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #181817;
  font-weight: 800;
  margin-bottom: 25px;
}
.media-row {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
  align-items: center;
}
.media-word {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  color: #4f4c49;
  font-weight: 700;
  opacity: 0.85;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-top: 32px;
}
.stat {
  text-align: center;
  padding: 12px;
}
.stat strong {
  display: block;
  color: var(--orange);
  font-size: 35px;
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 6px;
  color: #777;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

/* split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-copy {
  order: 2;
}
.split.reverse .split-media {
  order: 1;
}
.split-copy .eyebrow {
  margin-bottom: 12px;
}
.split-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
}
.split-copy li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: #4f4b47;
  font-size: 15px;
}
.split-copy li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 900;
}
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.book-spotlight {
  position: relative;
  padding: 24px;
}
.book-mock {
    width: 350px;
    height: 540px;
    margin: auto;
    border-radius: 5px;
    box-shadow: -18px 22px 35px rgba(0, 0, 0, 0.2);
    transform: perspective(900px) rotateY(-14deg);
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-image: url(../images/book.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.book-mock:before {
  content: "";
  position: absolute;
  left: -9px;
  top: 5px;
  bottom: 5px;
  width: 9px;
  background: #e8dfcc;
  border-radius: 2px 0 0 2px;
}
.book-mock small {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.book-mock h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
}
.book-mock .emblem {
  width: 82px;
  height: 82px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: auto;
  display: grid;
  place-items: center;
  font-size: 2rem;
}


/* lead card */
.lead-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  color: #000;
}
.lead-card h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #000 !important;
}
.lead-card-side {
  max-width: 470px;
  margin: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: block;
}
.form-field--full {
  grid-column: 1/-1;
}
.form-field span {
  display: block;
  font-weight: 700;
  font-size: 0.72rem;
  color: #494642;
  margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    border: 1px solid #dfdcd7;
    background: #fff;
    border-radius: 5px;
    padding: 11px 12px;
    color: #000000;
    outline: none;
    transition: 0.2s;
    font-size: 14px;
}


.typing-wrapper {
    display: inline-block;
    min-width: 7.5ch; /* Authors ki space reserve rakhega */
    white-space: nowrap;
}

#typing-text {
    color: #f56618; /* Orange color */
}

.typing-cursor {
    color: #f56618;
    font-weight: 400;
    margin-left: 2px;
    animation: cursorBlink 0.7s infinite;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}


p.form-para {
    color: #000 !important;
    font-size: 11px;
}


p.form-para a {
    color: #f36b21;
}


.form-field input,
.form-field select {
  height: 46px;
}
.form-field textarea {
    resize: vertical;
    min-height: 96px;
    font-size: 13px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 107, 33, 0.11);
}
.lead-form .btn {
  margin-top: 14px;
}
.form-note {
  font-size: 0.66rem;
  line-height: 1.5;
  margin: 10px 0 0;
  color: #8b8782;
}
.form-note a {
  text-decoration: underline;
}
.form-status {
    min-height: 18px;
    font-size: 0.76rem;
    font-weight: 700;
    margin-top: 0px;
}
.form-status.success {
  color: #26824d;
}
.form-status.error {
  color: #b72d2d;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* dark banner */
.global-banner {
  position: relative;
  overflow: hidden;
  background: #101212;
  color: #fff;
}
.global-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 10, 10, 0.96),
      rgba(9, 10, 10, 0.75) 52%,
      rgba(9, 10, 10, 0.88)
    ),
    radial-gradient(
      circle at 76% 40%,
      rgba(57, 124, 184, 0.22),
      transparent 32%
    );
}
.global-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  min-height: 370px;
  gap: 40px;
}
.global-copy {
  padding: 60px 0;
}
.global-copy h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}
.global-copy p {
  color: #c7c7c7;
  max-width: 630px;
}
.global-art {
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-art img {
  max-height: 900px !important;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.4));
  width: 85% !important;
}

/* service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 10px;
  transition: 0.25s;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: #ded8d1;
}
.service-card:hover:before {
  height: 100%;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff0e7;
  color: var(--orange);
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 18px;
  border: solid 1px;
}
.service-card h3 {
  font-size: 1.22rem;
}
.service-card p {
  font-size: 0.88rem;
  min-height: 89px;
}
.service-card .link-arrow {
  font-size: 0.82rem;
}

/* genres */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.genre-card {
  min-height: 100px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 10px;
  background: linear-gradient(145deg, #fff, #f8f6f2);
  position: relative;
  overflow: hidden;
}
.genre-card:after {
  content: "⦾";
  position: absolute;
  right: 14px;
  top: 40px;
  font-size: 20px;
  color: rgb(0 0 0 / 43%);
  transform: rotate(14deg);
}

.genre-card:hover {
  background: #e9e9e9;
}

.hero {
  background-image: url(../images/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.genre-card strong {
  font-size: 1rem;
}
.genre-card span {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  position: relative;
  padding: 28px 20px;
  text-align: center;
}
.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    right: -20px;
    top: 49px;
    width: 40px;
    border-top: solid 3px #f36b21;
}

article.review-card:hover {
    background: #f36b2154;
}

button.nav-dropdown__toggle span {
    margin-top: -10px;
}



.process-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}
.process-step p {
  font-size: 0.84rem;
  margin: 0;
}
.process-detailed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-box {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.process-box .num {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.process-box p {
  font-size: 0.86rem;
  margin: 0;
}

/* marketing strip */
.branding-strip {
  position: relative;
  background: #151515;
  color: #fff;
  padding: 74px 0;
  overflow: hidden;
}
.branding-strip:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(243, 107, 33, 0.08), transparent 40%),
    repeating-linear-gradient(
      120deg,
      transparent 0 80px,
      rgba(255, 255, 255, 0.018) 80px 81px
    );
}
.branding-strip .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.branding-strip p {
  color: #bbb;
  max-width: 660px;
  margin: 0 auto 24px;
}

/* portfolio/reviews */
.portfolio-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.portfolio-split img {
  border-radius: var(--radius-lg);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: #f6f5f3;
  padding: 24px;
  border-radius: 8px;
  border: solid 1px #dfdfdf;
}
.review-stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card blockquote {
  margin: 0 0 18px;
  color: #444;
  font-size: 0.9rem;
}
.review-card footer {
  font-weight: 800;
  font-size: 0.8rem;
}
.review-card footer span {
  display: block;
  color: #888;
  font-weight: 500;
  margin-top: 2px;
}

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.faq-illustration {
  background: #f9f6f2;
  border-radius: var(--radius-lg);
  min-height: 370px;
  display: grid;
  place-items: center;
  position: sticky;
  top: 110px;
}
.faq-mark {
  font-size: 6rem;
  color: var(--orange);
  font-weight: 900;
  line-height: 1;
}
.faq-mark small {
  font-size: 1.3rem;
  color: #333;
  display: block;
  text-align: center;
  letter-spacing: 0.16em;
}
.faq-item {
  border: 1px solid #e6e2dc;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 16px 18px;
  background: #171717;
  color: #fff;
  border: 0;
  font-weight: 750;
}
.faq-q span {
  color: var(--orange);
  font-size: 1.3rem;
}
.faq-a {
  display: none;
  padding: 16px 18px;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-item.open .faq-q span {
  transform: rotate(45deg);
}
.faq-a p {
  margin: 0;
  font-size: 0.86rem;
}

/* bottom lead */
.bottom-lead-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 55px;
  align-items: center;
}
.bottom-lead .lead-card {
  background: #fff;
}
.bottom-lead h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

/* inner pages */
.page-hero {
  background: #111312;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 98px 0 90px;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(243, 107, 33, 0.15),
      transparent 30%
    ),
    linear-gradient(115deg, #0b0c0b, #1a1b1a);
}
.page-hero .container {
  position: relative;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  color: #aaa;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: #ddd;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 4.7vw, 4.5rem);
  max-width: 800px;
}
.page-hero p {
  max-width: 720px;
  color: #cac9c6;
  font-size: 16px;
}
.page-hero .hero-actions {
  margin-top: 26px;
} 

.book-card {
    overflow: hidden;
    border-radius: 8px;
}

.book-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.book-card {
    height: 300px !important;

}
.page-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.visual-panel {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 35px;
  min-height: 400px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.visual-panel:before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 55px solid rgba(243, 107, 33, 0.09);
  border-radius: 50%;
  right: -80px;
  top: -80px;
}
.floating-books {
  position: relative;
  width: 330px;
  height: 310px;
}
.mini-book {
  position: absolute;
  width: 130px;
  height: 190px;
  border-radius: 5px;
  box-shadow: 0 18px 25px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.mini-book:nth-child(1) {
  background: #202c35;
  left: 28px;
  top: 70px;
  transform: rotate(-12deg);
}
.mini-book:nth-child(2) {
  background: #bd5b26;
  left: 105px;
  top: 28px;
  z-index: 2;
  transform: rotate(3deg);
}
.mini-book:nth-child(3) {
  background: #5e4933;
  right: 12px;
  top: 85px;
  transform: rotate(13deg);
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 26px 0;
}
.check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4a4743;
  font-size: 0.91rem;
}
.check-item:before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff0e7;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
}
.service-cta {
  background: #171717;
  color: #fff;
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.service-cta p {
  color: #bbb;
  margin: 0;
  max-width: 650px;
}
.service-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

/* about */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.value-card .service-icon {
  margin-bottom: 16px;
}
.value-card p {
  font-size: 0.86rem;
  margin: 0;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.timeline-item {
  border-top: 3px solid var(--orange);
  padding-top: 18px;
}
.timeline-item small {
  color: var(--orange);
  font-weight: 800;
}
.timeline-item p {
  font-size: 0.86rem;
}

/* legal */
.legal-wrap {
  max-width: 900px;
  margin: auto;
}
.legal-wrap h2 {
  font-size: 1.75rem;
  margin-top: 42px;
}
.legal-wrap h3 {
  font-size: 1.12rem;
  margin-top: 28px;
}
.legal-wrap p,
.legal-wrap li {
  color: #57534f;
}
.legal-wrap li {
  margin: 7px 0;
}
.legal-meta {
  background: var(--cream);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.legal-meta p {
  margin: 0;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, 0.78);
  backdrop-filter: blur(3px);
}
.modal-dialog {
  position: relative;
  z-index: 2;
  background: #fff;
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: #f1efec;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}
.modal-accent {
  width: 54px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 20px;
  border-radius: 3px;
}
.modal-copy h2 {
  font-size: 2rem;
  margin-top: 8px;
}
.modal-copy p {
  font-size: 0.9rem;
}
.modal .form-grid {
  gap: 11px;
}
.modal .form-field span {
  font-size: 0.68rem;
}
.modal .form-field input,
.modal .form-field select {
  height: 43px;
}
.modal .btn {
  min-height: 46px;
}

/* Toast */
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #171717;
  color: #fff;
  padding: 14px 18px;
  border-radius: 9px;
  z-index: 1500;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  opacity: 0;
  transition: 0.3s;
  max-width: 360px;
  font-size: 0.84rem;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.success {
  border-left: 4px solid #39a86b;
}
.toast.error {
  border-left: 4px solid #d9534f;
}

/* thank you */
.thank-you {
  min-height: 67vh;
  display: grid;
  place-items: center;
  background: var(--cream);
  padding: 80px 0;
  justify-content: center;
}

.thank-card {
  max-width: 660px;
  text-align: center;
  background: #fff;
  padding: 55px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.thank-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  background: #fff0e7;
  color: var(--orange);
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto 22px;
}

/* responsive */
@media (max-width: 1080px) {
  .nav-actions .nav-phone {
    display: none;
  }
  .main-nav {
    gap: 18px;
  }
  .nav-wrap {
    gap: 18px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .genre-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }
  .brand img {
    height: 42px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-actions {
    display: none;
  }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 25px;
    border-top: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 70px);
    overflow: auto;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a,
  .nav-dropdown__toggle {
    display: flex;
    width: 100%;
    padding: 13px 0;
    font-size: 0.95rem;
  }
  .main-nav > a:after,
  .nav-dropdown__toggle:after {
    display: none;
  }
  .nav-dropdown__toggle {
    justify-content: space-between;
  }
  .nav-dropdown__menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--orange);
    border-radius: 0;
    padding: 0 0 0 12px;
  }
  .nav-dropdown.open .nav-dropdown__menu {
    display: block;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .global-grid,
  .split,
  .portfolio-split,
  .faq-wrap,
  .bottom-lead-grid,
  .page-intro-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding: 60px 0;
  }
  .hero-copy {
    text-align: center;
    margin: auto;
  }
  .hero p {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    max-width: 650px;
    margin: auto;
  }
  .split.reverse .split-copy,
  .split.reverse .split-media {
    order: initial;
  }
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .global-copy {
    text-align: center;
  }
  .global-copy p {
    margin-inline: auto;
  }
  .global-art {
    height: auto;
    padding-bottom: 40px;
  }
  .global-art img {
    max-height: 300px !important;
  }
  .process-grid,
  .process-detailed {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:after {
    display: none;
  }
  .values-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-illustration {
    position: relative;
    top: auto;
    min-height: 220px;
  }
  .page-hero {
    padding: 75px 0;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding: 68px 0;
  }
  .section-sm {
    padding: 50px 0;
  }
  h1 {
    font-size: 2.7rem;
  }
  h2 {
    font-size: 2.15rem;
  }
  .hero-grid {
    padding: 120px 0;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust {
    gap: 11px;
    flex-wrap: wrap;
  }

  .hero-badge {
    left: 5px;
    bottom: 5px;
  }
  .media-row {
    gap: 20px 27px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:last-child {
    grid-column: 1/-1;
  }
  .service-grid,
  .genre-grid,
  .process-grid,
  .process-detailed,
  .review-grid,
  .values-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  .service-card p {
    min-height: auto;
  }
  .form-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }
  .form-field--full {
    grid-column: auto;
  }
  .service-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }
  .book-mock {
    width: 220px;
    height: 330px;
  }
  .modal-dialog {
    padding: 26px 20px;
  }
  .modal-copy h2 {
    font-size: 1.65rem;
  }
  .page-hero h1 {
    font-size: 2.55rem;
  }
  .branding-strip {
    padding: 58px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

/* Footer */
.site-footer {
  background: #121313;
  color: #fff;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 52px;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}
.site-footer h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer p {
  color: #ffffff;
  font-size: 0.83rem;
}
.site-footer a {
  display: block;
  color: #b9b8b5;
  font-size: 0.82rem;
  margin: 8px 0;
  transition: 0.2s;
}
.site-footer a:hover {
  color: var(--orange);
}
.footer-contact {
  margin-top: 18px;
}
.footer-contact a {
  font-weight: 700;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #898986;
  font-size: 0.72rem;
}

/* =========================================================
   LAPTOP VIEW
   1366px / 1440px / similar screens
========================================================= */

@media (min-width: 1200px) and (max-width: 1500px) {
  .hero-visual {
    min-height: calc(100vh - 80px);
    height: auto;
  }

  .split-media.lead-card-side {
    align-items: center;
  }

  .lead-card {
    max-width: 470px !important;
    padding: 28px 30px !important;
    border-radius: 17px !important;
    margin-top: -15px !important;
    margin-bottom: 0 !important;
  }

  /* Small orange heading */
  .lead-card .eyebrow,
  .lead-card .section-tag,
  .lead-card .subtitle,
  .lead-card .small-title {
    margin-bottom: 14px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  /* Main Form Heading */
  .lead-card h1,
  .lead-card h2 {
    font-size: 30px !important;
    line-height: 1.1 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }

  /* Description */
  .lead-card > p,
  .lead-card .lead-text,
  .lead-card .description {
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin-top: 0 !important;
    margin-bottom: 22px !important;
  }

  /* Form */
  .lead-card form {
    margin: 0 !important;
  }

  /* Two column fields */
  .lead-card .form-row {
    gap: 14px !important;
    margin-bottom: 12px !important;
  }

  /* Labels */
  .lead-card label {
    display: block;
    font-size: 12px !important;
    line-height: 1.2 !important;
    margin-bottom: 7px !important;
  }

  /* Inputs */
  .lead-card input,
  .lead-card select {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
  }

  /* Textarea */
  .lead-card textarea {
    width: 100% !important;
    height: 90px !important;
    min-height: 90px !important;
    max-height: 90px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    resize: none !important;
    box-sizing: border-box !important;
  }

  /* Field wrapper spacing */
  .lead-card .form-group,
  .lead-card .field-group,
  .lead-card .field {
    margin-bottom: 12px !important;
  }

  /* Submit Button */
  .lead-card button[type="submit"],
  .lead-card input[type="submit"],
  .lead-card .submit-btn {
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 20px !important;
    margin-top: 5px !important;
    font-size: 13px !important;
    line-height: 50px !important;
  }

  /* Privacy text */
  .lead-card .privacy-text,
  .lead-card .form-note,
  .lead-card .terms,
  .lead-card form + p {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-top: 18px !important;
    margin-bottom: 0 !important;
  }
}

/* =========================================================
   SMALL LAPTOP VIEW
   1024px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {
  .hero-visual {
    min-height: calc(100vh - 75px);
    height: auto;
  }

  .split-media.lead-card-side {
    width: 44% !important;
    padding: 20px !important;
    box-sizing: border-box;
  }

  .lead-card {
    width: 100% !important;
    max-width: 430px !important;
    padding: 24px !important;
    border-radius: 16px !important;
  }

  .lead-card h1,
  .lead-card h2 {
    font-size: 27px !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
  }

  .lead-card > p,
  .lead-card .description,
  .lead-card .lead-text {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 18px !important;
  }

  .lead-card .form-row {
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .lead-card label {
    font-size: 11px !important;
    margin-bottom: 5px !important;
  }

  .lead-card input,
  .lead-card select {
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }

  .lead-card textarea {
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
    resize: none !important;
  }

  .lead-card .form-group,
  .lead-card .field-group,
  .lead-card .field {
    margin-bottom: 10px !important;
  }

  .lead-card button[type="submit"],
  .lead-card input[type="submit"],
  .lead-card .submit-btn {
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 15px !important;
    font-size: 12px !important;
  }

  .lead-card .privacy-text,
  .lead-card .form-note,
  .lead-card .terms,
  .lead-card form + p {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-top: 14px !important;
  }
}

/* =========================================================
   SPECIAL HEIGHT FIX
   1366 x 768 / short-height laptops
========================================================= */

@media (min-width: 992px) and (max-height: 820px) {
  .hero-visual {
    min-height: calc(100vh - 70px) !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    box-sizing: border-box !important;
  }

  .lead-card {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .lead-card h1,
  .lead-card h2 {
    font-size: 28px !important;
    margin-bottom: 9px !important;
  }

  .lead-card > p,
  .lead-card .description,
  .lead-card .lead-text {
    margin-bottom: 16px !important;
  }

  .lead-card .form-row {
    margin-bottom: 9px !important;
  }

  .lead-card .form-group,
  .lead-card .field-group,
  .lead-card .field {
    margin-bottom: 9px !important;
  }

  .lead-card input,
  .lead-card select {
    height: 43px !important;
    min-height: 43px !important;
  }

  .lead-card textarea {
    height: 74px !important;
    min-height: 74px !important;
    max-height: 74px !important;
  }

  .lead-card button[type="submit"],
  .lead-card input[type="submit"],
  .lead-card .submit-btn {
    height: 46px !important;
    min-height: 46px !important;
    margin-top: 2px !important;
  }

  .lead-card .privacy-text,
  .lead-card .form-note,
  .lead-card .terms,
  .lead-card form + p {
    margin-top: 0px !important;
    margin-bottom: 0 !important;
  }
}

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

@media (max-width: 991px) {
  .hero-visual {
    min-height: auto !important;
    height: auto !important;
    padding: 60px 20px !important;
  }

  .split-media.lead-card-side {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 35px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
  }

  .lead-card {
    width: 100% !important;
    max-width: 600px !important;
    padding: 32px !important;
    margin: 0 auto !important;
    height: auto !important;
  }
}

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

@media (max-width: 767px) {
  .hero-visual {
    padding: 45px 15px !important;
  }

  .lead-card {
    max-width: 100% !important;
    padding: 25px 20px !important;
    border-radius: 14px !important;
  }

  .lead-card h1,
  .lead-card h2 {
    font-size: 27px !important;
    line-height: 1.15 !important;
  }

  /* Stack Name / Email etc */
  .lead-card .form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .lead-card input,
  .lead-card select {
    width: 100% !important;
    height: 48px !important;
  }

  .lead-card textarea {
    width: 100% !important;
    min-height: 105px !important;
    height: 105px !important;
    max-height: none !important;
  }

  .lead-card button[type="submit"],
  .lead-card input[type="submit"],
  .lead-card .submit-btn {
    width: 100% !important;
    min-height: 50px !important;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .lead-card {
    padding: 22px 16px !important;
  }

  .lead-card h1,
  .lead-card h2 {
    font-size: 24px !important;
  }

  .lead-card > p,
  .lead-card .lead-text,
  .lead-card .description {
    font-size: 13px !important;
  }
}


section.privacy-policy a {
    color: #f36b21 !important;
}


section.terms-conditions a {
    color: #f36b21 !important;
}


/* =========================================================
   SERVICES HERO - TWO COLUMN LAYOUT
========================================================= */

.services-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: 65px;
    align-items: center;
    width: 100%;
}


/* LEFT SIDE */
.services-hero-content {
    min-width: 0;
}


/* RIGHT SIDE FORM */
.services-hero-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.services-hero-form .lead-card {
    width: 100%;
    max-width: 520px;
    margin: 0;

    background: #ffffff;
    border-radius: 12px;
    padding: 30px;

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

    color: #171717;
}


/* Make all form fields fit properly */
.services-hero-form .lead-card input,
.services-hero-form .lead-card select,
.services-hero-form .lead-card textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


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

@media (max-width: 1100px) {

    .services-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
        gap: 40px;
    }

}


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

@media (max-width: 900px) {

    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .services-hero-form {
        justify-content: flex-start;
    }

    .services-hero-form .lead-card {
        max-width: 650px;
    }

}


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

@media (max-width: 600px) {

    .services-hero-grid {
        gap: 35px;
    }

    .services-hero-form .lead-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border-radius: 10px;
    }

}