/* Custom styles */

:root {
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-badge: "Plus Jakarta Sans", sans-serif;
  --color-navy: #001962;
  --color-navy-soft: #2D4484;
  --color-red: #E60000;
  --color-red-dark: #A20A21;
  --color-red-gradient: linear-gradient(90deg, #E60000 0%, #A20A21 100%);
  --color-red-gradient-hover: linear-gradient(to right, #ff1a1a, #8a081c);
  --color-blue-gradient: linear-gradient(to left, #001962, #2D4484);
  --color-blue-gradient-hover: linear-gradient(to left, #001962, #1a2f6e);
  --color-red-hover: #A20A21;
  --color-text: #4a5568;
  --color-muted: #475569;
  --color-bg: #faf9fc;
  --title-size: clamp(32px, 3.2vw, 50px);
}

html {
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  max-width: 100%;
}

/* Soft circular glow -” top-left over header + banner */
body::before {
  content: "";
  position: absolute;
  width: 383px;
  height: 383px;
  left: -269px;
  top: -258px;
  background: linear-gradient(94.79deg, rgba(255, 0, 43, 0.5) -2.34%, rgba(0, 25, 98, 0.5) 109.02%);
  filter: blur(150px);
  pointer-events: none;
  z-index: 20;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
  background: transparent;
}

/* Headings - Manrope */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
}



/* Paragraphs - Inter */
p,
.lead {
  font-family: var(--font-body);
}

/* Badges above headings - Plus Jakarta Sans */
.section-badge,
.badge-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-badge);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  color: var(--color-navy);
}

.section-badge::before,
.badge-label::before {
  content: "";
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 10px;
  background: var(--color-blue-gradient);
  flex-shrink: 0;
}

.section-badge-text {
  background-image: var(--color-blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
}

/* Gradient text — use spans only (avoids nested clip stroke/fringe) */
.text-accent,
.text-navy {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
}

.text-accent {
  background-image: var(--color-red-gradient);
  color: #E60000;
}

.text-navy {
  background-image: var(--color-blue-gradient);
  color: var(--color-navy);
}

/* Fully navy headings (no accent children) */
.why-title-navy,
.about-subtitle {
  background-image: var(--color-blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
}

/* ========== Header ========== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  background: transparent;
  padding: 20px 0;
}

.site-header .navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand {
  width: 220px;
}

.header-logo {
  width: 220px;
}

.site-header .nav-link {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text);
  padding: 0.5rem 1.15rem !important;
  transition: color 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--color-red-dark);
}

.btn-header-cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: #fff !important;
  background: var(--color-red-gradient);
  border: none;
  border-radius: 6px;
  padding: 16px 30px;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-header-cta:hover {
  background: var(--color-red-gradient-hover);
  color: #fff !important;
}

.site-header .navbar-toggler {
  border: 1px solid rgba(0, 25, 98, 0.2);
  padding: 0.4rem 0.55rem;
}

.site-header .navbar-toggler:focus {
  box-shadow: none;
}

.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 25, 98, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header .offcanvas {
  --bs-offcanvas-width: min(320px, 88vw);
  border: none;
}

.site-header .offcanvas-header {
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid rgba(0, 25, 98, 0.08);
}

.site-header .offcanvas-brand {
  display: block;
  width: 150px;
}

.site-header .offcanvas-brand .header-logo {
  width: 100%;
  height: auto;
}

.site-header .offcanvas-header .btn-close {
  --bs-btn-close-opacity: 0.65;
  box-shadow: none;
}

.site-header .offcanvas-body {
  padding: 1.25rem 1.35rem 1.75rem;
}

/* ========== Hero Banner ========== */
.hero-banner {
  position: relative;
  z-index: 1;
  padding:200px 0 80px;
  overflow: visible;
  background-color: #fff;
}

.hero-banner-bg {
  position: absolute;
  right: 0px;
  bottom: 0;
  z-index: 0;
  height: auto;
  width: 350px;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.hero-banner > .container {
  position: relative;
  z-index: 1;
}

.hero-banner .row {
  min-height: 560px;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-badge {
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 58px;
  line-height: 66.7px;
  margin-bottom: 1.25rem;
  letter-spacing: -1.16px;
}

.hero-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: #475569;
  margin-bottom: 1.75rem;
  max-width: 645px;
}

.btn-hero-primary,
.btn-hero-secondary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  padding: 0.85rem 1.35rem;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary {
  color: #fff !important;
  background: var(--color-red-gradient);
}

.btn-hero-primary:hover {
  background: var(--color-red-gradient-hover);
  color: #fff !important;
}

.btn-hero-primary i {
  margin-left: 0.35rem;
}

.btn-hero-secondary {
  color: #fff !important;
  background: var(--color-blue-gradient);
}

.btn-hero-secondary:hover {
  background: var(--color-blue-gradient-hover);
  color: #fff !important;
}

.hero-trust {
  margin-top: 2rem;
  gap: 0.75rem;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a2f6e;
  border: 2px solid #fff;
  margin-left: -10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 25, 98, 0.12);
}

.hero-avatar:first-child {
  margin-left: 0;
  z-index: 1;
}

.hero-avatar:nth-child(2) {
  z-index: 2;
}

.hero-avatar:nth-child(3) {
  z-index: 3;
}

.hero-trust-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #8a93a6;
  font-weight: 400;
}

.hero-trust-text strong {
  font-weight: 700;
  font-family: var(--font-badge);
  color: #3d4556;
}

/* Right column (6) -” author centered left/right + top/bottom */
.hero-visual {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  width: 100%;
  height: 100%;
}

.hero-author {
  position: relative;
  z-index: 3;
  display: block;
  width: auto;
  height: clamp(380px, 48vw, 600px);
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 12px 28px rgba(0, 25, 98, 0.12));
}

.hero-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 25, 98, 0.12);
  min-width: 210px;
  animation: hero-card-float 3.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-card-icon-check {
  background: rgba(0, 25, 98, 0.08);
  color: var(--color-navy);
}

.hero-card-icon-pin {
  background: rgba(230, 0, 0, 0.1);
  color: var(--color-red);
}

.hero-card-icon-img {
  display: block;
  width: 17px;
  height: 19px;
}

.hero-card-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-card-text strong {
  font-family: var(--font-badge);
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
}

.hero-card-text span {
  font-family: var(--font-body);
  font-size: 12px;
  color: #475569;
  margin-top: 2px;
}

/* Sales card — right side of author */
.hero-card-sales {
  top: 28%;
  right: 4%;
  animation-duration: 3.5s;
}

/* Retail card — lower left of author */
.hero-card-retail {
  bottom: 22%;
  left: 4%;
  animation-duration: 4s;
  animation-delay: 0.6s;
}

/* ========== Distribution Strip ========== */
.distribution-strip {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid rgba(0, 25, 98, 0.04);
}

.distribution-marquee {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}

.distribution-marquee-track {
  display: block;
}

/* Desktop: single static row; hide loop clone */
.distribution-marquee-track .distribution-list:last-child {
  display: none;
}

.distribution-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
}

.distribution-list li {
  font-family: var(--font-badge);
  font-size: 15px;
  font-weight: 700;
  color: #94A3B8;
  white-space: nowrap;
  letter-spacing: 0.15px;
}

/* ========== Counter Section ========== */
.counter-section {
  background: var(--color-blue-gradient);
  padding: 48px 0;
}

.counter-row .col-6,
.counter-row .col-md-3 {
  position: relative;
}

.counter-row .col-6:not(:last-child)::after,
.counter-row .col-md-3:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 1px;
  height: 70%;
  background: rgb(255 255 255 / 10%);
}

.counter-item {
  text-align: center;
  padding: 12px 16px;
}

.counter-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 3.5vw, 50px);
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 55px;
}

.counter-label {
  font-family: var(--font-badge);
  font-size: 15px;
  font-weight: 400;
  color: #94A3B8;
  margin-bottom: 0;
}


/* ========== Why Authors Choose Us ========== */
.why-section {
  position: relative;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -180px;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230, 0, 0, 0.12) 0%,
    rgba(230, 0, 0, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-header {
  max-width: 670px;
  margin: 0 auto 48px;
}

.why-badge {
  margin-bottom: 1rem;
}

.why-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 60px;
  margin-bottom: 1rem;
}

.why-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 27.2px;
  color: #475569;
  margin-bottom: 0;
}

.why-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.why-slide {
  min-width: 0;
  height: auto;
}

.why-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--color-red-gradient) border-box;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 30px 30px 50px;
  height: 100%;
}

.why-card-icon {
  display: inline-flex;
  margin-bottom: 1.15rem;
}

.why-card-icon-img {
  display: block;
  width: 53px;
  height: 46px;
  object-fit: contain;
}

.why-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -0.34px;
  background-image: var(--color-red-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #E60000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
  margin-bottom: 0.65rem;
}

.why-card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 23.2px;
  color: #475569;
  margin-bottom: 0;
}


/* ========== About Section ========== */
.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-gallery-row {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.about-gallery-item {
  overflow: hidden;
  border-radius: 18px;
}

.about-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Row 1: ~62% wide + ~38% narrow | Row 2: ~38% narrow + ~62% wide */
.about-img-wide {
  flex: 1.65 1 0;
  min-height: 210px;
  height: 210px;
}

.about-img-narrow {
  flex: 1 1 0;
  min-height: 210px;
  height: 210px;
}

.about-content {
  padding-left: 20px;
  max-width: 620px;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  margin-bottom: 1.25rem;
  line-height: 60px;
  letter-spacing: -0.84px;
  padding-bottom: 10px;
}

.about-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  color: #000000;
  margin-bottom: 1rem;
}

.about-actions {
  margin-top: 1.75rem;
}



/* ========== Marquee Strip ========== */
.marquee-section {
  background: var(--color-red-gradient);
  overflow: hidden;
  padding: 22px 0;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-slide 22s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 46px;
  color: #fff;
  padding: 0 48px;
  letter-spacing: 0.01em;
}

.marquee-star {
  display: block;
  flex-shrink: 0;
  opacity: 0.95;
  padding: 0 8px;
  object-fit: contain;
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}


/* ========== Services / What We Do ========== */
.services-section {
  position: relative;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.services-section::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(236, 190, 210, 0.35) 0%,
    rgba(236, 190, 210, 0.1) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.services-badge {
  margin-bottom: 1rem;
}

.services-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 60px;
  letter-spacing: -0.84px;
  margin-bottom: 1rem;
}

.services-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  color: var(--color-muted);
  margin-bottom: 0;
}

.services-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.services-slide {
  min-width: 0;
  height: auto;
}

.service-card {
  background:
    linear-gradient(#F8FAFC, #F8FAFC) padding-box,
    var(--color-blue-gradient) border-box;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 30px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 10px 28px rgba(0, 25, 98, 0.06);
}

.service-label {
  font-family: var(--font-badge);
  font-size: 13px;
  font-weight: 600;
  background-image: var(--color-blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
  margin-bottom: 0.85rem;
  display: block;
}

.service-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 21px;
  background: var(--color-red-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #E60000;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
  margin-bottom: 0.75rem;
}

.service-card-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  background-image: var(--color-blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, gap 0.2s ease;
}
.service-link i {
  background-image: var(--color-blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
  font-size: 20px;
}

.service-link:hover {
  color: var(--color-red);
  gap: 0.55rem;
}


/* ========== Publishing Process ========== */
.process-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(94.79deg, var(--color-navy-soft) -2.34%, var(--color-navy) 109.02%);
  padding: 100px 0 140px;
  color: #fff;
}

.process-section::before {
  content: "";
  position: absolute;
  width: 394px;
  height: 593px;
  left: -322px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(94.81deg, #E60000 -20.04%, #A20A21 134.33%);
  opacity: 0.55;
  filter: blur(370px);
  pointer-events: none;
  z-index: 0;
}

.process-section::after {
  content: "";
  position: absolute;
  width: 383px;
  height: 383px;
  right: -220px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(94.79deg, rgba(255, 0, 43, 0.5) -2.34%, rgba(0, 25, 98, 0.5) 109.02%);
  filter: blur(220px);
  pointer-events: none;
  z-index: 0;
}

.process-section > .container {
  position: relative;
  z-index: 1;
}

.process-header {
  max-width: 738px;
  margin-bottom: 56px;
}

.process-badge,
.cta-badge {
  font-family: var(--font-badge);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.process-badge::before,
.cta-badge::before {
  background: var(--color-red-gradient);
}

.process-badge .section-badge-text,
.cta-badge .section-badge-text {
  background-image: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.process-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}

.process-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 0;
}

.process-timeline {
  display: flex;
  gap: 20px;
  position: relative;
}

.process-timeline:not(.slick-initialized) > .process-slide {
  flex: 1;
  min-width: 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 2px;  
  z-index: 0;
  background: linear-gradient(90deg, #2563EB 0%, #FFFFFF 100%);
  opacity: 0.4;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-top: 0;
}

.process-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-height: 44px;
  border-radius: 50%;
  background: var(--color-red-gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 2;
}

.process-step-title {
  font-family: var(--font-badge);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 21px;
  color: #fff;
  margin-bottom: 0.65rem;
}

.process-step-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 21.6px;
  color: #94A3B8;
  margin-bottom: 0;
  max-width: 210px;
}



/* ========== Portfolio Slider ========== */
.portfolio-section {
  padding: 80px 0;
  background: #fff;
}

.portfolio-header {
  max-width: 850px;
  margin: 0 auto 48px;
}

.portfolio-badge {
  margin-bottom: 1rem;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 58px;
  letter-spacing: -0.84px;
  margin-bottom: 1rem;
}

.portfolio-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 20px;
  color: var(--color-muted);
  margin-bottom: 0;
}

.portfolio-slider-wrap {
  position: relative;
}

.portfolio-slider {
  width: 100%;
  margin: 0 -10px;
}

/* Pre-init: keep slides in a row so layout doesn't jump */
.portfolio-slider:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
}

.portfolio-slider:not(.slick-initialized) .portfolio-slide {
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
}

.portfolio-slider:not(.slick-initialized) .portfolio-slide:nth-child(n + 5) {
  display: none;
}

.portfolio-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

.portfolio-slider .slick-slide {
  height: auto;
  float: none;
}

.portfolio-slider .slick-slide > div {
  height: 100%;
}

.portfolio-slide {
  padding: 0 10px;
  height: 100%;
}

.portfolio-slide-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  cursor: zoom-in;
  box-shadow: 0 8px 24px rgba(0, 25, 98, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  background: #eef1f6;
}

.portfolio-slide-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 25, 98, 0.55) 0%,
    rgba(0, 25, 98, 0.15) 45%,
    rgba(0, 25, 98, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.portfolio-slide-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-red-gradient);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(162, 10, 33, 0.35);
}

.portfolio-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  transition: transform 0.45s ease;
}

.portfolio-slide-link:hover {
  box-shadow: 0 18px 40px rgba(0, 25, 98, 0.18);
}

.portfolio-slide-link:hover::after {
  opacity: 1;
}

.portfolio-slide-link:hover .portfolio-slide-zoom {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.portfolio-slide-link:hover img {
  transform: scale(1.06);
}

.portfolio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 32px;
  border-radius: 50px;
  border: 1px solid #c5c9d2;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--color-red-dark);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.portfolio-prev {
  left: max(8px, calc((100% - min(1320px, 100% - 24px)) / 2 - 80px));
}

.portfolio-next {
  right: max(8px, calc((100% - min(1320px, 100% - 24px)) / 2 - 80px));
}

.portfolio-arrow:hover {
  border-color: var(--color-red-dark);
  color: var(--color-red);
}






/* ========== Testimonials ========== */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #fff;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -240px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(94.79deg, rgba(255, 0, 43, 0.5) -2.34%, rgba(0, 25, 98, 0.5) 109.02%);
  filter: blur(170px);
  pointer-events: none;
  z-index: 0;
}

.testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  max-width: 810px;
  margin: 0 auto 48px;
}

.testimonials-badge {
  margin-bottom: 1rem;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.testimonials-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 0;
}

.testimonials-slider-wrap {
  position: relative;
}

.testimonials-slider {
  margin: 0 -12px;
}

/* Pre-init: keep cards in a row */
.testimonials-slider:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
}

.testimonials-slider:not(.slick-initialized) .testimonials-slide {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  box-sizing: border-box;
}

.testimonials-slider:not(.slick-initialized) .testimonials-slide:nth-child(n + 4) {
  display: none;
}

.testimonials-slide {
  padding: 0 12px;
  height: auto;
}

.testimonials-slider .slick-list {
  margin: 0;
}

.testimonials-slider .slick-track {
  display: flex !important;
}

.testimonials-slider .slick-slide {
  height: auto;
}

.testimonials-slider .slick-slide > div {
  height: 100%;
}

.testimonials-slider .slick-dots {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.testimonials-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.testimonials-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(0, 25, 98, 0.2);
  border: none;
  font-size: 0;
  line-height: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonials-slider .slick-dots li button:before {
  display: none;
}

.testimonials-slider .slick-dots li.slick-active button {
  background: var(--color-red-dark);
  transform: scale(1.15);
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0, 25, 98, 0.12);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #1a1a1a;
  font-size: 15px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4b5568;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.testimonial-meta strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-navy);
}

.testimonial-meta span {
  font-family: var(--font-body);
  font-size: 13px;
  color: #8a93a6;
  margin-top: 2px;
}

/* ========== Reviews page ========== */
.reviews-hero {
  background:
    radial-gradient(circle at 18% 25%, rgba(230, 0, 0, 0.06), transparent 42%),
    radial-gradient(circle at 82% 20%, rgba(0, 25, 98, 0.07), transparent 44%),
    #fff;
}

.reviews-hero-inner {
  max-width: 780px;
}

.reviews-hero .page-hero-title {
  max-width: none;
}

.reviews-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 25, 98, 0.08);
}

.reviews-stat {
  text-align: center;
  min-width: 120px;
}

.reviews-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  background-image: var(--color-red-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e60000;
  margin-bottom: 4px;
}

.reviews-stat span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
}

.reviews-section-page {
  padding-top: 48px;
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.reviews-slide {
  min-width: 0;
}

.reviews-slider .testimonial-card {
  box-shadow: 0 12px 30px rgba(0, 25, 98, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.reviews-slider .testimonial-card:hover {
  box-shadow: 0 16px 36px rgba(0, 25, 98, 0.1);
  transform: translateY(-2px);
}




/* ========== Publishing Excellence ========== */
.excellence-section {
  position: relative;
  /* overflow: hidden; */
  padding: 80px 0 150px;
  background: #fff;
}

.excellence-section::before {
  content: "";
  position: absolute;
  width: 303px;
  height: 303px;
  left: -231px;
  top: 200px;
  background: linear-gradient(94.79deg, rgba(255, 0, 43, 0.5) -2.34%, rgba(0, 25, 98, 0.5) 109.02%);
  filter: blur(200px);
  pointer-events: none;
  z-index: 0;
}

.excellence-section > .container {
  position: relative;
  z-index: 1;
}

.excellence-header {
  max-width: 850px;
  margin: 0 auto 48px;
}

.excellence-badge {
  margin-bottom: 1rem;
}

.excellence-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.excellence-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 0;
}

.excellence-text + .excellence-text {
  margin-top: 0.75rem;
}

.excellence-slider-wrap {
  position: relative;
}

/* Desktop / tablet landscape: static 2-col grid */
.excellence-slider {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.excellence-slide {
  padding: 0;
  height: auto;
  min-width: 0;
}

/* Mobile only: slider + pre-init row */


.excellence-card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}

.excellence-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.excellence-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 27.45px;
  text-transform: uppercase;
  color: #747474;
  margin-bottom: 10px;
  display: block;
}

.excellence-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.excellence-card-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 22.87px;
  color: #747474;
  margin-bottom: 1.25rem;
}

.btn-excellence {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.64px;
  line-height: 14.64px;
  color: #fff !important;
  background: linear-gradient(to right, #2D4484, #001962);
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  align-self: flex-start;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.btn-excellence:hover {
  background: linear-gradient(to right, #3a5499, #00247a);
  color: #fff !important;
}

.excellence-card-media {
  flex: 0 0 42%;
  max-width: 220px;
  border-radius: 14px;
  overflow: hidden;
}

.excellence-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}


/* ========== CTA Section ========== */
.cta-section {
  position: relative;
  padding: 0;
  background: linear-gradient(90deg, #001962 0%, #1a2f6e 55%, #243a7a 100%);
  overflow: visible;
  z-index: 2;
}

.cta-section::after {
  content: "";
  position: absolute;
  height: 520px;
  left: 81.1%;
  right: -8.4%;
  top: -220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 260px;
  pointer-events: none;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.cta-section .row {
  align-items: flex-end;
  min-height: 360px;
}

.cta-content {
  padding: 50px 0;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 3.2vw, 38px);
  line-height: 45px;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 27.2px;
  color: #fff;
  margin-bottom: 0.85rem;
}

.cta-text:last-of-type {
  margin-bottom: 1.75rem;
}

.btn-cta-primary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #fff !important;
  background: var(--color-red-gradient);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.35rem;
  transition: filter 0.2s ease;
}

.btn-cta-primary:hover {
  background: var(--color-red-gradient-hover);
  color: #fff !important;
}

.btn-cta-secondary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #fff !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 0.85rem 1.35rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff !important;
}

.cta-visual {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  min-height: 420px;
  margin-bottom: 0;
  overflow: visible;
}

.cta-books {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 -8% 0 0;
  object-fit: contain;
  object-position: bottom center;
  transform: scale(1.20);
  transform-origin: bottom center;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.32));
}



/* ========== FAQ Section ========== */
.faq-section {
  padding: 110px 0 70px;
  background: #fff;
}

.faq-badge {
  margin-bottom: 1rem;
}

.faq-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.faq-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 27.2px;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.btn-faq {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy) !important;
  background: #fff;
  border: 1px solid rgba(0, 25, 98, 0.25);
  border-radius: 8px;
  padding: 0.7rem 1.25rem;
  margin-bottom: 1.75rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-faq:hover {
  border-color: var(--color-red);
  color: var(--color-red) !important;
}

.faq-image {
  border-radius: 14px;
  overflow: hidden;
}

.faq-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.faq-accordion{
  padding-left: 25px;
} 

.faq-accordion .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 25, 98, 0.12);
  border-radius: 0 !important;
}

.faq-accordion .accordion-button {
  --bs-accordion-btn-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'/>");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'/>");
  font-family: var(--font-badge);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
  background: transparent;
  background-image: none;
  box-shadow: none !important;
  padding: 24px 40px 24px 0;
  gap: 1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--color-navy);
  background: transparent;
  background-image: none;
  box-shadow: none !important;
}

.faq-accordion .faq-question-text {
  flex: 1;
  background-image: var(--color-blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: auto;
  content: "";
  -webkit-mask-image: none;
  mask-image: none;
  border: none;
  background-image:
    linear-gradient(#9aa3b5, #9aa3b5),
    linear-gradient(#9aa3b5, #9aa3b5);
  background-position: center;
  background-size: 14px 2px, 2px 14px;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: transform 0.25s ease, background-image 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image:
    linear-gradient(var(--color-red), var(--color-red)),
    linear-gradient(var(--color-red), var(--color-red));
  background-position: center;
  background-size: 14px 2px, 2px 14px;
  background-repeat: no-repeat;
  transform: rotate(45deg);
}

.faq-accordion .accordion-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-muted);
  padding: 0 0 1.25rem;
}



/* ========== Get Started / Contact Form ========== */
.get-started-section {
  padding: 80px 0;
  background: #f7f8fb;
}

.get-started-header {
  max-width: 995px;
  margin: 0 auto 48px;
}

.get-started-badge {
  margin-bottom: 1rem;
}

.get-started-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.get-started-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 0;
}

.get-started-card {
  background: #fff;
  border: 1px solid rgba(45, 68, 132, 0.2);
  border-radius: 18px;
  overflow: hidden;
}

.get-started-sidebar {
  background: linear-gradient(to bottom, #2D4484, #001962);
  height: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.get-started-sidebar-title {
  font-family: var(--font-badge);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 45px);
  line-height: 55px;
  color: #fff;
  margin-bottom: 1rem;
}

.get-started-sidebar-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.75rem;
}

.get-started-sidebar-image {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
}

.get-started-sidebar-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.get-started-form-wrap {
  padding: 40px 36px;
  height: 100%;
  background: #fff;
}

.get-started-form .form-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 0.55rem;
}

.get-started-form .form-control {
  font-family: var(--font-body);
  font-size: 15px;
  color: #333;
  background-color: #F8F8F8;
  border: 1px solid #e6e8ee;
  border-radius: 8px;
  padding: 0.95rem 1.05rem;
  box-shadow: none;
  height: 78px;
}

.get-started-form .form-control::placeholder {
  color: #b8bfcc;
  opacity: 1;
}

.get-started-form .form-control:focus {
  background-color: #F8F8F8;
  border-color: #d5dae3;
  box-shadow: none;
  color: #333;
}

.get-started-form textarea.form-control {
  height: auto;
  min-height: 180px;
  resize: none;
  padding-top: 0.9rem;
}

.btn-submit-request {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #fff !important;
  background: var(--color-red-gradient);
  border: none;
  border-radius: 8px;
  padding: 0.95rem 1.25rem;
  margin-top: 0.25rem;
  transition: filter 0.2s ease;
}

.btn-submit-request:hover {
  background: var(--color-red-gradient-hover);
  color: #fff !important;
}



/* ========== Footer ========== */
.site-footer {
  background: linear-gradient(to right, #2d4484, #001962);
  padding: 72px 0 0;
  color: #fff;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
}

.footer-about {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 1.25rem;
  color: #fff;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact a,
.footer-contact > li > span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact i {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 15px;
  color: #fff;
}

.footer-contact a span,
.footer-contact > li > span > span {
  min-width: 0;
}

.footer-bottom {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.45);
}

/* ========== Inner Pages ========== */

.page-hero {
  padding: 240px 0 56px;
  background: #fff;
}

.about-page-hero {
  padding-bottom: 72px;
  overflow: hidden;
}

.about-page-hero .page-hero-title {
  max-width: none;
}

.about-page-hero .page-hero-text,
.about-page-hero .page-hero-copy {
  max-width: none;
}

.about-hero-form-wrap {
  max-width: 480px;
  margin-left: auto;
}

.about-hero-form-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 25, 98, 0.1);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 25, 98, 0.1);
}

.about-hero-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--color-red-gradient);
  z-index: 1;
}

.about-hero-form-top {
  padding: 22px 22px 16px;
  background: linear-gradient(145deg, #001962 0%, #2d4484 100%);
  color: #fff;
}

.about-hero-form-eyebrow {
  display: inline-block;
  font-family: var(--font-badge);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.4rem;
}

.about-hero-form-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0.35rem;
}

.about-hero-form-sub {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.about-hero-form {
  padding: 18px 22px 22px;
}

.about-hero-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-hero-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-hero-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.about-hero-form .form-label {
  font-family: var(--font-badge);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.3rem;
}

.about-hero-form .form-control,
.about-hero-form .form-select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-navy);
  background-color: #f8fafc;
  border: 1px solid rgba(0, 25, 98, 0.1);
  border-radius: 8px;
  min-height: 44px;
  padding: 0.6rem 0.85rem;
  box-shadow: none;
}

.about-hero-form textarea.form-control {
  min-height: 78px;
  resize: vertical;
}

.about-hero-form .form-control::placeholder {
  color: #94a3b8;
}

.about-hero-form .form-control:focus,
.about-hero-form .form-select:focus {
  background-color: #fff;
  border-color: rgba(162, 10, 33, 0.45);
  box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.1);
  outline: none;
}

.about-hero-form .form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.4rem;
  background-color: #f8fafc;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23001962' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 10px;
}

.about-hero-form .form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23001962' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 10px;
}

.btn-about-hero-submit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #fff !important;
  background: var(--color-red-gradient);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-about-hero-submit:hover {
  background: var(--color-red-gradient-hover);
  color: #fff !important;
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.page-hero-compact {
  padding-bottom: 36px;
}

.page-hero-badge {
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 1.25;
  margin-bottom: 1rem;
  max-width: 820px;
}

.page-hero-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 720px;
  margin-bottom: 0;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy .page-hero-text {
  margin-bottom: 1rem;
}

.page-hero-copy .page-hero-text:last-child {
  margin-bottom: 0;
}

.page-hero-emphasis,
.about-text-emphasis {
  font-weight: 600;
  color: var(--color-navy);
}

.page-hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-content .section-badge {
  margin-bottom: 1rem;
}

.about-block {
  max-width: 820px;
  margin: 0 auto 40px;
}

.about-block-left {
  max-width: none;
  margin: 0;
  text-align: left;
}

.about-side-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 25, 98, 0.12);
}

.about-side-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 25, 98, 0.08), transparent 45%);
  pointer-events: none;
}

.about-side-media-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-block-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-block-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.about-block-text:last-child {
  margin-bottom: 0;
}

.about-audience-grid {
  margin-top: 40px;
}

.about-audience-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
  padding: 18px 14px;
}

.about-mission-section {
  position: relative;
  overflow: hidden;
}

.about-mission-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.about-mission {
  max-width: none;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.about-mission-media {
  max-width: 540px;
}

.about-cta-section {
  position: relative;
  padding: 40px 0 80px;
  background: #fff;
  overflow: visible;
}

.about-cta-panel {
  position: relative;
  padding: 56px 48px;
  border-radius: 24px;
  background: linear-gradient(105deg, #001962 0%, #1a2f6e 55%, #243a7a 100%);
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 25, 98, 0.18);
}

.about-cta-panel::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
  pointer-events: none;
}

.about-cta-content {
  max-width: none;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.about-cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1rem;
}

.about-cta-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.85rem;
  max-width: 520px;
}

.about-cta-actions {
  margin-top: 1.75rem;
}

.about-cta-media {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-cta-media-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.page-section {
  padding: 64px 0 90px;
  background: #fff;
}

.page-section-soft {
  background: #f7f8fb;
}

.page-feature-card {
  background: #fff;
  border: 1px solid rgba(0, 25, 98, 0.1);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
}

.page-feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  background-image: var(--color-red-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e60000;
  margin-bottom: 0.75rem;
}

.page-feature-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 0;
}

.page-cta-row {
  margin-top: 40px;
}

.contact-page-hero {
  padding-bottom: 48px;
}

.contact-page-section {
  padding-top: 24px;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-card {
  background: #f7f8fb;
  border: 1px solid rgba(0, 25, 98, 0.08);
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-step-card {
  background: #fff;
  border: 1px solid rgba(0, 25, 98, 0.08);
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 28px rgba(0, 25, 98, 0.05);
}

.contact-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-red-gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0.75rem;
}

.contact-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.contact-step-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-muted);
  margin-bottom: 0;
}

.contact-cta-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-text {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Publishing Page ========== */
.publishing-hero {
  padding-bottom: 72px;
}

.publishing-hero-media {
  max-width: 560px;
  margin-left: auto;
}

.publishing-services .services-section::after,
.publishing-services.services-section::after {
  opacity: 0.55;
}

.publishing-services {
  overflow: hidden;
}

.publishing-process .process-step-text {
  max-width: 100%;
}

.publishing-format-card {
  height: 100%;
}

.publishing-callout {
  background: #f7f8fb;
  border: 1px solid rgba(0, 25, 98, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
}

.publishing-faq .faq-image {
  display: none;
}

.publishing-faq {
  padding-top: 80px;
}

.contact-info-label {
  display: block;
  font-family: var(--font-badge);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.45rem;
}

.contact-info-card a,
.contact-info-card span:not(.contact-info-label) {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-navy);
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--color-red-dark);
}

/* ========== Legal pages (Privacy / Terms) ========== */
.legal-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(230, 0, 0, 0.06), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(0, 25, 98, 0.07), transparent 44%),
    #fff;
}

.legal-hero-inner {
  max-width: 760px;
}

.legal-hero-lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
  max-width: 640px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.legal-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3f5f9;
  border: 1px solid rgba(0, 25, 98, 0.08);
  font-family: var(--font-badge);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
}

.legal-meta-chip i {
  color: #e60000;
  font-size: 14px;
}

.legal-meta-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.legal-meta-link:hover {
  color: #e60000;
}

.legal-section {
  padding-top: 40px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  padding: 22px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 25, 98, 0.1);
  box-shadow: 0 10px 28px rgba(0, 25, 98, 0.05);
}

.legal-toc-label {
  font-family: var(--font-badge);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin: 0 0 14px;
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.legal-toc-nav a:hover {
  background: #f7f8fb;
  color: var(--color-navy);
  border-left-color: #e60000;
}

.legal-document {
  background: #fff;
  border: 1px solid rgba(0, 25, 98, 0.1);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 16px 40px rgba(0, 25, 98, 0.06);
}

.legal-intro {
  padding-bottom: 28px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0, 25, 98, 0.08);
}

.legal-intro p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0;
}

.legal-block {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 25, 98, 0.06);
  scroll-margin-top: 120px;
}

.legal-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.35;
  color: var(--color-navy);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-block-num {
  font-family: var(--font-badge);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background-image: var(--color-red-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e60000;
  flex-shrink: 0;
}

.legal-block p,
.legal-block li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-muted);
}

.legal-block p {
  margin-bottom: 0.85rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.25rem;
  display: grid;
  gap: 10px;
}

.legal-block li {
  position: relative;
  padding: 12px 16px 12px 40px;
  margin: 0;
  background: #f7f8fb;
  border-radius: 10px;
  border: 1px solid rgba(0, 25, 98, 0.05);
}

.legal-block li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 1.15em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red-gradient);
  transform: translateY(-50%);
}

.legal-block a {
  color: var(--color-red-dark);
  text-decoration: none;
  font-weight: 600;
}

.legal-block a:hover {
  text-decoration: underline;
}

.legal-contact-card {
  margin-top: 4px;
  padding: 22px 24px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(0, 25, 98, 0.04), rgba(230, 0, 0, 0.03)),
    #f7f8fb;
  border: 1px solid rgba(0, 25, 98, 0.08);
}

.legal-contact-card p {
  margin-bottom: 1rem;
}

.legal-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.legal-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy) !important;
  text-decoration: none !important;
}

.legal-contact-link:hover {
  color: #e60000 !important;
}

.legal-contact-link i {
  color: #e60000;
}

.legal-document .btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.error-section {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(230, 0, 0, 0.07), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(0, 25, 98, 0.07), transparent 42%),
    #fff;
}

.error-card {
  max-width: 640px;
  margin: 0 auto;
}

.error-code {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(72px, 12vw, 120px);
  line-height: 1;
  background-image: var(--color-red-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e60000;
  margin-bottom: 0.5rem;
}

.thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  background: rgba(0, 25, 98, 0.06);
  color: #e60000;
  font-size: 40px;
  line-height: 1;
}

.error-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--title-size);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.error-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 1.75rem;
}

/* ========== Lead Modal ========== */
.lead-modal .modal-dialog {
  max-width: 920px;
  margin: 1.25rem auto;
}

.lead-modal-content {
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 25, 98, 0.28);
  background: #fff;
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23001962'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  box-sizing: border-box;
  padding: 0;
  box-shadow: 0 6px 18px rgba(0, 25, 98, 0.18);
}

.lead-modal-close:hover {
  background-color: #fff;
  opacity: 1;
  transform: scale(1.04);
}

.lead-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 520px;
}

.lead-modal-aside {
  position: relative;
  padding: 40px 36px;
  background: linear-gradient(145deg, #001962 0%, #2d4484 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.lead-modal-aside::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 0, 0, 0.35), transparent 68%);
  pointer-events: none;
}

.lead-modal-eyebrow {
  display: inline-block;
  font-family: var(--font-badge);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.lead-modal-aside-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.lead-modal-aside-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 22px;
  max-width: 320px;
  position: relative;
  z-index: 1;
}

.lead-modal-perks {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.lead-modal-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.lead-modal-perks i {
  color: #ff6b6b;
  font-size: 15px;
}

.lead-modal-form-wrap {
  padding: 40px 36px 36px;
  background: #fff;
}

.lead-modal-fields {
  display: grid;
  gap: 14px;
}

.lead-modal-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-modal-form .form-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.lead-modal-form .form-control,
.lead-modal-form .form-select {
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid rgba(0, 25, 98, 0.12);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--color-navy);
  background-color: #f7f8fb;
  box-shadow: none;
}

.lead-modal-form .form-control:focus,
.lead-modal-form .form-select:focus {
  border-color: rgba(0, 25, 98, 0.28);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 25, 98, 0.08);
}

.lead-modal-form .form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23001962' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 10px;
  padding-right: 2.2rem;
}

.lead-modal-form textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.btn-lead-modal-submit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #fff !important;
  background: var(--color-red-gradient);
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-lead-modal-submit:hover {
  background: var(--color-red-gradient-hover);
  color: #fff !important;
  filter: brightness(1.03);
  transform: translateY(-1px);
}

