@charset "UTF-8";
/* =====================================================
   HAWTHORNE PUBLISHERS — style.css
   assets/css/style.css
   All site styles — shared + page-specific
===================================================== */
/* ── DESIGN TOKENS ── */
:root {
  --c-green-dark: #22311d;
  --c-green-btn: #069e2d;
  --c-green-h: #1e9638;
  --c-purple: #6f76cc;
  --c-purple-h: #5254b0;
  --c-cream: #fdfbd4;
  --c-cream-bg: #fdf9ed;
  --c-peach-bg: #faf5ee;
  --c-black-cta: #111111;
  --c-white: #ffffff;
  --c-text: #1a1f36;
  --c-muted: #6b7280;
  --c-border: #e5e7eb;
  --ff-serif: "Playfair Display", Georgia, serif;
  --ff-sans: "Inter", sans-serif;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --sh-card: 0 1px 8px rgba(0, 0, 0, 0.06);
  --sh-hover: 0 6px 24px rgba(0, 0, 0, 0.12);
  --tr: all 0.2s ease;
}

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

body {
  font-family: var(--ff-sans);
  color: var(--c-text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ══════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════ */
/* Section titles */
.hp-section-title {
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #263346;
  text-align: center;
  margin-bottom: 10px;
}

.hp-section-sub {
  text-align: center;
  color: #263346;
  font-size: 20px;
  max-width: 80%;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* Buttons */
.hp-btn-green {
  display: inline-block;
  background: var(--c-green-btn);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.68rem 1.6rem;
  text-decoration: none;
  transition: var(--tr);
}

.hp-btn-green:hover {
  background: var(--c-green-h);
  color: #fff;
  transform: translateY(-1px);
}

.hp-btn-purple {
  display: inline-block;
  background: var(--c-purple);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.68rem 1.6rem;
  text-decoration: none;
  transition: var(--tr);
}

.hp-btn-purple:hover {
  background: var(--c-purple-h);
  color: #fff;
}

.hp-btn-outline-green {
  display: inline-block;
  background: transparent;
  color: var(--c-green-btn);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid var(--c-green-btn);
  border-radius: var(--r-sm);
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  transition: var(--tr);
}

.hp-btn-outline-green:hover {
  background: var(--c-green-btn);
  color: #fff;
}

.hp-btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--r-sm);
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  transition: var(--tr);
}

.hp-btn-outline-white:hover {
  border-color: #fff;
  color: #fff;
}

/* Tags */
.hp-tag {
  display: inline-block;
  background: #eeeffa;
  color: var(--c-purple);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  padding: 5px 20px;
}

.hp-tag-green {
  display: inline-block;
  background: #e8f5e9;
  color: var(--c-green-btn);
  font-size: 0.63rem;
  font-weight: 600;
  border-radius: 4px;
  padding: 0.15rem 0.48rem;
  margin: 0.1rem;
}

/* White card */
.hp-card-white {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  height: 100%;
  transition: var(--tr);
}

.hp-card-white:hover {
  box-shadow: var(--sh-hover);
  border-color: transparent;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar-nav {
  display: flex;
  gap: 28px;
}

.hp-nav {
  background: #1a1a1a;
  padding: 0.7rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hp-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.hp-nav-logo-icon {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.hp-nav-logo-name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.hp-nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.hp-nav .nav-link {
  color: #fdfbd4;
  font-size: 0.86rem;
  font-weight: 500;
  transition: var(--tr);
}

.hp-nav .nav-link:hover,
.hp-nav .nav-link.active {
  color: #fff;
}

.hp-nav-phone {
  color: #fdfbd4;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #fdfbd4;
  border-radius: 0;
  padding: 10px 15px;
  transition: var(--tr);
}

.hp-nav-phone:hover {
  border-color: #fff;
  color: #fff;
}

.hp-nav-call {
  background: var(--c-green-btn);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid var(--c-green-btn);
  border-radius: 0;
  padding: 10px 15px;
  text-decoration: none;
  transition: var(--tr);
}

.hp-nav-call:hover {
  background: var(--c-green-h);
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ══════════════════════════════════════
   TRUSTED BAR
══════════════════════════════════════ */
.hp-trusted {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  padding: 0.75rem 0;
}

.hp-trusted-item {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9ca3af;
  white-space: nowrap;
}

.hp-trusted-item img {
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1) opacity(0.5);
}

.hp-trusted-divider {
  color: #e5e7eb;
  font-size: 1.1rem;
  margin: 0 0.2rem;
}

/* ══════════════════════════════════════
   HERO (Homepage)
══════════════════════════════════════ */
.hp-hero {
  background: var(--c-green-dark);
  padding: 8.5rem 0 3.5rem;
  min-height: 780px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero-inner {
  position: relative;
}

.hp-hero-text {
  position: relative;
  z-index: 2;
}

.hp-hero-tags {
  color: #fdfbd4;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid #fdfbd4;
  background: rgba(253, 251, 212, 0.2);
  display: inline-flex;
  padding: 8px 18px;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.hp-hero-h1 {
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hp-hero-sub {
  color: rgba(255, 255, 255, 0.99);
  font-size: 22px;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 90%;
}

.hp-hero-checks {
  list-style: none;
  padding: 0;
  margin-bottom: 1.3rem;
}

.hp-hero-checks li {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.99);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.hp-hero-checks li i {
  color: var(--c-green-btn);
  font-size: 18px;
  flex-shrink: 0;
}

.hp-hero-btn {
  display: inline-block;
  background: var(--c-green-btn);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border: none;
  padding: 15px 40px;
  text-decoration: none;
  transition: var(--tr);
  margin-bottom: 0.9rem;
}

.hp-hero-btn:hover {
  background: var(--c-green-h);
  color: #fff;
}

.hp-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.99);
}

.hp-hero-trust img {
  height: 24px;
  vertical-align: middle;
}

.hp-hero-trust-stars {
  color: #f59e0b;
  letter-spacing: 0.03em;
}

/* Hero lead form */
.hp-hero-form {
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.hp-form-title {
  background-color: var(--c-cream);
  font-family: var(--ff-serif);
  font-size: 38px;
  padding: 32px 10px;
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 0.35rem;
}

.hp-form-body {
  padding: 35px 30px 20px;
}

.hp-form-sub {
  font-size: 23px;
  color: #263346;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.45;
  font-weight: 600;
}

.hp-form-field {
  width: 100%;
  border: 1.5px solid #d1d5db;
  padding: 12px 15px;
  font-size: 0.85rem;
  color: var(--c-text);
  background: #fff;
  margin-bottom: 15px;
  font-family: var(--ff-sans);
  transition: var(--tr);
}

.hp-form-field:focus {
  outline: none;
  border-color: var(--c-green-btn);
}

.hp-form-phone-row {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.hp-form-flag {
  border: 1.5px solid #d1d5db;
  padding: 0.55rem 0.65rem;
  font-size: 0.8rem;
  background: #fff;
  white-space: nowrap;
  cursor: pointer;
}

.hp-form-phone {
  flex: 1;
  border: 1.5px solid #d1d5db;
  padding: 12px 15px;
  font-size: 0.85rem;
  font-family: var(--ff-sans);
}

.hp-form-phone:focus {
  outline: none;
  border-color: var(--c-green-btn);
}

.hp-form-select {
  width: 100%;
  border: 1.5px solid #d1d5db;
  padding: 12px 15px;
  font-size: 0.85rem;
  color: var(--c-muted);
  background: #fff;
  margin-bottom: 0.7rem;
  font-family: var(--ff-sans);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
}

.hp-form-select:focus {
  outline: none;
  border-color: var(--c-green-btn);
}

.hp-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 30px 0;
}

.hp-form-check input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--c-green-btn);
}

.hp-form-check-label {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
}

.hp-form-check-label a {
  color: #000;
  text-decoration: underline;
}

.hp-form-submit {
  width: 100%;
  background: #6f76cc;
  color: #fff;
  border: none;
  padding: 20px 40px;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ff-sans);
  transition: var(--tr);
}

.hp-form-submit:hover {
  background: var(--c-purple-h);
}

.service-hero .hp-hero-text {
  padding-right: 10%;
}
.service-hero .hp-hero-h1 {
  color: #fff;
  font-family: Alyamama;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1; /* 115.625% */
  padding-right: 15%;
  margin-top: 15px;
}
.service-hero .hp-hero-sub {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 25px;
}
.service-hero .hp-hero-checks.v2 {
  display: flex;
  flex-wrap: wrap;
}
.service-hero .hp-hero-checks.v2 li {
  width: 50%;
}
.service-hero .hp-hero-checks li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3; /* 262.5% */
}
.service-hero .hp-hero-trust {
  font-weight: 700;
  font-size: 16px;
}
.service-hero .hp-form-title {
  display: flex;
  height: 90px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #fdfbd4;
  color: #2b2623;
  text-align: center;
  font-family: Alyamama;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.service-hero .hp-form-body {
  padding: 20px 25px;
}
.service-hero .hp-form-body .hp-form-sub {
  color: #263346;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
}
.service-hero .hp-form-body .hp-form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}
.service-hero .hp-form-body .hp-form-footer .hp-form-check {
  margin: 0;
}
.service-hero .hp-form-body .hp-form-footer .hp-form-check .hp-form-check-label {
  font-size: 13px;
}
.service-hero .hp-form-body .hp-form-footer .hp-form-submit {
  background: #e84a49;
  display: flex;
  height: 60px;
  padding: 24px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #fdfdfd;
  font-family: "Wix Madefor Display";
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
}
.service-hero .hp-form-body .hp-form-footer .hp-form-submit:hover {
  background: #ad2f2f;
}
.service-hero .hp-form-body .hp-form-footer .hp-form-notes {
  color: #000;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.03rem;
  margin-top: -5px;
}

.trustedBySection {
  padding: 25px 0;
}
@media (max-width: 767px) {
  .trustedBySection {
    padding: 25px 0;
  }
}
.trustedBySection .trusted-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 31px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .trustedBySection .trusted-logos {
    justify-content: center;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .trustedBySection .trusted-logos {
    gap: 20px;
  }
}
.trustedBySection .trusted-logos li {
  flex-shrink: 0;
  transition: all 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite;
}
.trustedBySection .trusted-logos li:nth-child(1) {
  animation-delay: 0s;
}
.trustedBySection .trusted-logos li:nth-child(2) {
  animation-delay: 0.5s;
}
.trustedBySection .trusted-logos li:nth-child(3) {
  animation-delay: 1s;
}
.trustedBySection .trusted-logos li:nth-child(4) {
  animation-delay: 1.5s;
}
.trustedBySection .trusted-logos li:nth-child(5) {
  animation-delay: 2s;
}
.trustedBySection .trusted-logos li:nth-child(6) {
  animation-delay: 2.5s;
}
.trustedBySection .trusted-logos li img {
  max-width: 120px;
  height: auto;
  display: block;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .trustedBySection .trusted-logos li img {
    max-width: 100px;
  }
}
@media (max-width: 575px) {
  .trustedBySection .trusted-logos li img {
    max-width: 80px;
  }
}
.trustedBySection .trusted-logos li:hover {
  transform: translateY(-5px) scale(1.05);
}
.trustedBySection .trusted-logos li:hover img {
  filter: grayscale(0%) opacity(1);
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* ══════════════════════════════════════
   BENEFITS
══════════════════════════════════════ */
.hp-benefits {
  background: #fff;
  padding: 3.5rem 0 4rem;
}

.hp-benefit-card {
  background-color: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.3rem;
  height: 100%;
  transition: var(--tr);
}

.hp-benefit-card:hover {
  box-shadow: var(--sh-hover);
  background: var(--c-green-btn);
  border-color: var(--c-green-btn);
  border-color: transparent;
}

.hp-benefit-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--c-green-btn);
}

.hp-benefit-card:hover .hp-benefit-icon svg path[stroke] {
  stroke: #fff;
}
.hp-benefit-card:hover .hp-benefit-icon svg path[fill] {
  fill: #fff;
}

.hp-benefit-name {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.45rem;
}

.hp-benefit-card:hover .hp-benefit-name {
  color: #fff;
}

.hp-benefit-text {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.6;
}

.hp-benefit-card:hover .hp-benefit-text {
  color: rgba(255, 255, 255, 0.88);
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.hp-services {
  background: #fdfbd4;
  padding: 75px 0;
}

.hp-svc-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-card);
  transition: var(--tr);
  padding: 0 25px 25px;
  position: relative;
  margin-top: 75px;
}

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

.hp-svc-img-wrap {
  height: 228px;
  transform: translateY(-75px);
  margin-bottom: -75px;
}
.hp-svc-img-wrap img {
  width: 100%;
  height: 100%;
}

.hp-svc-img {
  margin: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}

.hp-svc-card:hover .hp-svc-img {
  transform: scale(1.04);
}

.hp-svc-body {
  padding: 1.1rem 1.1rem 1.3rem;
}

.hp-svc-title {
  font-family: var(--ff-serif);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #263346;
  margin-bottom: 15px;
}

.hp-svc-text {
  font-size: 17px;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hp-svc-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--c-purple);
  color: #fff;
  border: none;
  padding: 15px 0.5rem;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--ff-sans);
  transition: var(--tr);
}

.hp-svc-btn:hover {
  background: var(--c-purple-h);
  color: #fff;
}

/* ══════════════════════════════════════
   PUBLISH CTA BANNER
══════════════════════════════════════ */
.hp-pub-cta {
  background: var(--c-green-dark);
  padding: 3rem 0;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.hp-pub-cta-h {
  font-family: var(--ff-serif);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 15px;
}

.hp-pub-cta-text {
  color: #ebe2d9;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.hp-pub-btn-g {
  background: var(--c-green-btn);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  padding: 15px 40px;
  text-decoration: none;
  transition: var(--tr);
}

.hp-pub-btn-g:hover {
  background: var(--c-green-h);
  color: #fff;
}

.hp-pub-btn-o {
  background: transparent;
  color: #fff;
  border: 2px solid rgb(255, 255, 255);
  border-radius: var(--r-sm);
  padding: 15px 20px;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--tr);
}

.hp-pub-btn-o:hover {
  border-color: #fff;
  color: #fff;
}

.hp-pub-phone {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 160% */
  padding-top: 20px;
}

.hp-pub-phone a {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
  text-decoration: none;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.our-process-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .our-process-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .our-process-section {
    padding: 60px 0;
  }
}
.our-process-section .process-cards-wrapper {
  display: flex;
  gap: 24px;
  position: relative;
}
@media (max-width: 1200px) {
  .our-process-section .process-cards-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .our-process-section .process-cards-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.our-process-section .process-card {
  background: #ffffff;
  border-radius: 20px;
  width: 195.5px;
  min-height: 326px;
  position: relative;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, background 0.35s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .our-process-section .process-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.our-process-section .process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #069e2d;
  border-radius: 20px;
  pointer-events: none;
  transition: border-color 0.35s ease;
  z-index: 1;
}
.our-process-section .process-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 24px 40px -8px rgba(6, 158, 45, 0.35), 0 8px 16px -4px rgba(6, 158, 45, 0.18);
  background: #069e2d;
}
.our-process-section .process-card:hover::before {
  border-color: #047a23;
}
.our-process-section .process-card:hover .card-number {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.our-process-section .process-card:hover .card-title,
.our-process-section .process-card:hover .card-description,
.our-process-section .process-card:hover .card-duration {
  color: #ffffff;
}
.our-process-section .process-card:hover .arrow-connector svg path {
  fill: #ffffff;
}
.our-process-section .process-card .card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.our-process-section .process-card .card-tags .card-tag {
  background: rgba(6, 158, 45, 0.1);
  color: #069e2d;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 12px;
  transition: background 0.35s ease;
}
.our-process-section .card-inner {
  padding: 50px 22px 50px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.our-process-section .card-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0s;
  pointer-events: none;
  z-index: 2;
}
.our-process-section .process-card:hover .card-inner::after {
  left: 130%;
  transition: left 0.55s ease;
}
.our-process-section .process-card:hover .card-tags .card-tag {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.our-process-section .card-content {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.our-process-section .card-number {
  font-size: 68px;
  font-weight: 700;
  color: #069e2d;
  line-height: 42px;
  transition: all 0.3s ease;
}
.our-process-section .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  line-height: 42px;
  transition: color 0.3s ease;
  margin-top: 20px;
}
.our-process-section .card-description {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 24px;
  transition: color 0.3s ease;
}
.our-process-section .card-duration {
  font-size: 14px;
  font-weight: 600;
  color: #6f76cc;
  line-height: 19px;
  transition: color 0.3s ease;
}
.our-process-section .arrow-connector {
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  animation: arrowPulse 1.8s ease-in-out infinite;
}
@media (max-width: 768px) {
  .our-process-section .arrow-connector {
    display: none;
  }
}
.our-process-section .arrow-connector svg {
  width: 46px;
  height: 41px;
  display: block;
}
.our-process-section .arrow-connector svg path {
  transition: fill 0.35s ease;
}
@keyframes arrowPulse {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) translateX(4px);
    opacity: 0.7;
  }
}
.our-process-section .process-card:focus-visible {
  outline: 3px solid #069e2d;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .our-process-section * {
    animation: none !important;
    transition: none !important;
  }
}

/* ══════════════════════════════════════
   MILESTONE / FOUNDER
══════════════════════════════════════ */
.hp-milestone {
  background: #fff;
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--c-border);
}

.hp-milestone-eyebrow {
  color: #069e2d;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 175% */
  margin-bottom: 40px;
}

.hp-milestone-h {
  color: #263346;
  font-family: Alyamama;
  font-size: 78px;
  font-style: normal;
  font-weight: 700;
  line-height: 86px; /* 110.256% */
  margin-bottom: 20px;
}

.hp-milestone-p {
  color: #263346;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 38px; /* 190% */
  margin-bottom: 10px;
}

.hp-milestone-p strong {
  color: var(--c-text);
}

.hp-milestone-sig {
  display: block;
  margin: 40px 0;
}

.hp-milestone-name {
  color: #263346;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 175% */
}

.hp-milestone-role {
  color: #263346;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.hp-milestone-img {
  display: flex;
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════
   BESTSELLERS
══════════════════════════════════════ */
.hp-books-section {
  background: var(--c-green-dark);
  padding: 3.5rem 0 2.5rem;
}

.hp-genre-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hp-genre-pill {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 100px;
  border: 1px solid #22311d;
  background: #fdfbd4;
  padding: 10px 18px;
  color: #22311d;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1; /* 242.857% */
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--ff-sans);
}

.hp-genre-pill:hover,
.hp-genre-pill.active {
  background: var(--c-green-btn);
  border-color: var(--c-green-btn);
  color: #fff;
}

.hp-books-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  margin-bottom: 1.3rem;
}

.hp-book-tile {
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  transition: var(--tr);
}

.hp-book-tile:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.hp-book-tile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hp-books-btns {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.6rem;
}

.hp-books-btn-g {
  background: var(--c-green-btn);
  color: #fff;
  border: 1.5px solid rgb(255, 255, 255);
  padding: 15px 40px;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--tr);
}

.hp-books-btn-g:hover {
  background: var(--c-green-h);
  color: #fff;
}

.hp-books-btn-o {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgb(255, 255, 255);
  padding: 15px 40px;
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  transition: var(--tr);
}

.hp-books-btn-o:hover {
  border-color: #fff;
  color: #fff;
}

.hp-books-expert {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 160% */
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
}

.hp-books-expert a {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
  text-decoration: none;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.hp-creative {
  background: var(--c-peach-bg);
  padding: 3.5rem 0 2rem;
}

.hp-testi-row {
  position: relative;
}
.hp-testi-row::after {
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, var(--c-peach-bg) 0%, var(--c-peach-bg) 40%, rgba(250, 245, 238, 0) 100%);
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(180deg);
}

.hp-testi-card {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.3rem;
  height: 100%;
  transition: var(--tr);
}

.hp-testi-card:hover {
  box-shadow: var(--sh-card);
}

.hp-testi-text {
  color: var(--reedsy-com-mirage, var(--color-azure-15, #1d2730));
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
  font-size: var(--line-height-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--item-spacing-s, 24px); /* 150% */
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-testi-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hp-testi-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.77rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.hp-testi-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}

.hp-testi-name {
  color: var(--reedsy-com-mirage, var(--color-azure-15, #1d2730));
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
  font-size: var(--line-height-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--item-spacing-s, 24px); /* 150% */
}

.hp-testi-date {
  color: var(--reedsy-com-nevada, var(--color-azure-45, #64727f));
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
  font-size: var(--line-height-16, 16px);
  font-style: normal;
  font-weight: var(--font-weight-400, 400);
  line-height: var(--item-spacing-s, 24px); /* 150% */
}

.hp-testi-stars {
  color: #a6634d;
  font-size: 16px;
  margin-left: auto;
}

.hp-read-more {
  display: block;
  margin: 1.5rem auto 0;
  background: var(--c-text);
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.hp-read-more:hover {
  background: #333;
  color: #fff;
}

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.hp-team {
  background: var(--c-peach-bg);
  padding: 3.5rem 0 4rem;
}

.hp-team-card {
  border-radius: 20px;
  border: 1px solid rgba(111, 118, 204, 0.3);
  background: #fff;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.15);
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: var(--tr);
}

.hp-team-card:hover {
  box-shadow: var(--sh-hover);
  border-color: transparent;
}

.hp-team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto 34px;
}

.hp-team-name {
  color: #263346;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Alyamama;
  font-size: 30px;
  font-style: normal;
  font-weight: var(--font-weight-700, 700);
  line-height: 1.2;
}

.hp-team-role {
  color: #263346;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 228.571% */
  text-transform: uppercase;
  padding-bottom: 20px;
}

.hp-team-bio {
  color: #263346;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  padding-bottom: 23px;
}

/* ══════════════════════════════════════
   IDEA CTA (BLACK)
══════════════════════════════════════ */
.hp-idea {
  background: var(--c-black-cta);
  padding: 70px 0;
  position: relative;
  text-align: center;
}

.hp-idea-eyebrow {
  color: #fff;
  text-align: center;
  font-family: "SF Pro Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 160% */
  margin-bottom: 30px;
}

.hp-idea-h {
  color: #faf0e8;
  text-align: center;
  font-family: Alyamama;
  font-size: 61px;
  font-style: normal;
  font-weight: 700;
  line-height: 75px; /* 122.951% */
  margin-bottom: 30px;
}

.hp-idea-btn-s {
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 0 13px 17.3px 0 rgba(0, 0, 0, 0.2);
  padding: 15px 40px;
  color: #1a936f;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  transition: var(--tr);
}

.hp-idea-btn-s:hover {
  background: var(--c-green-btn);
  color: #fff;
}

.hp-idea-btn-c {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding: 15px 20px;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--tr);
  line-height: 1;
}

.hp-idea-btn-c:hover {
  border-color: #fff;
  color: #fff;
}

.hp-idea-phone {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1; /* 160% */
  margin-top: 20px;
}

.hp-idea-phone a {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
  text-decoration: none;
}

.hp-idea-book-l {
  position: absolute;
  left: 1%;
  top: -23%;
  height: 75%;
  transform-origin: bottom center;
  pointer-events: none;
}

.hp-idea-book-r {
  position: absolute;
  right: -2%;
  bottom: 0;
  height: 110%;
  pointer-events: none;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.hp-faq {
  background: #fff;
  padding: 3.5rem 0 4rem;
}

.hp-faq-h {
  color: #000;
  font-family: Alyamama;
  font-size: 66px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1; /* 106.061% */
}

.hp-faq-sub {
  color: #111;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4; /* 144.444% */
  margin-bottom: 1.6rem;
}

.hp-faq .accordion-item {
  border: none;
  border-bottom: 1px solid var(--c-border);
}
.hp-faq .accordion-item.isOpen {
  border: none;
}

.hp-faq .accordion-item:first-child {
  border-top: 1px solid var(--c-border);
}

.hp-faq .accordion-button {
  color: #333;
  font-family: Alyamama;
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  box-shadow: none;
}

.hp-faq .accordion-button:not(.collapsed) {
  border: none;
  color: var(--c-purple);
  border-radius: 10px;
  border: 1px solid #efefef;
  background: #fff;
  box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.15);
}

.hp-faq .accordion-body {
  color: #666;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4; /* 170% */
}

.hp-faq .faq-link {
  color: #6f76cc;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.hp-faq .faq-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0.5rem;
}

.hp-faq .faq-list li {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  color: #666;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.hp-faq .faq-list li::before {
  content: "•";
  color: var(--c-purple);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   EXPERT INSIGHTS
══════════════════════════════════════ */
.hp-insights {
  background: #fff;
  padding: 3rem 0 4.5rem;
}

.hp-insight-card {
  background: var(--White, #fff);
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  height: 100%;
  padding: 24px 24px 30px;
  transition: var(--tr);
}

.hp-insight-card:hover {
  box-shadow: var(--sh-hover);
  border-color: transparent;
  transform: translateY(-3px);
}

.hp-insight-img-wrap {
  height: 240px;
  overflow: hidden;
}

.hp-insight-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease;
}

.hp-insight-card:hover .hp-insight-img {
  transform: scale(1.04);
}

.hp-insight-body {
  padding-top: 30px;
}

.hp-insight-cat {
  color: #6f76cc;
  text-align: center;
  font-family: "SF Pro Display";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; /* 158.333% */
  text-transform: uppercase;
  background: rgba(111, 118, 204, 0.1);
  padding: 5px 10px;
}

.hp-insight-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  margin-top: 15px;
}

.hp-insight-title {
  color: var(--Gray-900, #101828);
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33; /* 133.333% */
}

.hp-insight-title a {
  color: inherit;
  text-decoration: none;
}

.hp-insight-title a:hover {
  color: var(--c-purple);
}

.hp-insight-arrow {
  color: var(--c-text);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hp-insight-excerpt {
  color: var(--Gray-500, #667085);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 30px;
}

.hp-insight-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hp-insight-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hp-insight-a-name {
  color: var(--Gray-900, #101828);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.hp-insight-a-date {
  color: var(--Gray-500, #667085);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.hp-footer {
  background: #171717;
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 1.5rem;
}

.hp-footer-address {
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 5px;
}
.hp-footer-address a {
  font-size: 15px;
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: var(--tr);
}
.hp-footer-address a:hover {
  color: var(--c-green-btn);
}
.hp-footer-tel, .hp-footer-mail {
  font-size: 15px;
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  transition: var(--tr);
}
.hp-footer-tel:hover, .hp-footer-mail:hover {
  color: var(--c-green-btn);
}

.hp-footer-col-h {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.9rem;
  font-family: "Alyamama", serif;
}

.hp-footer-link {
  display: block;
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--tr);
  line-height: 1.1;
}

.hp-footer-link:hover {
  color: rgba(255, 255, 255, 0.7607843137);
}

.hp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hp-footer-copy {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
}

.hp-footer-btm-links a {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  margin-left: 1rem;
  transition: var(--tr);
}

.hp-footer-btm-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.socialLink {
  display: flex;
  align-content: center;
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  padding-top: 60px;
}
.socialLink li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #f45a28;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  transition: var(--tr);
}
.socialLink li a:hover {
  background: #f45a28;
  border-color: #f45a28;
}

/* ══════════════════════════════════════
   INNER PAGE HERO BANNER
══════════════════════════════════════ */
.hp-page-hero {
  background: var(--c-green-dark);
  padding: 8.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hp-page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green-btn);
  margin-bottom: 0.6rem;
}

.hp-page-hero-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.hp-page-hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 520px;
}

.hp-page-hero-bg-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.07);
  right: -80px;
  top: -80px;
  pointer-events: none;
}

/* Breadcrumb */
.hp-breadcrumb {
  background: #f9fafb;
  border-bottom: 1px solid var(--c-border);
  padding: 0.65rem 0;
}

.hp-breadcrumb .breadcrumb {
  margin: 0;
  font-size: 0.8rem;
}

.hp-breadcrumb .breadcrumb-item a {
  color: var(--c-green-btn);
  text-decoration: none;
}

.hp-breadcrumb .breadcrumb-item.active {
  color: var(--c-muted);
}

.hp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--c-border);
}

/* Services detail cards */
.svc-detail-card {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--tr);
}

.svc-detail-card:hover {
  box-shadow: var(--sh-hover);
  border-color: transparent;
  transform: translateY(-3px);
}

.svc-detail-img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.svc-detail-body {
  padding: 1.5rem;
}

.svc-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--c-green-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.svc-detail-icon i {
  color: var(--c-cream);
  font-size: 1.1rem;
}

.svc-detail-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.svc-detail-text {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.svc-include-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
}

.svc-include-list li {
  font-size: 0.82rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.3rem;
}

.svc-include-list li i {
  color: var(--c-green-btn);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Pricing cards */
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: var(--tr);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--sh-hover);
}

.pricing-card.featured {
  background: var(--c-green-dark);
  border-color: var(--c-green-dark);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-green-btn);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.2rem 0.85rem;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-tier {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-price {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}

.pricing-card.featured .pricing-price {
  color: #fff;
}

.pricing-period {
  font-size: 0.78rem;
  color: var(--c-muted);
  margin-bottom: 1.2rem;
}

.pricing-card.featured .pricing-period {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  text-align: left;
}

.pricing-list li {
  font-size: 0.84rem;
  color: var(--c-muted);
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  align-items: flex-start;
}

.pricing-list li i {
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card.featured .pricing-list li {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-list li.disabled {
  opacity: 0.35;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .hp-hero-man {
    display: none;
  }
  .hp-hero-text {
    padding-left: 0;
  }
  .hp-books-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .hp-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .hp-books-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hp-idea-book-l,
  .hp-idea-book-r {
    display: none;
  }
  .hp-hero-books-col {
    display: none !important;
  }
  .hp-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =====================================================
   HAWTHORNE PUBLISHERS — packages.css
   Page: Packages (packages.php)
===================================================== */
/* ── HERO ── */
.pkg-hero {
  background: url("../images/pkg-banner.png") center/cover no-repeat;
  padding: 106px 0px;
  text-align: center;
}

.pkg-hero-badge {
  display: inline-block;
  border: 1px solid rgba(40, 167, 69, 0.45);
  background: rgba(40, 167, 69, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: SF Pro Display;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.28rem 0.9rem;
  margin-bottom: 0.9rem;
}

.pkg-hero-h {
  font-family: var(--ff-serif);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 56px;
  /* max-width: 700px; */
  margin: 0 auto 1rem;
}

.pkg-hero-sub {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  max-width: 900px;
  margin: 0 auto;
}

/* ── PACKAGES SECTION (cream bg) ── */
.pkg-section {
  background: #fdfbd4;
  padding: 4rem 0 5rem;
}

.pkg-section-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Package Cards */
.pkg-card {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.3rem 1.8rem;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--tr);
}

.pkg-card:hover {
  box-shadow: var(--sh-hover);
}

.pkg-card.is-featured {
  border-color: var(--c-orange, #e07a30);
  border-width: 2px;
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-text);
  color: var(--c-cream);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.22rem 0.9rem;
  white-space: nowrap;
}

.pkg-tier {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e07a30;
  margin-bottom: 0.3rem;
}

.pkg-name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.pkg-tagline {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  min-height: 50px;
}

.pkg-price {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}

.pkg-price-from {
  font-size: 0.75rem;
  color: var(--c-muted);
  font-weight: 400;
  font-family: var(--ff-sans);
  margin-left: 0.15rem;
}

.pkg-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 1.1rem 0;
}

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.pkg-features li {
  font-size: 0.82rem;
  color: var(--c-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.42rem;
  line-height: 1.4;
}

.pkg-features li i {
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-features li.feat-on i {
  color: var(--c-green-btn);
}

.pkg-features li.feat-off {
  opacity: 0.45;
}

.pkg-features li.feat-bold {
  color: var(--c-text);
  font-weight: 600;
}

.pkg-features li.feat-bold i {
  color: var(--c-green-btn);
}

.pkg-cta-btn {
  display: block;
  text-align: center;
  border: 1.5px solid var(--c-text);
  color: var(--c-text);
  background: transparent;
  border-radius: var(--r-sm);
  padding: 0.65rem;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: var(--tr);
}

.pkg-cta-btn:hover {
  background: var(--c-text);
  color: #fff;
}

.pkg-cta-btn.is-green {
  background: var(--c-green-btn);
  border-color: var(--c-green-btn);
  color: #fff;
}

.pkg-cta-btn.is-green:hover {
  background: var(--c-green-h);
  border-color: var(--c-green-h);
}

/* ── PROCESS (circle style, dark bg) ── */
.pkg-process {
  background: var(--c-green-dark);
  padding: 4rem 0;
}

.pkg-process-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.6rem;
}

.pkg-process-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.pkg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.pkg-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-cream);
  border: 2px solid rgba(40, 167, 69, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-green-dark);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.pkg-step-line {
  position: absolute;
  top: 25px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  border-top: 2px dashed rgba(40, 167, 69, 0.35);
  transform: scaleX(0);
  transform-origin: left center;
}

@keyframes lineDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__lineDraw {
  animation-name: lineDraw;
  animation-duration: 0.45s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.pkg-step-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.pkg-step-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.pkg-step-dur {
  font-size: 0.7rem;
  color: var(--c-green-btn);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* ── BENEFITS ── */
.pkg-benefits {
  background: #fff;
  padding: 4rem 0;
}

/* =====================================================
   HAWTHORNE PUBLISHERS — ebook.css
   Page: Ebook Ghostwriting (ebook-ghostwriting.php)
===================================================== */
/* ── HERO: split — left text, center form, right books ── */
.ebook-hero {
  background: linear-gradient(rgba(20, 35, 18, 0.88), rgba(20, 35, 18, 0.88)), url("../images/ghost.png") center/cover no-repeat;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.ebook-hero-inner {
  padding: 3.5rem 0 0;
  min-height: 580px;
  position: relative;
}

.ebook-hero-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.25rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.9rem;
}

.ebook-hero-h {
  font-family: var(--ff-serif);
  font-size: 64px;
  font-weight: bold;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 0.9rem;
}

.ebook-hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 420px;
}

.ebook-hero-checks {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 0.5rem;
  margin-bottom: 1.2rem;
}

.ebook-hero-checks li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ebook-hero-checks li i {
  color: var(--c-green-btn);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.ebook-hero-trust {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.8rem;
}

.ebook-hero-trust-stars {
  color: #f59e0b;
}

/* Right: quote form card */
.ebook-hero-form-card {
  background: var(--c-cream);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.ebook-form-title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 0.3rem;
}

.ebook-form-sub {
  font-size: 0.78rem;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.ebook-form-note {
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: 0.6rem;
}

.ebook-form-submit {
  width: 100%;
  background: #e05a1e;
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.82rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ff-sans);
  transition: var(--tr);
}

.ebook-form-submit:hover {
  background: #c94e17;
}

/* Far-right book covers column */
.ebook-hero-books-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 10px;
  overflow: hidden;
  max-height: 580px;
}

.ebook-hero-book-thumb {
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.ebook-hero-book-thumb img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ── GENRES SECTION ── */
.ebook-genres {
  background: #fff;
  padding: 3rem 0 2rem;
}
.ebook-genres .hp-section-title {
  margin-bottom: 30px;
}

.ebook-genre-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ebook-genre-pill {
  border-radius: 100px;
  border: 1px solid #22311d;
  background: #fdfbd4;
  display: flex;
  padding: 6px 18px;
  align-items: center;
  gap: 10px;
  color: #22311d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.ebook-genre-pill:hover {
  border-color: var(--c-green-btn);
  color: var(--c-green-btn);
}

/* ── SHORT-FORM SECTION (cream bg) ── */
.ebook-shortform {
  background: #fdfbd4;
  padding: 80px 0;
}

.ebook-shortform-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ebook-shortform-eyebrow {
  color: #069e2d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.ebook-shortform-h {
  color: #263346;
  font-family: Alyamama;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.05;
}

.ebook-shortform-p {
  color: #263346;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.ebook-shortform-checks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ebook-shortform-checks li {
  color: #263346;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ebook-shortform-checks li svg {
  flex-shrink: 0;
  width: 21.5px;
  height: 21.5px;
  margin-top: 2px;
}

.ebook-shortform-img {
  width: 100%;
  border-radius: var(--r-md);
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* ── FOUR WAYS SECTION ── */
.ebook-four-ways {
  background: #fff;
  padding: 4rem 0;
}

.ebook-four-ways-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 0.5rem;
}

.ebook-four-ways-sub {
  text-align: center;
  color: var(--c-muted);
  font-size: 0.88rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.ebook-way-card {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  height: 100%;
  transition: var(--tr);
}

.ebook-way-card:hover {
  box-shadow: var(--sh-hover);
  border-color: transparent;
}

.ebook-way-num {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-green-btn);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.ebook-way-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

.ebook-way-text {
  font-size: 0.83rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 0.7rem;
}

.ebook-way-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-green-btn);
  text-decoration: none;
  transition: var(--tr);
}

.ebook-way-link:hover {
  color: var(--c-green-h);
}

/* ── PROCESS (circle style, dark bg) ── */
.ebook-process {
  background: var(--c-green-dark);
  padding: 4rem 0;
}

.ebook-process-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.ebook-process-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.ebook-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.ebook-step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-cream);
  border: 2px solid rgba(40, 167, 69, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-green-dark);
  margin-bottom: 0.8rem;
  z-index: 1;
  position: relative;
}

.ebook-step-line {
  position: absolute;
  top: 25px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  border-top: 2px dashed rgba(40, 167, 69, 0.35);
}

.ebook-step-title {
  font-size: 0.87rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.ebook-step-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.ebook-step-dur {
  font-size: 0.7rem;
  color: var(--c-green-btn);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* ── EVERYTHING TO SHIP ── */
.ebook-ship {
  background: #fff;
  padding: 4rem 0;
}

.ebook-ship-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 0.5rem;
}

.ebook-ship-sub {
  text-align: center;
  color: var(--c-muted);
  font-size: 0.88rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.ebook-ship-card {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  height: 100%;
  transition: var(--tr);
}

.ebook-ship-card.is-active {
  background: var(--c-green-btn);
  border-color: var(--c-green-btn);
}

.ebook-ship-icon {
  font-size: 1rem;
  color: var(--c-green-btn);
  margin-bottom: 0.7rem;
}

.ebook-ship-card.is-active .ebook-ship-icon {
  color: #fff;
}

.ebook-ship-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

.ebook-ship-card.is-active .ebook-ship-title {
  color: #fff;
}

.ebook-ship-text {
  font-size: 0.83rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.ebook-ship-card.is-active .ebook-ship-text {
  color: rgba(255, 255, 255, 0.85);
}

/* ── RECENT WORK (small books strip, dark bg) ── */
.ebook-recent-work {
  background: var(--c-green-dark);
  padding: 3rem 0 2.5rem;
}

.ebook-recent-books-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  scrollbar-width: thin;
}

.ebook-recent-books-row::-webkit-scrollbar {
  height: 3px;
}

.ebook-recent-books-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.ebook-recent-book {
  flex-shrink: 0;
  width: 90px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr);
}

.ebook-recent-book:hover {
  transform: translateY(-4px);
}

.ebook-recent-book img {
  width: 100%;
  display: block;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.ebook-recent-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.ebook-recent-expert {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.ebook-recent-expert a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.rp-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.rp-overlay.rp-open {
  opacity: 1;
  visibility: visible;
}

.rp-modal {
  display: flex;
  width: 960px;
  max-width: 96vw;
  max-height: 92vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s ease;
}
.rp-open .rp-modal {
  transform: translateY(0) scale(1);
}

.rp-left {
  flex: 0 0 42%;
  background: #0e1f35;
  color: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.rp-badge {
  display: inline-block;
  background: rgba(255, 140, 0, 0.18);
  color: #ff9a00;
  border: 1px solid rgba(255, 154, 0, 0.45);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 5px 14px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

.rp-heading {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.rp-heading span {
  color: #ff9a00;
}

.rp-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}

.rp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}
.rp-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.rp-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rp-trust-img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.rp-trust-stars {
  color: #00b67a;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.rp-trust-score {
  font-size: 0.88rem;
  color: #fff;
}

.rp-trust-line {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  width: 100%;
}

.rp-right {
  flex: 1;
  background: #fff;
  padding: 36px 40px;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.rp-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.18s;
}
.rp-close:hover {
  color: #222;
}

.rp-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ff9a00;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.rp-form-h {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0e1f35;
  margin: 0 0 6px;
  line-height: 1.25;
}

.rp-form-sub {
  font-size: 0.84rem;
  color: #666;
  margin: 0 0 20px;
  line-height: 1.5;
}

.rp-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.rp-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #222;
  background: #fafafa;
  outline: none;
  transition: border-color 0.18s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.rp-input:focus {
  border-color: #5b6ae0;
  background: #fff;
}

.rp-select {
  cursor: pointer;
  color: #888;
}
.rp-select option {
  color: #222;
}

.rp-phone-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.rp-flag {
  flex-shrink: 0;
  padding: 0 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  font-size: 0.88rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  cursor: pointer;
}

.rp-phone {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #222;
  background: #fafafa;
  outline: none;
  transition: border-color 0.18s;
}
.rp-phone:focus {
  border-color: #5b6ae0;
  background: #fff;
}

.rp-check-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.rp-check-row label {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.45;
  cursor: pointer;
}
.rp-check-row label a {
  color: #5b6ae0;
  text-decoration: none;
}
.rp-check-row label a:hover {
  text-decoration: underline;
}

.rp-checkbox {
  flex-shrink: 0;
  margin-top: 3px;
  width: 15px;
  height: 15px;
  accent-color: #5b6ae0;
  cursor: pointer;
}

.rp-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #5b6ae0 0%, #3a47c5 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.rp-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .rp-modal {
    flex-direction: column;
    max-height: 94vh;
    border-radius: 12px;
  }
  .rp-left {
    flex: none;
    padding: 28px 24px 20px;
    gap: 14px;
  }
  .rp-heading {
    font-size: 1.25rem;
  }
  .rp-desc {
    font-size: 0.83rem;
  }
  .rp-trust {
    display: none;
  }
  .rp-right {
    padding: 24px 24px 28px;
    position: unset;
  }
  .rp-form-h {
    font-size: 1.15rem;
  }
}
@media (max-width: 480px) {
  .rp-overlay {
    padding: 0px;
  }
  .rp-left {
    padding: 20px 16px;
  }
  .rp-right {
    padding: 20px 16px 24px;
  }
  .rp-heading {
    font-size: 1.1rem;
  }
  .rp-list {
    display: none;
  }
}
.hp-form-notes {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 10px;
}

.service-hero .hp-field-error {
  padding: 3px 0 5px;
}
.service-hero .hp-field-error#af_accepts_err {
  display: block;
  margin-top: -20px;
  margin-bottom: 10px;
}
.service-hero .hp-form-check {
  margin: 15px 0;
}
.service-hero .hp-form-submit {
  font-size: 22px;
  line-height: 1;
  background: #e84a49;
  padding: 22px 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-hero .hp-form-submit:hover {
  background: #bb3b3b;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(61, 61, 61, 0.38);
}

#roadmapPopup .rp-field-wrap {
  margin-bottom: 0 !important;
}/*# sourceMappingURL=style.css.map */